Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
26ffc40b
Commit
26ffc40b
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_wdirect.h header.
Signed-off-by:
Jacek Caban
<
jacek@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
ce62c3c8
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
28 additions
and
19 deletions
+28
-19
Makefile.in
include/Makefile.in
+1
-0
corecrt_wdirect.h
include/msvcrt/corecrt_wdirect.h
+25
-0
direct.h
include/msvcrt/direct.h
+1
-10
wchar.h
include/msvcrt/wchar.h
+1
-9
No files found.
include/Makefile.in
View file @
26ffc40b
...
...
@@ -427,6 +427,7 @@ SOURCES = \
msvcrt/corecrt_startup.h
\
msvcrt/corecrt_stdio_config.h
\
msvcrt/corecrt_wctype.h
\
msvcrt/corecrt_wdirect.h
\
msvcrt/corecrt_wio.h
\
msvcrt/corecrt_wprocess.h
\
msvcrt/corecrt_wstdio.h
\
...
...
include/msvcrt/corecrt_wdirect.h
0 → 100644
View file @
26ffc40b
/**
* This file has no copyright assigned and is placed in the Public Domain.
* This file is part of the Wine project.
*/
#ifndef _WDIRECT_DEFINED
#define _WDIRECT_DEFINED
#include <corecrt.h>
#ifdef __cplusplus
extern
"C"
{
#endif
int
__cdecl
_wchdir
(
const
wchar_t
*
);
wchar_t
*
__cdecl
_wgetcwd
(
wchar_t
*
,
int
);
wchar_t
*
__cdecl
_wgetdcwd
(
int
,
wchar_t
*
,
int
);
int
__cdecl
_wmkdir
(
const
wchar_t
*
);
int
__cdecl
_wrmdir
(
const
wchar_t
*
);
#ifdef __cplusplus
}
#endif
#endif
/* _WDIRECT_DEFINED */
include/msvcrt/direct.h
View file @
26ffc40b
...
...
@@ -8,7 +8,7 @@
#ifndef __WINE_DIRECT_H
#define __WINE_DIRECT_H
#include <corecrt.h>
#include <corecrt
_wdirect
.h>
#include <pshpack8.h>
...
...
@@ -35,15 +35,6 @@ __msvcrt_ulong __cdecl _getdrives(void);
int
__cdecl
_mkdir
(
const
char
*
);
int
__cdecl
_rmdir
(
const
char
*
);
#ifndef _WDIRECT_DEFINED
#define _WDIRECT_DEFINED
int
__cdecl
_wchdir
(
const
wchar_t
*
);
wchar_t
*
__cdecl
_wgetcwd
(
wchar_t
*
,
int
);
wchar_t
*
__cdecl
_wgetdcwd
(
int
,
wchar_t
*
,
int
);
int
__cdecl
_wmkdir
(
const
wchar_t
*
);
int
__cdecl
_wrmdir
(
const
wchar_t
*
);
#endif
/* _WDIRECT_DEFINED */
#ifdef __cplusplus
}
#endif
...
...
include/msvcrt/wchar.h
View file @
26ffc40b
...
...
@@ -9,6 +9,7 @@
#define __WINE_WCHAR_H
#include <corecrt_wctype.h>
#include <corecrt_wdirect.h>
#include <corecrt_wio.h>
#include <corecrt_wprocess.h>
#include <corecrt_wstdio.h>
...
...
@@ -28,15 +29,6 @@ extern "C" {
typedef
int
mbstate_t
;
#ifndef _WDIRECT_DEFINED
#define _WDIRECT_DEFINED
int
__cdecl
_wchdir
(
const
wchar_t
*
);
wchar_t
*
__cdecl
_wgetcwd
(
wchar_t
*
,
int
);
wchar_t
*
__cdecl
_wgetdcwd
(
int
,
wchar_t
*
,
int
);
int
__cdecl
_wmkdir
(
const
wchar_t
*
);
int
__cdecl
_wrmdir
(
const
wchar_t
*
);
#endif
/* _WDIRECT_DEFINED */
#ifndef _WLOCALE_DEFINED
#define _WLOCALE_DEFINED
wchar_t
*
__cdecl
_wsetlocale
(
int
,
const
wchar_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