diff options
author | midipix <writeonce@midipix.org> | 2016-12-11 20:10:11 -0500 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2016-12-11 20:10:11 -0500 |
commit | 1359b392d5ded223043b32a2d2dbf084d084344e (patch) | |
tree | 3100f9692b1e8ee2ccb29dfdcb63f113ca5925bf | |
parent | 421827b16abb16020821ed0e7d15a513254a0011 (diff) | |
download | ntapi-1359b392d5ded223043b32a2d2dbf084d084344e.tar.bz2 ntapi-1359b392d5ded223043b32a2d2dbf084d084344e.tar.xz |
api headers: normalize secondary header inclusion.
-rw-r--r-- | include/ntapi/nt_acl.h | 2 | ||||
-rw-r--r-- | include/ntapi/nt_guid.h | 2 | ||||
-rw-r--r-- | include/ntapi/nt_hash.h | 2 | ||||
-rw-r--r-- | include/ntapi/nt_ldr.h | 4 | ||||
-rw-r--r-- | include/ntapi/nt_process.h | 2 | ||||
-rw-r--r-- | include/ntapi/nt_stat.h | 4 | ||||
-rw-r--r-- | include/ntapi/nt_statfs.h | 2 | ||||
-rw-r--r-- | include/ntapi/nt_vfd.h | 2 | ||||
-rw-r--r-- | include/ntapi/nt_vmount.h | 2 |
9 files changed, 11 insertions, 11 deletions
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 <psxtypes/psxtypes.h> -#include <ntapi/nt_object.h> +#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 <psxtypes/psxtypes.h> -#include <ntapi/nt_object.h> +#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 <psxtypes/psxtypes.h> -#include <ntapi/nt_hash.h> +#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 <psxtypes/psxtypes.h> #include <dalist/dalist.h> -#include <ntapi/nt_object.h> +#include <psxtypes/psxtypes.h> +#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 <psxtypes/psxtypes.h> #include <pemagine/pemagine.h> +#include <psxtypes/psxtypes.h> #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 <psxtypes/psxtypes.h> -#include <ntapi/nt_object.h> -#include <ntapi/nt_file.h> +#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 <psxtypes/psxtypes.h> -#include <ntapi/nt_object.h> +#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 <psxtypes/psxtypes.h> #include <dalist/dalist.h> +#include <psxtypes/psxtypes.h> #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 <psxtypes/psxtypes.h> #include <dalist/dalist.h> +#include <psxtypes/psxtypes.h> #include "nt_port.h" #include "nt_file.h" #include "nt_statfs.h" |