Hi, I'm rather new to C++ on Windows, and Visual Studio in general, so I apologize if this question is silly.
Basically, I'm having an issue compiling as a /SUBSYSTEM:WINDOWS application. I can compile easily when I select /SUBSYSTEM:CONSOLE, but for some reason this gives me errors when using other libraries (i.e. ClipperLib). The error I'm getting under /SUBSYSTEM:WINDOWS is a linker error:
Error 1 error LNK2019: unresolved external symbol _WinMain@16 referenced in function ___tmainCRTStartu
I've googled around, and all the solutions say to switch back to /SUBSYSTEM:CONSOLE. Is there any way to avoid this? Thanks in advance for any help!