Split kernel32 into separate files (part 2)

This commit is contained in:
2025-10-02 00:20:28 -06:00
parent 9ea5b24b67
commit fa3ed4893a
53 changed files with 7352 additions and 6134 deletions

13
dll/kernel32/debugapi.cpp Normal file
View File

@@ -0,0 +1,13 @@
#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