Home > database >  How define _WINDOWS in project settings in VS?
How define _WINDOWS in project settings in VS?

Time:10-02

I need to connect framework, that says: "To use the framework define _WINDOWS in project's settings!", but I do not know where and what exactly should I write.

CodePudding user response:

I just needed preprocessor definition. Root: Project -> Properties -> Configuration properties -> C/C -> Preprocessor In field Preprocessor Definitions add "_WINDOWS;"

  • Related