How to get list of breakpoints in Visual Studio programmatically? -


is there way list of breakpoints set in visual studio in debugged c++ application application itself?

note: scanning through code presence of 0xcc byte won't task original bytes in places of set breakpoints. 1 of solutions may include disassembling necessary code, then, if 0xcc encountered, looking @ original file , receiving original byte. maybe vs offers same functionality through 1 of interfaces?


Comments