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
57754bdb
Commit
57754bdb
authored
Jun 11, 2015
by
Piotr Caban
Committed by
Alexandre Julliard
Jun 12, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcr: Add _getche_nolock implementation.
parent
0a600ccd
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
22 additions
and
11 deletions
+22
-11
msvcr100.spec
dlls/msvcr100/msvcr100.spec
+1
-1
msvcr110.spec
dlls/msvcr110/msvcr110.spec
+1
-1
msvcr120.spec
dlls/msvcr120/msvcr120.spec
+1
-1
msvcr80.spec
dlls/msvcr80/msvcr80.spec
+1
-1
msvcr90.spec
dlls/msvcr90/msvcr90.spec
+1
-1
console.c
dlls/msvcrt/console.c
+17
-6
No files found.
dlls/msvcr100/msvcr100.spec
View file @
57754bdb
...
...
@@ -892,7 +892,7 @@
@ cdecl _getch()
@ cdecl _getch_nolock()
@ cdecl _getche()
@
stub _getche_nolock
@
cdecl _getche_nolock()
@ cdecl _getcwd(str long) MSVCRT__getcwd
@ cdecl _getdcwd(long str long) MSVCRT__getdcwd
@ stub _getdcwd_nolock
...
...
dlls/msvcr110/msvcr110.spec
View file @
57754bdb
...
...
@@ -1240,7 +1240,7 @@
@ cdecl _getch()
@ cdecl _getch_nolock()
@ cdecl _getche()
@
stub _getche_nolock
@
cdecl _getche_nolock()
@ cdecl _getcwd(str long) MSVCRT__getcwd
@ cdecl _getdcwd(long str long) MSVCRT__getdcwd
@ cdecl _getdiskfree(long ptr) MSVCRT__getdiskfree
...
...
dlls/msvcr120/msvcr120.spec
View file @
57754bdb
...
...
@@ -1238,7 +1238,7 @@
@ cdecl _getch()
@ cdecl _getch_nolock()
@ cdecl _getche()
@
stub _getche_nolock
@
cdecl _getche_nolock()
@ cdecl _getcwd(str long) MSVCRT__getcwd
@ cdecl _getdcwd(long str long) MSVCRT__getdcwd
@ cdecl _getdiskfree(long ptr) MSVCRT__getdiskfree
...
...
dlls/msvcr80/msvcr80.spec
View file @
57754bdb
...
...
@@ -566,7 +566,7 @@
@ cdecl _getch()
@ cdecl _getch_nolock()
@ cdecl _getche()
@
stub _getche_nolock
@
cdecl _getche_nolock()
@ cdecl _getcwd(str long) MSVCRT__getcwd
@ cdecl _getdcwd(long str long) MSVCRT__getdcwd
@ stub _getdcwd_nolock
...
...
dlls/msvcr90/msvcr90.spec
View file @
57754bdb
...
...
@@ -543,7 +543,7 @@
@ cdecl _getch()
@ cdecl _getch_nolock()
@ cdecl _getche()
@
stub _getche_nolock
@
cdecl _getche_nolock()
@ cdecl _getcwd(str long) MSVCRT__getcwd
@ cdecl _getdcwd(long str long) MSVCRT__getdcwd
@ stub _getdcwd_nolock
...
...
dlls/msvcrt/console.c
View file @
57754bdb
...
...
@@ -217,20 +217,31 @@ int CDECL _putch(int c)
}
/*********************************************************************
* _getche
(MSVCRT
.@)
* _getche
_nolock (MSVCR80
.@)
*/
int
CDECL
_getche
(
void
)
int
CDECL
_getche
_nolock
(
void
)
{
int
retval
;
LOCK_CONSOLE
;
retval
=
_getch
();
retval
=
_getch_nolock
();
if
(
retval
!=
MSVCRT_EOF
)
retval
=
_putch
(
retval
);
UNLOCK_CONSOLE
;
retval
=
_putch_nolock
(
retval
);
return
retval
;
}
/*********************************************************************
* _getche (MSVCRT.@)
*/
int
CDECL
_getche
(
void
)
{
int
ret
;
LOCK_CONSOLE
;
ret
=
_getche_nolock
();
UNLOCK_CONSOLE
;
return
ret
;
}
/*********************************************************************
* _cgets (MSVCRT.@)
*/
char
*
CDECL
_cgets
(
char
*
str
)
...
...
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