diff --git a/include/ntapi/nt_acl.h b/include/ntapi/nt_acl.h index 8d82e0f..4619ade 100644 --- a/include/ntapi/nt_acl.h +++ b/include/ntapi/nt_acl.h @@ -2,7 +2,7 @@ #define _NT_ACL_H_ #include -#include +#include "nt_object.h" typedef enum _nt_sid_name_use { NT_SID_TYPE_USER = 1, diff --git a/include/ntapi/nt_guid.h b/include/ntapi/nt_guid.h index 332a899..7de2170 100644 --- a/include/ntapi/nt_guid.h +++ b/include/ntapi/nt_guid.h @@ -2,7 +2,7 @@ #define _NT_GUID_H_ #include -#include +#include "nt_object.h" typedef struct _nt_guid_str_utf16 { wchar16_t lbrace; diff --git a/include/ntapi/nt_hash.h b/include/ntapi/nt_hash.h index f0e2492..f846f72 100644 --- a/include/ntapi/nt_hash.h +++ b/include/ntapi/nt_hash.h @@ -2,7 +2,7 @@ #define _NT_HASH_H_ #include -#include +#include "nt_hash.h" typedef int32_t __cdecl ntapi_tt_populate_hashed_import_table( __in void * image_base, diff --git a/include/ntapi/nt_ldr.h b/include/ntapi/nt_ldr.h index 09ab179..fa7af3a 100644 --- a/include/ntapi/nt_ldr.h +++ b/include/ntapi/nt_ldr.h @@ -1,9 +1,9 @@ #ifndef _NT_LDR_H_ #define _NT_LDR_H_ -#include #include -#include +#include +#include "nt_object.h" typedef int32_t __stdcall ntapi_ldr_load_dll( __in wchar16_t * image_path __optional, diff --git a/include/ntapi/nt_process.h b/include/ntapi/nt_process.h index 9a94f0d..8d15a29 100644 --- a/include/ntapi/nt_process.h +++ b/include/ntapi/nt_process.h @@ -1,8 +1,8 @@ #ifndef _NT_PROCESS_H_ #define _NT_PROCESS_H_ -#include #include +#include #include "nt_object.h" #include "nt_memory.h" #include "nt_section.h" diff --git a/include/ntapi/nt_stat.h b/include/ntapi/nt_stat.h index 2bcac79..c2e9036 100644 --- a/include/ntapi/nt_stat.h +++ b/include/ntapi/nt_stat.h @@ -2,8 +2,8 @@ #define _NT_STAT_H_ #include -#include -#include +#include "nt_object.h" +#include "nt_file.h" /* ntapi_tt_stat info flags bits */ #define NT_STAT_DEFAULT (0x00000000) diff --git a/include/ntapi/nt_statfs.h b/include/ntapi/nt_statfs.h index c2aa6d6..ae1b541 100644 --- a/include/ntapi/nt_statfs.h +++ b/include/ntapi/nt_statfs.h @@ -2,7 +2,7 @@ #define _NT_STATFS_H_ #include -#include +#include "nt_object.h" /* ntapi_tt_statfs info flags bits */ #define NT_STATFS_DEFAULT (0x00000000) diff --git a/include/ntapi/nt_vfd.h b/include/ntapi/nt_vfd.h index 18185aa..0437c33 100644 --- a/include/ntapi/nt_vfd.h +++ b/include/ntapi/nt_vfd.h @@ -1,8 +1,8 @@ #ifndef _NT_VFD_H_ #define _NT_VFD_H_ -#include #include +#include #include "nt_object.h" #include "nt_guid.h" diff --git a/include/ntapi/nt_vmount.h b/include/ntapi/nt_vmount.h index 8c5db0c..989b7ea 100644 --- a/include/ntapi/nt_vmount.h +++ b/include/ntapi/nt_vmount.h @@ -1,8 +1,8 @@ #ifndef _NT_VMOUNT_H_ #define _NT_VMOUNT_H_ -#include #include +#include #include "nt_port.h" #include "nt_file.h" #include "nt_statfs.h"