_CRTIMP的意思

C run time implement “C运行库的实现”的意思。
作为用户代码,不应该使用这个东西。

提示是使用dll的动态 C 运行时库还是静态连接的 C 运行库的一个宏。
#ifndef _CRTIMP
#ifdef  _DLL
#define _CRTIMP __declspec(dllimport)
#else   /* ndef _DLL */
#define _CRTIMP
#endif  /* _DLL */
#endif  /* _CRTIMP */

你可能感兴趣的:(c,dll)