So I have some class starting with
#include #include
and there is a wmain function .
wmain
The difference between main and wmain is the type used to represent the arguments to the program. The main function uses normal char while wmain uses wchar_t which can accept unicode values
main
char
wchar_t