mirror of
https://github.com/decompals/wibo.git
synced 2025-10-15 22:55:11 +00:00
15 lines
263 B
C++
15 lines
263 B
C++
#include "debugapi.h"
|
|
#include "common.h"
|
|
#include "errors.h"
|
|
|
|
namespace kernel32 {
|
|
|
|
BOOL WIN_FUNC IsDebuggerPresent() {
|
|
HOST_CONTEXT_GUARD();
|
|
DEBUG_LOG("STUB: IsDebuggerPresent()\n");
|
|
wibo::lastError = ERROR_SUCCESS;
|
|
return FALSE;
|
|
}
|
|
|
|
} // namespace kernel32
|