AcrobatPlugin #include <anything>, error c1189
I can compile the BasicPlugin just fine.
Now I'd like to add libraries, namely <vector>. But doing so will result in the error `fatal error C1189: #error : The C++ Standard Library forbids macroizing keywords. Enable warning C4005 to find the forbidden macro.'.
Commenting out line 707 in CorCalls.h seems to fix the problem, but I have no idea what this will break in turn.
Is it not possible to include anything in Acrobat plugins or is there a way to fix this?
[...]
// Acrobat Headers.
#ifndef MAC_PLATFORM
#include "PIHeaders.h"
#endif
#include <vector>
[...]
