|
1234567891011121314151617181920212223242526272829303132333435 |
- /*
- there was a call to openfile that failed with STATUS_DATATYPE_MISALIGNMENT
- */
- #include <cstdio>
- #include <iostream>
- #include <stddef.h>
- #include <malloc.h>
- #include <Windows.h>
- #include <shlobj.h>
- #include <Shlwapi.h>
- #include <ntdll.h>
-
- #include "structs.h"
- #include "wow64ext.h"
- #include "misc.h"
- #include "syscall64.h"
- #include "get_syscall64_ids.h"
-
-
- BOOL file_test();
- void WINAPI RtlInitUnicodeString(unsigned char* target, PCWSTR source);
-
- #define PRINTF_PP(string, ...) printf(string, NARG(__VA_ARGS__), __VA_ARGS__)
-
- int main()
- {
- print_os_info();
-
- if(!initalize_ID_table())
- return 0;
-
- file_test();
- }
-
-
|