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
fb424831
Commit
fb424831
authored
Nov 05, 2014
by
Iván Matellanes
Committed by
Alexandre Julliard
Nov 06, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcrt: Added _getwc_nolock implementation.
parent
caedfc89
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
6 additions
and
0 deletions
+6
-0
msvcr100.spec
dlls/msvcr100/msvcr100.spec
+1
-0
msvcr110.spec
dlls/msvcr110/msvcr110.spec
+1
-0
msvcr120.spec
dlls/msvcr120/msvcr120.spec
+1
-0
msvcr80.spec
dlls/msvcr80/msvcr80.spec
+1
-0
msvcr90.spec
dlls/msvcr90/msvcr90.spec
+1
-0
stdio.h
include/msvcrt/stdio.h
+1
-0
No files found.
dlls/msvcr100/msvcr100.spec
View file @
fb424831
...
...
@@ -906,6 +906,7 @@
@ cdecl _getptd()
@ stub _getsystime(ptr)
@ cdecl _getw(ptr) MSVCRT__getw
@ cdecl _getwc_nolock(ptr) MSVCRT__fgetwc_nolock
@ stub _getwch
@ stub _getwch_nolock
@ stub _getwche
...
...
dlls/msvcr110/msvcr110.spec
View file @
fb424831
...
...
@@ -1253,6 +1253,7 @@
@ cdecl _getptd()
@ stub _getsystime(ptr)
@ cdecl _getw(ptr) MSVCRT__getw
@ cdecl _getwc_nolock(ptr) MSVCRT__fgetwc_nolock
@ stub _getwch
@ stub _getwch_nolock
@ stub _getwche
...
...
dlls/msvcr120/msvcr120.spec
View file @
fb424831
...
...
@@ -1251,6 +1251,7 @@
@ cdecl _getptd()
@ stub _getsystime(ptr)
@ cdecl _getw(ptr) MSVCRT__getw
@ cdecl _getwc_nolock(ptr) MSVCRT__fgetwc_nolock
@ stub _getwch
@ stub _getwch_nolock
@ stub _getwche
...
...
dlls/msvcr80/msvcr80.spec
View file @
fb424831
...
...
@@ -580,6 +580,7 @@
@ cdecl _getptd()
@ stub _getsystime(ptr)
@ cdecl _getw(ptr) MSVCRT__getw
@ cdecl _getwc_nolock(ptr) MSVCRT__fgetwc_nolock
@ stub _getwch
@ stub _getwch_nolock
@ stub _getwche
...
...
dlls/msvcr90/msvcr90.spec
View file @
fb424831
...
...
@@ -557,6 +557,7 @@
@ cdecl _getptd()
@ stub _getsystime(ptr)
@ cdecl _getw(ptr) MSVCRT__getw
@ cdecl _getwc_nolock(ptr) MSVCRT__fgetwc_nolock
@ stub _getwch
@ stub _getwch_nolock
@ stub _getwche
...
...
include/msvcrt/stdio.h
View file @
fb424831
...
...
@@ -203,6 +203,7 @@ wint_t __cdecl _fgetwc_nolock(FILE*);
wint_t
__cdecl
_fgetwchar
(
void
);
wint_t
__cdecl
_fputwc_nolock
(
wint_t
,
FILE
*
);
wint_t
__cdecl
_fputwchar
(
wint_t
);
wint_t
__cdecl
_getwc_nolock
(
FILE
*
);
wchar_t
*
__cdecl
_getws
(
wchar_t
*
);
int
__cdecl
_putws
(
const
wchar_t
*
);
int
__cdecl
_snwprintf
(
wchar_t
*
,
size_t
,
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