wmain

What is the difference between wmain and main?

So I have some class starting with #include <wchar.h> #include <stdlib.h> ant there is that function wmain. What is it different from main function i usualy use in my C classes? ...

Can we use wmain() functions with Unix compilers or it'll work only on windows?

Can we use wmain() functions with Unix compilers or it'll work only on\for windows? ...

wmain vs main C runtime

Hi, I have read few articles about different Windows C entry pooints, wmain and WinMain. So, if I am correct, these are added to C language compilers for Windows OS. But, how are implemented? For example, wmain gets Unicode as argv[], but its Os that sends these arguments to program, so is there any special field in the .exe file entry...