You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello, I ran into these errors in Engine.cpp around line 343 to line 394. Specifically for " wc.lpszClassName = GH_CLASS;" .
Is this a VS code problem? I am not super familiar with cpp so im not sure what's the cause of this problem nor how to fix it :(
Thanks!
The text was updated successfully, but these errors were encountered:
LPCWSTR is most definitely a VS Code type. If you're trying to compile with G++ or something, that's most likely the cause. Other programming languages have that phenomenon as well, where unknown types are "incompatible" with everything that looks different and it hides the error that the type is unrecognized.
LPCWSTR is most definitely a VS Code type. If you're trying to compile with G++ or something, that's most likely the cause. Other programming languages have that phenomenon as well, where unknown types are "incompatible" with everything that looks different and it hides the error that the type is unrecognized.
Thank you for your reply! Should I not use G++ to compile? What else should I use to compile it? Thanks so much and happy holidays!
You shouldn't try to compile VS Code with anything other than Visual Studio. There's always a good chance the code uses proprietary features that no other compiler can handle.
Hello, I ran into these errors in Engine.cpp around line 343 to line 394. Specifically for " wc.lpszClassName = GH_CLASS;" .
Is this a VS code problem? I am not super familiar with cpp so im not sure what's the cause of this problem nor how to fix it :(
Thanks!
The text was updated successfully, but these errors were encountered: