0
Main Function
Is there any type of main function start with void?
2 odpowiedzi
+ 1
The C++ Standard says main is of type int. There are implementations (i guess the Microsoft C++/CLI implementation is one) that allow main to be void. I would not recommend this.
0
I saw people using that main function to create dll for game hacking