mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-08 06:44:27 +00:00
also start prefering NtDll API. so far: * NtQueryInformationFile * NtClose adds a performance workaround for windows unicode conversion. but that should probably be removed before merging
6 lines
217 B
C
6 lines
217 B
C
#include <process.h>
|
|
|
|
intptr_t __cdecl spawnve(int mode,const char *_Filename,char *const _ArgList[],char *const _Env[])
|
|
{
|
|
return _spawnve(mode, _Filename,(const char *const *)_ArgList,(const char *const *)_Env);
|
|
}
|