Hi,
I made a new Blueprint Library Plugin from the wizzard. I did not add any includes.
As soon as I use a DWORD I get an error:
For example:
void deleteMe() {
DWORD test;
}
Error C2872 ‘DWORD’: ambiguous symbol
I have seen all the solutions where to wrap the includes inside of
#include "AllowWindowsPlatformTypes.h"
...
#include "HideWindowsPlatformTypes.h"
but I haven’t included anything and still it is ambiguous, not undefined. Using another Datatype is not an option, as I want to call a function that needs this datatype.
Any ideas? Thanks for your Help!