wibo/dll/kernel32/debugapi.cpp

15 lines
231 B
C++

#include "debugapi.h"
#include "common.h"
#include "context.h"
namespace kernel32 {
BOOL WIN_FUNC IsDebuggerPresent() {
HOST_CONTEXT_GUARD();
DEBUG_LOG("STUB: IsDebuggerPresent()\n");
return FALSE;
}
} // namespace kernel32