Files

15 lines
229 B
C++
Raw Permalink Normal View History

2025-10-02 00:20:28 -06:00
#include "debugapi.h"
2025-10-02 00:20:28 -06:00
#include "common.h"
#include "context.h"
2025-10-02 00:20:28 -06:00
namespace kernel32 {
2025-10-30 02:23:09 -06:00
BOOL WINAPI IsDebuggerPresent() {
HOST_CONTEXT_GUARD();
2025-10-02 00:20:28 -06:00
DEBUG_LOG("STUB: IsDebuggerPresent()\n");
return FALSE;
}
} // namespace kernel32