Can we use wmain() with Unix compilers or it'll work only on Windows?
The only standard signatures for main
are:
int main(void);
int main(int argc, char *argv[]);
However, a freestanding implementation can provide extensions/allow other signatures. But those are not guranteed to be portable. wmain
looks like a Windows/VS thing. There's not much chance this will work on a *nix/GNU GCC.
The wmain
signature exists in Windows to handle wide-character command line arguments. Generally, while Windows applications prefer UTF16, Unix applications prefer UTF8 for Unicode string encoding. UTF8 uses regular char
character strings, so the standard main
signature suffices for Unicode-aware Unix appications.
If you want to make a portable console application that does not require Unicode command line parameters, use main
. If you do need Unicode command line parameters, then you need preprocessor directives that will enable the signature appropriate to each environment.
If you are making a cross-platform GUI application, use a special framework, like Qt.
wmain()
is windows-specific. Just like _tmain
, if that matters...