remove precompiled headers

This commit is contained in:
Hay1tsme
2025-02-04 11:05:07 -05:00
parent 5e44ceea22
commit 4633c51d58
4 changed files with 0 additions and 36 deletions
-1
View File
@@ -1,7 +1,6 @@
hook_lib = static_library(
'hook',
include_directories : inc,
c_pch : '../precompiled.h',
sources : [
'args.c',
'args.h',
-1
View File
@@ -1,7 +1,6 @@
hooklib_lib = static_library(
'hooklib',
include_directories : inc,
c_pch : '../precompiled.h',
sources : [
'serial.c',
'serial.h',
-1
View File
@@ -1,7 +1,6 @@
executable(
'inject',
include_directories : inc,
c_pch : '../precompiled.h',
sources : [
'debug.c',
'debug.h',
-33
View File
@@ -1,33 +0,0 @@
/*
Making NTSTATUS available is slightly awkward. See:
https://kirkshoop.github.io/2011/09/20/ntstatus.html
*/
/* Win32 user-mode API */
#define WIN32_NO_STATUS
#include <windows.h>
#undef WIN32_NO_STATUS
#include <winternl.h>
#include <tlhelp32.h>
#include <unknwn.h>
/* Win32 kernel-mode definitions */
#ifdef __GNUC__
/* MinGW needs to include this for PHYSICAL_ADDRESS to be defined.
The MS SDK throws a bunch of duplicate symbol errors instead. */
#include <ntdef.h>
#else
#include <winnt.h>
#endif
#include <devioctl.h>
#include <ntddser.h>
#include <ntstatus.h>
/* ANSI C */
#include <assert.h>
#include <stdbool.h>
#include <stddef.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>