Files

16 lines
251 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
#include "errors.h"
namespace kernel32 {
BOOL WIN_FUNC IsDebuggerPresent() {
HOST_CONTEXT_GUARD();
2025-10-02 00:20:28 -06:00
DEBUG_LOG("STUB: IsDebuggerPresent()\n");
return FALSE;
}
} // namespace kernel32