diff options
author | midipix <writeonce@midipix.org> | 2017-12-21 17:12:42 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2017-12-22 05:18:57 -0500 |
commit | 15812f04c290bf84865678fd04e6beacc93fb6a6 (patch) | |
tree | b4c081be7c72a78db6b3e87d1cb1a09324441d85 /include | |
parent | 2104cf1edacf8b53caeebc2337404a4b0b46e557 (diff) | |
download | ntapi-15812f04c290bf84865678fd04e6beacc93fb6a6.tar.bz2 ntapi-15812f04c290bf84865678fd04e6beacc93fb6a6.tar.xz |
tt_array_copy_utf8(): properly implement the interp-optarg-script semantics.
Diffstat (limited to 'include')
-rw-r--r-- | include/ntapi/nt_argv.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/ntapi/nt_argv.h b/include/ntapi/nt_argv.h index de149dc..a75d538 100644 --- a/include/ntapi/nt_argv.h +++ b/include/ntapi/nt_argv.h @@ -157,10 +157,10 @@ typedef int32_t __stdcall ntapi_tt_get_env_var_meta_utf16( typedef int32_t __stdcall ntapi_tt_array_copy_utf8( __out int * argc, __in const char ** argv, - __in const char ** wenvp, - __in const char * image_name __optional, - __in const char * interpreter __optional, + __in const char ** envp, + __in const char * interp __optional, __in const char * optarg __optional, + __in const char * script __optional, __in void * base, __out void * buffer, __in size_t buflen, |