commial / ttd-bindings

Bindings for Microsoft WinDBG TTD
206 stars 31 forks source link

How to implement F5/F10/F11 #29

Open PromiseNoDieForever opened 12 months ago

PromiseNoDieForever commented 12 months ago

Very disturbing. I want to implement the function of using F5/F10/F11. How should I implement it? eg use code for g-/g+/t-/t+/p+/- in windbg

commial commented 11 months ago

Hi,

Not sure to properly understand the question, but I'll give a try.

Commands in WinDBG are actually wrappers for more complex functionalities. Some of them are easier than other, for instance:

Long story short, ttd-bindings wraps TTD, which provides "basic" functionalities. WinDBG builds its more advanced features by assembling them.

PromiseNoDieForever commented 11 months ago

OK Thanks,I will try it The main reason for asking this question is because I want to know whether you reverse engineered the code implemented on windbg.