wibo/dll/kernel32/debugapi.cpp
Luke Street 166b9036fd Dont set ERROR_SUCCESS generally
Turns out we should only be setting this in a select few cases.
2025-10-06 00:03:10 -06:00

16 lines
251 B
C++

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