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
e4d34098
Commit
e4d34098
authored
Dec 14, 2018
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcrt: Fix __p__fmode() prototype.
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
32bac734
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
4 deletions
+4
-4
data.c
dlls/msvcrt/data.c
+2
-2
msvcrt.h
dlls/msvcrt/msvcrt.h
+1
-1
stdlib.h
include/msvcrt/stdlib.h
+1
-1
No files found.
dlls/msvcrt/data.c
View file @
e4d34098
...
...
@@ -33,7 +33,7 @@ int MSVCRT___argc = 0;
static
int
argc_expand
;
static
int
wargc_expand
;
unsigned
int
MSVCRT__commode
=
0
;
unsigned
int
MSVCRT__fmode
=
0
;
int
MSVCRT__fmode
=
0
;
unsigned
int
MSVCRT__osver
=
0
;
unsigned
int
MSVCRT__osplatform
=
0
;
unsigned
int
MSVCRT__winmajor
=
0
;
...
...
@@ -180,7 +180,7 @@ int CDECL _get_wpgmptr(WCHAR** p)
/***********************************************************************
* __p__fmode (MSVCRT.@)
*/
unsigned
int
*
CDECL
__p__fmode
(
void
)
{
return
&
MSVCRT__fmode
;
}
int
*
CDECL
__p__fmode
(
void
)
{
return
&
MSVCRT__fmode
;
}
/***********************************************************************
* _set_fmode (MSVCRT.@)
...
...
dlls/msvcrt/msvcrt.h
View file @
e4d34098
...
...
@@ -1121,7 +1121,7 @@ int WINAPIV _cprintf(const char*,...);
int
WINAPIV
_cwprintf
(
const
MSVCRT_wchar_t
*
,...);
char
***
__cdecl
MSVCRT___p__environ
(
void
);
int
*
__cdecl
__p___mb_cur_max
(
void
);
unsigned
int
*
__cdecl
__p__fmode
(
void
);
int
*
__cdecl
__p__fmode
(
void
);
MSVCRT_wchar_t
*
__cdecl
MSVCRT__wcsdup
(
const
MSVCRT_wchar_t
*
);
MSVCRT_size_t
__cdecl
MSVCRT_strnlen
(
const
char
*
,
MSVCRT_size_t
);
MSVCRT_size_t
__cdecl
MSVCRT_wcsnlen
(
const
MSVCRT_wchar_t
*
,
MSVCRT_size_t
);
...
...
include/msvcrt/stdlib.h
View file @
e4d34098
...
...
@@ -109,7 +109,7 @@ extern char*** __cdecl __p__environ(void);
#define _environ (*__p__environ())
extern
wchar_t
***
__cdecl
__p__wenviron
(
void
);
#define _wenviron (*__p__wenviron())
extern
unsigned
int
*
__cdecl
__p__fmode
(
void
);
extern
int
*
__cdecl
__p__fmode
(
void
);
#define _fmode (*__p__fmode())
#else
/* __i386__ */
...
...
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