为什么include "mmsystem.h"会出错
程序:
include "mmsystem.h"
void main()
{
}
错误:
d:\program files\microsoft visual studio\vc98\include\mmsystem.h(113) : error C2146: syntax error : missing ';' before identifier 'MMVERSION'
d:\program files\microsoft visual studio\vc98\include\mmsystem.h(113) : fatal error C1004: unexpected end of file found
mmsystem.h文件中:
112行 #ifdef _WIN32
113行 typedef UINT MMVERSION; /* major (high byte), minor (low byte) */
114行 #else
115行 typedef UINT VERSION; /* major (high byte), minor (low byte) */
116行 #endif
117行 typedef UINT MMRESULT; /* error return code, 0 means no error */
好象UINT不认识
希望大家指出问题的原因,谢谢!