Skip to content

Latest commit

 

History

History
12 lines (6 loc) · 494 Bytes

ReadMe.md

File metadata and controls

12 lines (6 loc) · 494 Bytes

Checking for a Debugger with IsDebuggerPresent

Background

The most basic check a software developer can do to check for the presence of a debugger is with Window's built in IsDebuggerPresent. The method is located in Kernel32.dll and interfaced with IsDebuggerPresent, which exists in Windows.h

Relevant Links

MSDN Page

More Examples