-
Notifications
You must be signed in to change notification settings - Fork 21
Debug & breakpoints with Visual Studio 2017
Yaroslav Kibysh edited this page Aug 12, 2019
·
4 revisions
-
Download repository and open WinCeCompatLayer solution
-
Start program you want to debug, and hit yes
-
In opened window choose opened solution and click OK
-
Now you can configure your breakpoints if you want
-
Return to the window from the 1st step and click OK to continue
-
After breaking a program, you can view anything as in usual VC++ Debug session! You can view arguments
-
Or you can view returnable values. That's why code looks like below: we want to save returned value for debugging.
-
Additionally you can handle Win32 errors (how?)
-
Additionally, you can change code when program is paused!