From 77cbd46254c491fb56d863494b9102217f297252 Mon Sep 17 00:00:00 2001 From: midipix Date: Sat, 28 Jan 2017 05:15:30 +0000 Subject: ldso: added pe_find_framework_loader(). --- src/internal/pe_os.h | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'src/internal/pe_os.h') diff --git a/src/internal/pe_os.h b/src/internal/pe_os.h index d0dc903..ad26de4 100644 --- a/src/internal/pe_os.h +++ b/src/internal/pe_os.h @@ -9,11 +9,17 @@ #define OS_STATUS_NO_MATCH 0xC0000272 #define OS_STATUS_INVALID_ADDRESS 0xC0000141 #define OS_STATUS_CONTEXT_MISMATCH 0xC0000719 +#define OS_STATUS_COULD_NOT_INTERPRET 0xC00000B9 +#define OS_STATUS_NAME_TOO_LONG 0xC0000106 #define OS_STATUS_INTERNAL_ERROR 0xC00000E5 #define OS_STATUS_BAD_FILE_TYPE 0xC0000903 #define OS_STATUS_OBJECT_NAME_NOT_FOUND 0xC0000034 +#define OS_STATUS_OBJECT_PATH_NOT_FOUND 0xC000003A #define OS_STATUS_MORE_PROCESSING_REQUIRED 0xC0000016 +#define OS_OBJ_INHERIT 0x00000002 +#define OS_OBJ_CASE_INSENSITIVE 0x00000040 + #define OS_SEC_SYNCHRONIZE 0x00100000 #define OS_FILE_READ_ACCESS 0x00000001 #define OS_FILE_READ_ATTRIBUTES 0x00000080 @@ -113,6 +119,10 @@ struct os_peb { }; +typedef int32_t __stdcall os_zw_close( + __in void * handle); + + typedef int32_t __stdcall os_zw_query_object( __in void * handle, __in int obj_info_class, -- cgit v1.2.3