Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

C++ Find Entry Point

Well, i am feeling a little bit foolish asking something like this, but i' have no idea where the main function is in code i got from another person.

It's a pretty large Visual C++ project. So my question is simple, and please forgive me for asking this, but is there an easy way to find the entry point in a c++ solution in visual studio? It may not be called main, because there is a link to MFC tools (so perhaps WinMain). Thank You!

like image 804
Mehno Avatar asked Apr 01 '16 11:04

Mehno


1 Answers

Debug->Step Into used while you are not debugging should start debugging and will break at the entry point.

like image 187
Marian Spanik Avatar answered Nov 11 '22 07:11

Marian Spanik