diff options
author | midipix <writeonce@midipix.org> | 2017-01-28 19:08:59 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2017-01-28 21:53:55 -0500 |
commit | 4828517d5b619ddbbfbb05d1d698c50f02869b53 (patch) | |
tree | 70edc5429b2851b1ab12623831b1a832a11320d9 /src/internal | |
parent | 75545658ab6d9a6b4e3d73466c95158f7c22fb17 (diff) | |
download | pemagine-4828517d5b619ddbbfbb05d1d698c50f02869b53.tar.bz2 pemagine-4828517d5b619ddbbfbb05d1d698c50f02869b53.tar.xz |
ldso: added pe_load_framework_loader().
Diffstat (limited to 'src/internal')
-rw-r--r-- | src/internal/pe_os.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/internal/pe_os.h b/src/internal/pe_os.h index a2f83b0..ba7da0e 100644 --- a/src/internal/pe_os.h +++ b/src/internal/pe_os.h @@ -11,6 +11,7 @@ #define OS_STATUS_INVALID_ADDRESS (int32_t)0xC0000141 #define OS_STATUS_CONTEXT_MISMATCH (int32_t)0xC0000719 #define OS_STATUS_COULD_NOT_INTERPRET (int32_t)0xC00000B9 +#define OS_STATUS_NOT_SUPPORTED (int32_t)0xC00000BB #define OS_STATUS_NAME_TOO_LONG (int32_t)0xC0000106 #define OS_STATUS_INTERNAL_ERROR (int32_t)0xC00000E5 #define OS_STATUS_BAD_FILE_TYPE (int32_t)0xC0000903 @@ -157,4 +158,10 @@ typedef int32_t __stdcall os_zw_open_file( __in uint32_t share_access, __in uint32_t open_options); +typedef int32_t __stdcall os_ldr_load_dll( + __in wchar16_t * image_path __optional, + __in uint32_t * image_flags __optional, + __in struct pe_unicode_str * image_name, + __out void ** image_base); + #endif |