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
d4fab071
Commit
d4fab071
authored
Jun 14, 2015
by
Piotr Caban
Committed by
Alexandre Julliard
Jun 15, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcrt: Add _getwche implementation.
parent
9a10a716
Show whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
38 additions
and
13 deletions
+38
-13
msvcr100.spec
dlls/msvcr100/msvcr100.spec
+2
-2
msvcr110.spec
dlls/msvcr110/msvcr110.spec
+2
-2
msvcr120.spec
dlls/msvcr120/msvcr120.spec
+2
-2
msvcr70.spec
dlls/msvcr70/msvcr70.spec
+1
-1
msvcr71.spec
dlls/msvcr71/msvcr71.spec
+1
-1
msvcr80.spec
dlls/msvcr80/msvcr80.spec
+2
-2
msvcr90.spec
dlls/msvcr90/msvcr90.spec
+2
-2
console.c
dlls/msvcrt/console.c
+25
-0
msvcrt.spec
dlls/msvcrt/msvcrt.spec
+1
-1
No files found.
dlls/msvcr100/msvcr100.spec
View file @
d4fab071
...
...
@@ -909,8 +909,8 @@
@ cdecl _getwc_nolock(ptr) MSVCRT__fgetwc_nolock
@ cdecl _getwch()
@ cdecl _getwch_nolock()
@
stub _getwche
@
stub _getwche_nolock
@
cdecl _getwche()
@
cdecl _getwche_nolock()
@ cdecl _getws(ptr) MSVCRT__getws
@ stub _getws_s
@ cdecl -arch=i386 _global_unwind2(ptr)
...
...
dlls/msvcr110/msvcr110.spec
View file @
d4fab071
...
...
@@ -1256,8 +1256,8 @@
@ cdecl _getwc_nolock(ptr) MSVCRT__fgetwc_nolock
@ cdecl _getwch()
@ cdecl _getwch_nolock()
@
stub _getwche
@
stub _getwche_nolock
@
cdecl _getwche()
@
cdecl _getwche_nolock()
@ cdecl _getws(ptr) MSVCRT__getws
@ stub _getws_s
@ cdecl -arch=i386 _global_unwind2(ptr)
...
...
dlls/msvcr120/msvcr120.spec
View file @
d4fab071
...
...
@@ -1254,8 +1254,8 @@
@ cdecl _getwc_nolock(ptr) MSVCRT__fgetwc_nolock
@ cdecl _getwch()
@ cdecl _getwch_nolock()
@
stub _getwche
@
stub _getwche_nolock
@
cdecl _getwche()
@
cdecl _getwche_nolock()
@ cdecl _getws(ptr) MSVCRT__getws
@ stub _getws_s
@ cdecl -arch=i386 _global_unwind2(ptr)
...
...
dlls/msvcr70/msvcr70.spec
View file @
d4fab071
...
...
@@ -344,7 +344,7 @@
@ stub _getsystime(ptr)
@ cdecl _getw(ptr) MSVCRT__getw
@ cdecl _getwch()
@
stub _getwche
@
cdecl _getwche()
@ cdecl _getws(ptr) MSVCRT__getws
@ cdecl -arch=i386 _global_unwind2(ptr)
@ cdecl _gmtime64(ptr) MSVCRT__gmtime64
...
...
dlls/msvcr71/msvcr71.spec
View file @
d4fab071
...
...
@@ -339,7 +339,7 @@
@ stub _getsystime(ptr)
@ cdecl _getw(ptr) MSVCRT__getw
@ cdecl _getwch()
@
stub _getwche
@
cdecl _getwche()
@ cdecl _getws(ptr) MSVCRT__getws
@ cdecl -arch=i386 _global_unwind2(ptr)
@ cdecl _gmtime64(ptr) MSVCRT__gmtime64
...
...
dlls/msvcr80/msvcr80.spec
View file @
d4fab071
...
...
@@ -583,8 +583,8 @@
@ cdecl _getwc_nolock(ptr) MSVCRT__fgetwc_nolock
@ cdecl _getwch()
@ cdecl _getwch_nolock()
@
stub _getwche
@
stub _getwche_nolock
@
cdecl _getwche()
@
cdecl _getwche_nolock()
@ cdecl _getws(ptr) MSVCRT__getws
@ stub _getws_s
@ cdecl -arch=i386 _global_unwind2(ptr)
...
...
dlls/msvcr90/msvcr90.spec
View file @
d4fab071
...
...
@@ -560,8 +560,8 @@
@ cdecl _getwc_nolock(ptr) MSVCRT__fgetwc_nolock
@ cdecl _getwch()
@ cdecl _getwch_nolock()
@
stub _getwche
@
stub _getwche_nolock
@
cdecl _getwche()
@
cdecl _getwche_nolock()
@ cdecl _getws(ptr) MSVCRT__getws
@ stub _getws_s
@ cdecl -arch=i386 _global_unwind2(ptr)
...
...
dlls/msvcrt/console.c
View file @
d4fab071
...
...
@@ -354,6 +354,31 @@ int CDECL _getche(void)
}
/*********************************************************************
* _getwche_nolock (MSVCR80.@)
*/
MSVCRT_wchar_t
CDECL
_getwche_nolock
(
void
)
{
MSVCRT_wchar_t
wch
;
wch
=
_getch_nolock
();
if
(
wch
==
MSVCRT_WEOF
)
return
wch
;
return
_putwch_nolock
(
wch
);
}
/*********************************************************************
* _getwche (MSVCRT.@)
*/
MSVCRT_wchar_t
CDECL
_getwche
(
void
)
{
MSVCRT_wchar_t
ret
;
LOCK_CONSOLE
;
ret
=
_getwche_nolock
();
UNLOCK_CONSOLE
;
return
ret
;
}
/*********************************************************************
* _cgets (MSVCRT.@)
*/
char
*
CDECL
_cgets
(
char
*
str
)
...
...
dlls/msvcrt/msvcrt.spec
View file @
d4fab071
...
...
@@ -534,7 +534,7 @@
@ stub _getsystime(ptr)
@ cdecl _getw(ptr) MSVCRT__getw
@ cdecl _getwch()
# stub
_getwche()
@ cdecl
_getwche()
@ cdecl _getws(ptr) MSVCRT__getws
@ cdecl -arch=i386 _global_unwind2(ptr)
@ cdecl _gmtime32(ptr) MSVCRT__gmtime32
...
...
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