Can I add breakpoint on windows CreateProcess API in Visual studio like I can do in Windbg?
|
1
|
|
|
|
|
|
Yes - Go "Debug / New breakpoint / Break at function..." and paste this:
into the Function box. That assumes a Unicode build - replace A bit of explanation: the A related note: sometimes the name of the function as seen by the debugger is different from its real name - see this blog post for an example, and how to find the right name to use: Setting a Visual Studio breakpoint on a Win32 API function in user32.dll |
||||
|
