mirror of
https://github.com/reactos/reactos.git
synced 2025-08-06 02:43:09 +00:00
[UCRT] Import Microsoft.Windows.SDK.CRTSource version 10.0.22621.3
Imported from https://www.nuget.org/packages/Microsoft.Windows.SDK.CRTSource/10.0.22621.3 License: MIT
This commit is contained in:
parent
f1b60c66f0
commit
04e0dc4a7a
568 changed files with 115483 additions and 0 deletions
127
sdk/include/ucrt/corecrt_wprocess.h
Normal file
127
sdk/include/ucrt/corecrt_wprocess.h
Normal file
|
@ -0,0 +1,127 @@
|
|||
//
|
||||
// corecrt_wprocess.h
|
||||
//
|
||||
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
//
|
||||
// This file declares the wide character (wchar_t) process functionality, shared
|
||||
// by <process.h> and <wchar.h>.
|
||||
//
|
||||
#pragma once
|
||||
|
||||
#include <corecrt.h>
|
||||
|
||||
#pragma warning(push)
|
||||
#pragma warning(disable: _UCRT_DISABLED_WARNINGS)
|
||||
_UCRT_DISABLE_CLANG_WARNINGS
|
||||
|
||||
_CRT_BEGIN_C_HEADER
|
||||
|
||||
|
||||
|
||||
#if _CRT_FUNCTIONS_REQUIRED
|
||||
#ifdef _CRT_USE_WINAPI_FAMILY_DESKTOP_APP
|
||||
|
||||
_DCRTIMP intptr_t __cdecl _wexecl(
|
||||
_In_z_ wchar_t const* _FileName,
|
||||
_In_z_ wchar_t const* _ArgList,
|
||||
...);
|
||||
|
||||
_DCRTIMP intptr_t __cdecl _wexecle(
|
||||
_In_z_ wchar_t const* _FileName,
|
||||
_In_z_ wchar_t const* _ArgList,
|
||||
...);
|
||||
|
||||
_DCRTIMP intptr_t __cdecl _wexeclp(
|
||||
_In_z_ wchar_t const* _FileName,
|
||||
_In_z_ wchar_t const* _ArgList,
|
||||
...);
|
||||
|
||||
_DCRTIMP intptr_t __cdecl _wexeclpe(
|
||||
_In_z_ wchar_t const* _FileName,
|
||||
_In_z_ wchar_t const* _ArgList,
|
||||
...);
|
||||
|
||||
_DCRTIMP intptr_t __cdecl _wexecv(
|
||||
_In_z_ wchar_t const* _FileName,
|
||||
_In_z_ wchar_t const* const* _ArgList
|
||||
);
|
||||
|
||||
_DCRTIMP intptr_t __cdecl _wexecve(
|
||||
_In_z_ wchar_t const* _FileName,
|
||||
_In_z_ wchar_t const* const* _ArgList,
|
||||
_In_opt_z_ wchar_t const* const* _Env
|
||||
);
|
||||
|
||||
_DCRTIMP intptr_t __cdecl _wexecvp(
|
||||
_In_z_ wchar_t const* _FileName,
|
||||
_In_z_ wchar_t const* const* _ArgList
|
||||
);
|
||||
|
||||
_DCRTIMP intptr_t __cdecl _wexecvpe(
|
||||
_In_z_ wchar_t const* _FileName,
|
||||
_In_z_ wchar_t const* const* _ArgList,
|
||||
_In_opt_z_ wchar_t const* const* _Env
|
||||
);
|
||||
|
||||
_DCRTIMP intptr_t __cdecl _wspawnl(
|
||||
_In_ int _Mode,
|
||||
_In_z_ wchar_t const* _FileName,
|
||||
_In_z_ wchar_t const* _ArgList,
|
||||
...);
|
||||
|
||||
_DCRTIMP intptr_t __cdecl _wspawnle(
|
||||
_In_ int _Mode,
|
||||
_In_z_ wchar_t const* _FileName,
|
||||
_In_z_ wchar_t const* _ArgList,
|
||||
...);
|
||||
|
||||
_DCRTIMP intptr_t __cdecl _wspawnlp(
|
||||
_In_ int _Mode,
|
||||
_In_z_ wchar_t const* _FileName,
|
||||
_In_z_ wchar_t const* _ArgList,
|
||||
...);
|
||||
|
||||
_DCRTIMP intptr_t __cdecl _wspawnlpe(
|
||||
_In_ int _Mode,
|
||||
_In_z_ wchar_t const* _FileName,
|
||||
_In_z_ wchar_t const* _ArgList,
|
||||
...);
|
||||
|
||||
_DCRTIMP intptr_t __cdecl _wspawnv(
|
||||
_In_ int _Mode,
|
||||
_In_z_ wchar_t const* _FileName,
|
||||
_In_z_ wchar_t const* const* _ArgList
|
||||
);
|
||||
|
||||
_DCRTIMP intptr_t __cdecl _wspawnve(
|
||||
_In_ int _Mode,
|
||||
_In_z_ wchar_t const* _FileName,
|
||||
_In_z_ wchar_t const* const* _ArgList,
|
||||
_In_opt_z_ wchar_t const* const* _Env
|
||||
);
|
||||
|
||||
_DCRTIMP intptr_t __cdecl _wspawnvp(
|
||||
_In_ int _Mode,
|
||||
_In_z_ wchar_t const* _FileName,
|
||||
_In_z_ wchar_t const* const* _ArgList
|
||||
);
|
||||
|
||||
_DCRTIMP intptr_t __cdecl _wspawnvpe(
|
||||
_In_ int _Mode,
|
||||
_In_z_ wchar_t const* _FileName,
|
||||
_In_z_ wchar_t const* const* _ArgList,
|
||||
_In_opt_z_ wchar_t const* const* _Env
|
||||
);
|
||||
|
||||
_DCRTIMP int __cdecl _wsystem(
|
||||
_In_opt_z_ wchar_t const* _Command
|
||||
);
|
||||
|
||||
#endif // _CRT_USE_WINAPI_FAMILY_DESKTOP_APP
|
||||
#endif // _CRT_FUNCTIONS_REQUIRED
|
||||
|
||||
|
||||
|
||||
_CRT_END_C_HEADER
|
||||
_UCRT_RESTORE_CLANG_WARNINGS
|
||||
#pragma warning(pop) // _UCRT_DISABLED_WARNINGS
|
Loading…
Add table
Add a link
Reference in a new issue