ReactOS 0.4.16-dev-2104-gb84fa49
corecrt_wprocess.h
Go to the documentation of this file.
1
6#ifndef _WPROCESS_DEFINED
7#define _WPROCESS_DEFINED
8
9#include <corecrt.h>
10
11#ifdef __cplusplus
12extern "C" {
13#endif
14
15_ACRTIMP intptr_t __cdecl _wexecl(const wchar_t*,const wchar_t*,...);
16_ACRTIMP intptr_t __cdecl _wexecle(const wchar_t*,const wchar_t*,...);
17_ACRTIMP intptr_t __cdecl _wexeclp(const wchar_t*,const wchar_t*,...);
18_ACRTIMP intptr_t __cdecl _wexeclpe(const wchar_t*,const wchar_t*,...);
19_ACRTIMP intptr_t __cdecl _wexecv(const wchar_t*,const wchar_t* const *);
20_ACRTIMP intptr_t __cdecl _wexecve(const wchar_t*,const wchar_t* const *,const wchar_t* const *);
21_ACRTIMP intptr_t __cdecl _wexecvp(const wchar_t*,const wchar_t* const *);
22_ACRTIMP intptr_t __cdecl _wexecvpe(const wchar_t*,const wchar_t* const *,const wchar_t* const *);
23_ACRTIMP intptr_t __cdecl _wspawnl(int,const wchar_t*,const wchar_t*,...);
24_ACRTIMP intptr_t __cdecl _wspawnle(int,const wchar_t*,const wchar_t*,...);
25_ACRTIMP intptr_t __cdecl _wspawnlp(int,const wchar_t*,const wchar_t*,...);
26_ACRTIMP intptr_t __cdecl _wspawnlpe(int,const wchar_t*,const wchar_t*,...);
27_ACRTIMP intptr_t __cdecl _wspawnv(int,const wchar_t*,const wchar_t* const *);
28_ACRTIMP intptr_t __cdecl _wspawnve(int,const wchar_t*,const wchar_t* const *,const wchar_t* const *);
29_ACRTIMP intptr_t __cdecl _wspawnvp(int,const wchar_t*,const wchar_t* const *);
30_ACRTIMP intptr_t __cdecl _wspawnvpe(int,const wchar_t*,const wchar_t* const *,const wchar_t* const *);
31_ACRTIMP int __cdecl _wsystem(const wchar_t*);
32
33#ifdef __cplusplus
34}
35#endif
36
37#endif /* _WPROCESS_DEFINED */
int intptr_t
Definition: corecrt.h:176
#define __cdecl
Definition: corecrt.h:121
#define _ACRTIMP
Definition: corecrt.h:153
_ACRTIMP intptr_t __cdecl _wspawnl(int, const wchar_t *, const wchar_t *,...)
Definition: process.c:689
_ACRTIMP intptr_t __cdecl _wspawnv(int, const wchar_t *, const wchar_t *const *)
Definition: process.c:956
_ACRTIMP intptr_t __cdecl _wspawnvp(int, const wchar_t *, const wchar_t *const *)
Definition: process.c:1023
_ACRTIMP intptr_t __cdecl _wspawnlp(int, const wchar_t *, const wchar_t *,...)
Definition: process.c:794
_ACRTIMP intptr_t __cdecl _wexecve(const wchar_t *, const wchar_t *const *, const wchar_t *const *)
Definition: process.c:626
_ACRTIMP intptr_t __cdecl _wexecv(const wchar_t *, const wchar_t *const *)
Definition: process.c:605
_ACRTIMP intptr_t __cdecl _wspawnvpe(int, const wchar_t *, const wchar_t *const *, const wchar_t *const *)
Definition: process.c:991
_ACRTIMP intptr_t __cdecl _wexecl(const wchar_t *, const wchar_t *,...)
Definition: process.c:395
_ACRTIMP intptr_t __cdecl _wexecvp(const wchar_t *, const wchar_t *const *)
Definition: process.c:668
_ACRTIMP intptr_t __cdecl _wexeclp(const wchar_t *, const wchar_t *,...)
Definition: process.c:500
_ACRTIMP intptr_t __cdecl _wspawnle(int, const wchar_t *, const wchar_t *,...)
Definition: process.c:735
_ACRTIMP intptr_t __cdecl _wexecvpe(const wchar_t *, const wchar_t *const *, const wchar_t *const *)
Definition: process.c:647
_ACRTIMP intptr_t __cdecl _wexecle(const wchar_t *, const wchar_t *,...)
Definition: process.c:441
_ACRTIMP int __cdecl _wsystem(const wchar_t *)
Definition: process.c:1254
_ACRTIMP intptr_t __cdecl _wspawnlpe(int, const wchar_t *, const wchar_t *,...)
Definition: process.c:840
_ACRTIMP intptr_t __cdecl _wexeclpe(const wchar_t *, const wchar_t *,...)
Definition: process.c:546
_ACRTIMP intptr_t __cdecl _wspawnve(int, const wchar_t *, const wchar_t *const *, const wchar_t *const *)
Definition: process.c:924