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
caedfc89
Commit
caedfc89
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 _getc_nolock implementation.
parent
e385df0b
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
6 additions
and
4 deletions
+6
-4
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
-0
msvcr90.spec
dlls/msvcr90/msvcr90.spec
+1
-1
stdio.h
include/msvcrt/stdio.h
+1
-0
No files found.
dlls/msvcr100/msvcr100.spec
View file @
caedfc89
...
...
@@ -888,7 +888,7 @@
@ cdecl _get_tzname(ptr str long long) MSVCRT__get_tzname
@ cdecl _get_unexpected() MSVCRT__get_unexpected
@ cdecl _get_wpgmptr(ptr)
@
stub _
getc_nolock
@
cdecl _getc_nolock(ptr) MSVCRT__f
getc_nolock
@ cdecl _getch()
@ stub _getch_nolock
@ cdecl _getche()
...
...
dlls/msvcr110/msvcr110.spec
View file @
caedfc89
...
...
@@ -1236,7 +1236,7 @@
@ cdecl _get_tzname(ptr str long long) MSVCRT__get_tzname
@ cdecl _get_unexpected() MSVCRT__get_unexpected
@ cdecl _get_wpgmptr(ptr)
@
stub _
getc_nolock
@
cdecl _getc_nolock(ptr) MSVCRT__f
getc_nolock
@ cdecl _getch()
@ stub _getch_nolock
@ cdecl _getche()
...
...
dlls/msvcr120/msvcr120.spec
View file @
caedfc89
...
...
@@ -1234,7 +1234,7 @@
@ cdecl _get_tzname(ptr str long long) MSVCRT__get_tzname
@ cdecl _get_unexpected() MSVCRT__get_unexpected
@ cdecl _get_wpgmptr(ptr)
@
stub _
getc_nolock
@
cdecl _getc_nolock(ptr) MSVCRT__f
getc_nolock
@ cdecl _getch()
@ stub _getch_nolock
@ cdecl _getche()
...
...
dlls/msvcr80/msvcr80.spec
View file @
caedfc89
...
...
@@ -562,6 +562,7 @@
@ stub _get_winminor
@ stub _get_winver
@ cdecl _get_wpgmptr(ptr)
@ cdecl _getc_nolock(ptr) MSVCRT__fgetc_nolock
@ cdecl _getch()
@ stub _getch_nolock
@ cdecl _getche()
...
...
dlls/msvcr90/msvcr90.spec
View file @
caedfc89
...
...
@@ -539,7 +539,7 @@
@ cdecl _get_tzname(ptr str long long) MSVCRT__get_tzname
@ cdecl _get_unexpected() MSVCRT__get_unexpected
@ cdecl _get_wpgmptr(ptr)
@
stub _
getc_nolock
@
cdecl _getc_nolock(ptr) MSVCRT__f
getc_nolock
@ cdecl _getch()
@ stub _getch_nolock
@ cdecl _getche()
...
...
include/msvcrt/stdio.h
View file @
caedfc89
...
...
@@ -137,6 +137,7 @@ int __cdecl _fseek_nolock(FILE*,__msvcrt_long,int);
int
__cdecl
_fseeki64_nolock
(
FILE
*
,
__int64
,
int
);
__msvcrt_long
__cdecl
_ftell_nolock
(
FILE
*
);
__int64
__cdecl
_ftelli64_nolock
(
FILE
*
);
int
__cdecl
_getc_nolock
(
FILE
*
);
int
__cdecl
_ungetc_nolock
(
int
,
FILE
*
);
void
__cdecl
clearerr
(
FILE
*
);
...
...
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