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
d36cfcf4
Commit
d36cfcf4
authored
Nov 02, 2010
by
Eric Pouech
Committed by
Alexandre Julliard
Nov 03, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcrt: Implemented _putwch.
parent
83d87f3b
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
12 additions
and
4 deletions
+12
-4
msvcr100.spec
dlls/msvcr100/msvcr100.spec
+1
-1
msvcr80.spec
dlls/msvcr80/msvcr80.spec
+1
-1
msvcr90.spec
dlls/msvcr90/msvcr90.spec
+1
-1
file.c
dlls/msvcrt/file.c
+8
-0
msvcrt.spec
dlls/msvcrt/msvcrt.spec
+1
-1
No files found.
dlls/msvcr100/msvcr100.spec
View file @
d36cfcf4
...
...
@@ -1037,7 +1037,7 @@
@ cdecl _putenv(str) msvcrt._putenv
@ cdecl _putenv_s(str str) msvcrt._putenv_s
@ cdecl _putw(long ptr) msvcrt._putw
@
stub
_putwch
@
cdecl _putwch(long) msvcrt.
_putwch
@ stub _putwch_nolock
@ cdecl _putws(wstr) msvcrt._putws
@ stub _pwctype
...
...
dlls/msvcr80/msvcr80.spec
View file @
d36cfcf4
...
...
@@ -885,7 +885,7 @@
@ cdecl _putenv(str) msvcrt._putenv
@ cdecl _putenv_s(str str) msvcrt._putenv_s
@ cdecl _putw(long ptr) msvcrt._putw
@
stub
_putwch
@
cdecl _putwch(long) msvcrt.
_putwch
@ stub _putwch_nolock
@ cdecl _putws(wstr) msvcrt._putws
@ stub _pwctype
...
...
dlls/msvcr90/msvcr90.spec
View file @
d36cfcf4
...
...
@@ -871,7 +871,7 @@
@ cdecl _putenv(str) msvcrt._putenv
@ cdecl _putenv_s(str str) msvcrt._putenv_s
@ cdecl _putw(long ptr) msvcrt._putw
@
stub
_putwch
@
cdecl _putwch(long) msvcrt.
_putwch
@ stub _putwch_nolock
@ cdecl _putws(wstr) msvcrt._putws
@ stub _pwctype
...
...
dlls/msvcrt/file.c
View file @
d36cfcf4
...
...
@@ -3130,6 +3130,14 @@ int CDECL MSVCRT_putchar(int c)
}
/*********************************************************************
* _putwch (MSVCRT.@)
*/
int
CDECL
MSVCRT__putwch
(
int
c
)
{
return
MSVCRT_fputwc
(
c
,
MSVCRT_stdout
);
}
/*********************************************************************
* puts (MSVCRT.@)
*/
int
CDECL
MSVCRT_puts
(
const
char
*
s
)
...
...
dlls/msvcrt/msvcrt.spec
View file @
d36cfcf4
...
...
@@ -819,7 +819,7 @@
@ cdecl _putenv(str)
@ cdecl _putenv_s(str str)
@ cdecl _putw(long ptr) MSVCRT__putw
# stub
_putwch
@ cdecl _putwch(long) MSVCRT_
_putwch
@ cdecl _putws(wstr)
# extern _pwctype
@ cdecl _read(long ptr long) MSVCRT__read
...
...
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