poco问题 CreateEvent not found

是因为POCO库用到的一个头文件unwindows.h把这些函数都#undef了。

#define POCO_NO_UNWINDOWS

比如 OutputDebugString,GetModuleFileName 这样的
使用 GetModuleFileNameA 具体版本就可以了

CreateEvent not found

1