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
755a54b2
Commit
755a54b2
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 _putc_nolock implementation.
parent
fb424831
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 @
755a54b2
...
...
@@ -1232,6 +1232,7 @@
@ stub _printf_p_l
@ stub _printf_s_l
@ cdecl _purecall()
@ cdecl _putc_nolock(long ptr) MSVCRT__fputc_nolock
@ cdecl _putch(long)
@ stub _putch_nolock
@ cdecl _putenv(str)
...
...
dlls/msvcr110/msvcr110.spec
View file @
755a54b2
...
...
@@ -1590,6 +1590,7 @@
@ stub _printf_p_l
@ stub _printf_s_l
@ cdecl _purecall()
@ cdecl _putc_nolock(long ptr) MSVCRT__fputc_nolock
@ cdecl _putch(long)
@ stub _putch_nolock
@ cdecl _putenv(str)
...
...
dlls/msvcr120/msvcr120.spec
View file @
755a54b2
...
...
@@ -1598,6 +1598,7 @@
@ stub _printf_p_l
@ stub _printf_s_l
@ cdecl _purecall()
@ cdecl _putc_nolock(long ptr) MSVCRT__fputc_nolock
@ cdecl _putch(long)
@ stub _putch_nolock
@ cdecl _putenv(str)
...
...
dlls/msvcr80/msvcr80.spec
View file @
755a54b2
...
...
@@ -907,6 +907,7 @@
@ stub _printf_p_l
@ stub _printf_s_l
@ cdecl _purecall()
@ cdecl _putc_nolock(long ptr) MSVCRT__fputc_nolock
@ cdecl _putch(long)
@ stub _putch_nolock
@ cdecl _putenv(str)
...
...
dlls/msvcr90/msvcr90.spec
View file @
755a54b2
...
...
@@ -882,6 +882,7 @@
@ stub _printf_p_l
@ stub _printf_s_l
@ cdecl _purecall()
@ cdecl _putc_nolock(long ptr) MSVCRT__fputc_nolock
@ cdecl _putch(long)
@ stub _putch_nolock
@ cdecl _putenv(str)
...
...
include/msvcrt/stdio.h
View file @
755a54b2
...
...
@@ -138,6 +138,7 @@ 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
_putc_nolock
(
int
,
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