Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
ce62c3c8
Commit
ce62c3c8
authored
Mar 09, 2020
by
Jacek Caban
Committed by
Alexandre Julliard
Mar 09, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
include: Add corecrt_wprocess.h header.
Signed-off-by:
Jacek Caban
<
jacek@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
da7d60bf
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
40 additions
and
42 deletions
+40
-42
Makefile.in
include/Makefile.in
+1
-0
corecrt_wprocess.h
include/msvcrt/corecrt_wprocess.h
+37
-0
process.h
include/msvcrt/process.h
+1
-21
wchar.h
include/msvcrt/wchar.h
+1
-21
No files found.
include/Makefile.in
View file @
ce62c3c8
...
...
@@ -428,6 +428,7 @@ SOURCES = \
msvcrt/corecrt_stdio_config.h
\
msvcrt/corecrt_wctype.h
\
msvcrt/corecrt_wio.h
\
msvcrt/corecrt_wprocess.h
\
msvcrt/corecrt_wstdio.h
\
msvcrt/corecrt_wstdlib.h
\
msvcrt/corecrt_wstring.h
\
...
...
include/msvcrt/corecrt_wprocess.h
0 → 100644
View file @
ce62c3c8
/**
* This file has no copyright assigned and is placed in the Public Domain.
* This file is part of the Wine project.
*/
#ifndef _WPROCESS_DEFINED
#define _WPROCESS_DEFINED
#include <corecrt.h>
#ifdef __cplusplus
extern
"C"
{
#endif
intptr_t
WINAPIV
_wexecl
(
const
wchar_t
*
,
const
wchar_t
*
,...);
intptr_t
WINAPIV
_wexecle
(
const
wchar_t
*
,
const
wchar_t
*
,...);
intptr_t
WINAPIV
_wexeclp
(
const
wchar_t
*
,
const
wchar_t
*
,...);
intptr_t
WINAPIV
_wexeclpe
(
const
wchar_t
*
,
const
wchar_t
*
,...);
intptr_t
__cdecl
_wexecv
(
const
wchar_t
*
,
const
wchar_t
*
const
*
);
intptr_t
__cdecl
_wexecve
(
const
wchar_t
*
,
const
wchar_t
*
const
*
,
const
wchar_t
*
const
*
);
intptr_t
__cdecl
_wexecvp
(
const
wchar_t
*
,
const
wchar_t
*
const
*
);
intptr_t
__cdecl
_wexecvpe
(
const
wchar_t
*
,
const
wchar_t
*
const
*
,
const
wchar_t
*
const
*
);
intptr_t
WINAPIV
_wspawnl
(
int
,
const
wchar_t
*
,
const
wchar_t
*
,...);
intptr_t
WINAPIV
_wspawnle
(
int
,
const
wchar_t
*
,
const
wchar_t
*
,...);
intptr_t
WINAPIV
_wspawnlp
(
int
,
const
wchar_t
*
,
const
wchar_t
*
,...);
intptr_t
WINAPIV
_wspawnlpe
(
int
,
const
wchar_t
*
,
const
wchar_t
*
,...);
intptr_t
__cdecl
_wspawnv
(
int
,
const
wchar_t
*
,
const
wchar_t
*
const
*
);
intptr_t
__cdecl
_wspawnve
(
int
,
const
wchar_t
*
,
const
wchar_t
*
const
*
,
const
wchar_t
*
const
*
);
intptr_t
__cdecl
_wspawnvp
(
int
,
const
wchar_t
*
,
const
wchar_t
*
const
*
);
intptr_t
__cdecl
_wspawnvpe
(
int
,
const
wchar_t
*
,
const
wchar_t
*
const
*
,
const
wchar_t
*
const
*
);
int
__cdecl
_wsystem
(
const
wchar_t
*
);
#ifdef __cplusplus
}
#endif
#endif
/* _WPROCESS_DEFINED */
include/msvcrt/process.h
View file @
ce62c3c8
...
...
@@ -9,6 +9,7 @@
#define __WINE_PROCESS_H
#include <corecrt_startup.h>
#include <corecrt_wprocess.h>
/* Process creation flags */
#define _P_WAIT 0
...
...
@@ -57,27 +58,6 @@ void __cdecl abort(void) DECLSPEC_NORETURN;
void
__cdecl
exit
(
int
)
DECLSPEC_NORETURN
;
int
__cdecl
system
(
const
char
*
);
#ifndef _WPROCESS_DEFINED
#define _WPROCESS_DEFINED
intptr_t
WINAPIV
_wexecl
(
const
wchar_t
*
,
const
wchar_t
*
,...);
intptr_t
WINAPIV
_wexecle
(
const
wchar_t
*
,
const
wchar_t
*
,...);
intptr_t
WINAPIV
_wexeclp
(
const
wchar_t
*
,
const
wchar_t
*
,...);
intptr_t
WINAPIV
_wexeclpe
(
const
wchar_t
*
,
const
wchar_t
*
,...);
intptr_t
__cdecl
_wexecv
(
const
wchar_t
*
,
const
wchar_t
*
const
*
);
intptr_t
__cdecl
_wexecve
(
const
wchar_t
*
,
const
wchar_t
*
const
*
,
const
wchar_t
*
const
*
);
intptr_t
__cdecl
_wexecvp
(
const
wchar_t
*
,
const
wchar_t
*
const
*
);
intptr_t
__cdecl
_wexecvpe
(
const
wchar_t
*
,
const
wchar_t
*
const
*
,
const
wchar_t
*
const
*
);
intptr_t
WINAPIV
_wspawnl
(
int
,
const
wchar_t
*
,
const
wchar_t
*
,...);
intptr_t
WINAPIV
_wspawnle
(
int
,
const
wchar_t
*
,
const
wchar_t
*
,...);
intptr_t
WINAPIV
_wspawnlp
(
int
,
const
wchar_t
*
,
const
wchar_t
*
,...);
intptr_t
WINAPIV
_wspawnlpe
(
int
,
const
wchar_t
*
,
const
wchar_t
*
,...);
intptr_t
__cdecl
_wspawnv
(
int
,
const
wchar_t
*
,
const
wchar_t
*
const
*
);
intptr_t
__cdecl
_wspawnve
(
int
,
const
wchar_t
*
,
const
wchar_t
*
const
*
,
const
wchar_t
*
const
*
);
intptr_t
__cdecl
_wspawnvp
(
int
,
const
wchar_t
*
,
const
wchar_t
*
const
*
);
intptr_t
__cdecl
_wspawnvpe
(
int
,
const
wchar_t
*
,
const
wchar_t
*
const
*
,
const
wchar_t
*
const
*
);
int
__cdecl
_wsystem
(
const
wchar_t
*
);
#endif
/* _WPROCESS_DEFINED */
#ifdef __cplusplus
}
#endif
...
...
include/msvcrt/wchar.h
View file @
ce62c3c8
...
...
@@ -10,6 +10,7 @@
#include <corecrt_wctype.h>
#include <corecrt_wio.h>
#include <corecrt_wprocess.h>
#include <corecrt_wstdio.h>
#include <corecrt_wstdlib.h>
#include <corecrt_wstring.h>
...
...
@@ -41,27 +42,6 @@ int __cdecl _wrmdir(const wchar_t*);
wchar_t
*
__cdecl
_wsetlocale
(
int
,
const
wchar_t
*
);
#endif
/* _WLOCALE_DEFINED */
#ifndef _WPROCESS_DEFINED
#define _WPROCESS_DEFINED
int
WINAPIV
_wexecl
(
const
wchar_t
*
,
const
wchar_t
*
,...);
int
WINAPIV
_wexecle
(
const
wchar_t
*
,
const
wchar_t
*
,...);
int
WINAPIV
_wexeclp
(
const
wchar_t
*
,
const
wchar_t
*
,...);
int
WINAPIV
_wexeclpe
(
const
wchar_t
*
,
const
wchar_t
*
,...);
int
__cdecl
_wexecv
(
const
wchar_t
*
,
const
wchar_t
*
const
*
);
int
__cdecl
_wexecve
(
const
wchar_t
*
,
const
wchar_t
*
const
*
,
const
wchar_t
*
const
*
);
int
__cdecl
_wexecvp
(
const
wchar_t
*
,
const
wchar_t
*
const
*
);
int
__cdecl
_wexecvpe
(
const
wchar_t
*
,
const
wchar_t
*
const
*
,
const
wchar_t
*
const
*
);
int
WINAPIV
_wspawnl
(
int
,
const
wchar_t
*
,
const
wchar_t
*
,...);
int
WINAPIV
_wspawnle
(
int
,
const
wchar_t
*
,
const
wchar_t
*
,...);
int
WINAPIV
_wspawnlp
(
int
,
const
wchar_t
*
,
const
wchar_t
*
,...);
int
WINAPIV
_wspawnlpe
(
int
,
const
wchar_t
*
,
const
wchar_t
*
,...);
int
__cdecl
_wspawnv
(
int
,
const
wchar_t
*
,
const
wchar_t
*
const
*
);
int
__cdecl
_wspawnve
(
int
,
const
wchar_t
*
,
const
wchar_t
*
const
*
,
const
wchar_t
*
const
*
);
int
__cdecl
_wspawnvp
(
int
,
const
wchar_t
*
,
const
wchar_t
*
const
*
);
int
__cdecl
_wspawnvpe
(
int
,
const
wchar_t
*
,
const
wchar_t
*
const
*
,
const
wchar_t
*
const
*
);
int
__cdecl
_wsystem
(
const
wchar_t
*
);
#endif
/* _WPROCESS_DEFINED */
wchar_t
__cdecl
btowc
(
int
);
size_t
__cdecl
mbrlen
(
const
char
*
,
size_t
,
mbstate_t
*
);
size_t
__cdecl
mbrtowc
(
wchar_t
*
,
const
char
*
,
size_t
,
mbstate_t
*
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment