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
8a69a936
Commit
8a69a936
authored
Apr 22, 2010
by
Piotr Caban
Committed by
Alexandre Julliard
Apr 22, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcrt: Added _cscanf_l implementation.
parent
2242f281
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
17 additions
and
3 deletions
+17
-3
msvcr80.spec
dlls/msvcr80/msvcr80.spec
+1
-1
msvcr90.spec
dlls/msvcr90/msvcr90.spec
+1
-1
msvcrt.spec
dlls/msvcrt/msvcrt.spec
+1
-1
scanf.c
dlls/msvcrt/scanf.c
+14
-0
No files found.
dlls/msvcr80/msvcr80.spec
View file @
8a69a936
...
...
@@ -341,7 +341,7 @@
@ cdecl _create_locale(long str) msvcrt._create_locale
@ stub _crt_debugger_hook
@ varargs _cscanf(str) msvcrt._cscanf
@
stub
_cscanf_l
@
varargs _cscanf_l(str ptr) msvcrt.
_cscanf_l
@ stub _cscanf_s
@ stub _cscanf_s_l
@ cdecl _ctime32(ptr) msvcrt._ctime32
...
...
dlls/msvcr90/msvcr90.spec
View file @
8a69a936
...
...
@@ -333,7 +333,7 @@
@ cdecl _create_locale(long str) msvcrt._create_locale
@ stub _crt_debugger_hook
@ varargs _cscanf(str) msvcrt._cscanf
@
stub
_cscanf_l
@
varargs _cscanf_l(str ptr) msvcrt.
_cscanf_l
@ stub _cscanf_s
@ stub _cscanf_s_l
@ cdecl _ctime32(ptr) msvcrt._ctime32
...
...
dlls/msvcrt/msvcrt.spec
View file @
8a69a936
...
...
@@ -314,7 +314,7 @@
# stub _crtBreakAlloc
# stub _crtDbgFlag
@ varargs _cscanf(str)
# stub _cscanf_l
@ varargs _cscanf_l(str ptr)
# stub _cscanf_s
# stub _cscanf_s_l
@ cdecl _ctime32(ptr) MSVCRT__ctime32
...
...
dlls/msvcrt/scanf.c
View file @
8a69a936
...
...
@@ -274,3 +274,17 @@ int CDECL _cscanf(const char *format, ...)
__ms_va_end
(
valist
);
return
res
;
}
/*********************************************************************
* _cscanf_l (MSVCRT.@)
*/
int
CDECL
_cscanf_l
(
const
char
*
format
,
MSVCRT__locale_t
locale
,
...)
{
__ms_va_list
valist
;
int
res
;
__ms_va_start
(
valist
,
locale
);
res
=
MSVCRT_vcscanf_l
(
format
,
locale
,
valist
);
__ms_va_end
(
valist
);
return
res
;
}
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