-
Notifications
You must be signed in to change notification settings - Fork 118
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Visual Studio Syntax Error When Building Solution #142
Comments
I was able to fix this by not using Windows XP support. Apparently this is a bug in the SDK |
i'm having the same issue but if i don t use the windows xp support i get : The build tools for x141_xp cannot be found |
i have this problem too, but it happens in assembly.hpp, in 155 line. Compiler complains on "<" symbol in the line plugin-sdk/injector/assembly.hpp Line 155 in 6033510
|
i created issue too #169 |
I'm getting this error 766 times on Visual Studio 2019 when building the generated .sln file:
Error C2760 syntax error: unexpected token 'identifier', expected 'type specifier' plugin_sa C:\Program Files (x86)\Microsoft SDKs\Windows\v7.1A\include\objbase.h 239
The line in question:
static_cast<IUnknown*>(*pp); // make sure everyone derives from IUnknown
Full section
extern "C++" { template<typename T> void** IID_PPV_ARGS_Helper(T** pp) { static_cast<IUnknown*>(*pp); // make sure everyone derives from IUnknown return reinterpret_cast<void**>(pp); } }
Is there a setting I'm missing here?
Thanks
The text was updated successfully, but these errors were encountered: