windows mobile 5.0 SDK中的 prsht.h 头编译不过去怎么回事啊?
错误 5 error C4430: missing type specifier - int assumed. Note: C++ does not support default-int E:\Microsoft Visual Studio\Windows CE Tools\wce500\Windows Mobile 5.0 Pocket PC SDK\include\ARMV4I\prsht.h 58 错误 8 error C4430: missing type specifier - int assumed. Note: C++ does not support default-int E:\Microsoft Visual Studio\Windows CE Tools\wce500\Windows Mobile 5.0 Pocket PC SDK\include\ARMV4I\prsht.h 65
错误 19 error C4430: missing type specifier - int assumed. Note: C++ does not support default-int E:\Microsoft Visual Studio\Windows CE Tools\wce500\Windows Mobile 5.0 Pocket PC SDK\include\ARMV4I\prsht.h 92
错误 20 error C4430: missing type specifier - int assumed. Note: C++ does not support default-int E:\Microsoft Visual Studio\Windows CE Tools\wce500\Windows Mobile 5.0 Pocket PC SDK\include\ARMV4I\prsht.h 92
将近200个这样的错误
错误指向了这些行 (贴出一部分)
C/C++ code
WINCOMMCTRLAPI HPROPSHEETPAGE WINAPI CreatePropertySheetPageA(LPCPROPSHEETPAGEA);
WINCOMMCTRLAPI HPROPSHEETPAGE WINAPI CreatePropertySheetPageW(LPCPROPSHEETPAGEW);
WINCOMMCTRLAPI BOOL WINAPI DestroyPropertySheetPage(HPROPSHEETPAGE);
WINCOMMCTRLAPI int WINAPI PropertySheetA(LPCPROPSHEETHEADERA);
WINCOMMCTRLAPI int WINAPI PropertySheetW(LPCPROPSHEETHEADERW);
typedef BOOL (CALLBACK FAR * LPFNADDPROPSHEETPAGE)(HPROPSHEETPAGE, LPARAM);
typedef BOOL (CALLBACK FAR * LPFNADDPROPSHEETPAGES)(LPVOID, LPFNADDPROPSHEETPAGE, LPARAM);
为什么SDK中的会报错
而且我没看出来有错啊