Currently, I am trying to make a Windows application using C++. For compiling my program I use MinGW (GCC). But as soon as I use int WINAPI wWinMain(HINSTANCE hInstance, HINSTANCE, PWSTR pCmdLine, int nCmdShow)
instead of int main()
the compiler shows me the following message:
C:/mingw-w64/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/../../../../x86_64-w64-mingw32/lib/../lib/libmingw32.a(lib64_libmingw32_a-crt0_c.o):crt0_c.c:(.text.startup+0x2e): undefined reference to `WinMain'
collect2.exe: error: ld returned 1 exit status
The terminal process terminated with exit code: 1
The example code I tried to compile I got from this Windows application tutorial:
I have already tried reinstalling MinGW but it did not help (also I'm using Windows 10).
wWinMain
specifically, questions that do not mentionwWinMain
are not duplicates of this one. – Ithunn