注册 登录
编程论坛 C++教室

程序编译出现错误,求高手指点

hsnr 发布于 2011-03-28 21:17, 273 次点击
有如下一段程序:
#ifdef  _MSC_VER
#pragma pack(push,8)
#endif  /* _MSC_VER */
#ifdef  __cplusplus
extern "C" {
#endif
/* Define _CRTIMP */
#ifndef _CRTIMP
#ifdef  _DLL
#define _CRTIMP __declspec(dllimport)
#else   /* ndef _DLL */
#define _CRTIMP
#endif  /* _DLL */
#endif  /* _CRTIMP */
经编译之后出现如下错误提示:
d:\program files\microsoft visual studio\vc98\include\wctype.h(34) : error C2144: syntax error : missing ';' before type 'int'
请问是什么问题?望高手们给我排疑解难啊。

1 回复
#2
qq10235692232011-03-28 21:29
条件编译?不懂!
1