File tree Expand file tree Collapse file tree 1 file changed +22
-0
lines changed Expand file tree Collapse file tree 1 file changed +22
-0
lines changed Original file line number Diff line number Diff line change @@ -463,6 +463,28 @@ extern "C" {
463
463
argv : * const * const c_char ,
464
464
envp : * const * const c_char ,
465
465
) -> :: c_int ;
466
+ #[ link_name = "_wexecv" ]
467
+ pub fn wexecv (
468
+ prog : * const wchar_t ,
469
+ argv : * const * const wchar_t ,
470
+ ) -> :: intptr_t ;
471
+ #[ link_name = "_wexecve" ]
472
+ pub fn wexecve (
473
+ prog : * const wchar_t ,
474
+ argv : * const * const wchar_t ,
475
+ envp : * const * const wchar_t ,
476
+ ) -> :: intptr_t ;
477
+ #[ link_name = "_wexecvp" ]
478
+ pub fn wexecvp (
479
+ c : * const wchar_t ,
480
+ argv : * const * const wchar_t ,
481
+ ) -> :: intptr_t ;
482
+ #[ link_name = "_wexecvpe" ]
483
+ pub fn wexecvpe (
484
+ c : * const wchar_t ,
485
+ argv : * const * const wchar_t ,
486
+ envp : * const * const wchar_t ,
487
+ ) -> :: intptr_t ;
466
488
#[ link_name = "_getcwd" ]
467
489
pub fn getcwd ( buf : * mut c_char , size : :: c_int ) -> * mut c_char ;
468
490
#[ link_name = "_getpid" ]
You can’t perform that action at this time.
0 commit comments