initial commit

This commit is contained in:
snow32a
2026-06-17 00:10:06 +03:00
parent 72b86c4153
commit 62187e7d6e
35 changed files with 6170 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
#include <windows.h>
BOOL WINAPI IsProcessorFeaturePresent(DWORD ProcessorFeature)
{
return FALSE;
}
FARPROC WINAPI DelayLoadFailureHook(_In_ LPCSTR pszDllName,
_In_ LPCSTR pszProcName) {
return (void*)(IsProcessorFeaturePresent);
}