为什么我在头文件中定义这样的函数出错误呢
#ifndef _TESTCARD_H
#define _TESTCARD_H
VOID CALLBACK TimerProc(HWND hwnd,UINT uMsg,UINT idEvent,DWORD dwTime);
#endif
syntax error missing ';' before identifier 'CALLBACK'
'VOID': missing storage-class or type specifiers
我看没有错误啊~~~
其中VOID被宏定义了void CALLBACK被宏定义_stdcall
怎么回事呢