add missing files

This commit is contained in:
0xcf80
2024-01-21 14:35:36 +01:00
parent 89a43d6ec0
commit de637ab97e
8 changed files with 236 additions and 46 deletions
+2 -1
View File
@@ -1,5 +1,6 @@
#pragma once
# include <Windows.h>
#include <stdio.h>
// https://stackoverflow.com/questions/1941307/debug-print-macro-in-c
#define DEBUG
@@ -17,7 +18,7 @@
typedef struct _SYSCALL_INFO_ENTRY {
LPVOID pSyscall; // pointer to syscall instruction
DWORD syscallId; // ID of the syscall
LPCSTR functionHash; // unused atm, for future use
DWORD functionHash; // unused atm, for future use
} SYSCALL_INFO_ENTRY, *PSYSCALL_INFO_ENTRY;
// see populate_syscall_table() for info on how to add more syscalls