Files
wibo/dll/kernel32/debugapi.cpp
T
2025-10-02 00:20:28 -06:00

14 lines
240 B
C++

#include "debugapi.h"
#include "common.h"
#include "errors.h"
namespace kernel32 {
BOOL WIN_FUNC IsDebuggerPresent() {
DEBUG_LOG("STUB: IsDebuggerPresent()\n");
wibo::lastError = ERROR_SUCCESS;
return FALSE;
}
} // namespace kernel32