Archive for 3月 2013

调用DLL弹出The value of ESP was not properly saved across a function call

像这种错误一般是由于C++回调函数声明引起的,在声明回调函数指针的时候,使用
[php]
typedef void (*RecvMessage)(const char* msgContent);
[/php]

只要将声明加上一个回调定义就可以了__stdcall,如下
[php]
#ifdef WIN32
typedef void (__stdcall *RecvMessage)(const char* msgContent);
#else
typedef void (*RecvMessage)(const char* msgContent);
#endif
[/php]

这样就可以解决了。