init commit

This commit is contained in:
computerism-win8.1
2026-06-02 22:24:44 +03:00
parent b3351813a4
commit c5629d9e0a
50 changed files with 11771 additions and 0 deletions

31
progwrp-CSOG/dbg.c Normal file
View File

@@ -0,0 +1,31 @@
#include "progwrp.h"
#include "export.h"
#include "implementations.h"
#include <dbghelp.h>
BOOL WINAPI Implementation_SymGetSearchPathW(
HANDLE hProcess,
PWSTR SearchPath,
DWORD SearchPathLength
)
{
return FALSE;
}
BOOL WINAPI Implementation_SymSetSearchPathW(
HANDLE hProcess,
PCWSTR SearchPath
)
{
return FALSE;
}
BOOL WINAPI Implementation_SymFromAddr(
HANDLE hProcess,
DWORD64 Address,
PDWORD64 Displacement,
PSYMBOL_INFO Symbol
)
{
return FALSE;
}