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
1998beae
Commit
1998beae
authored
Feb 11, 2003
by
Marcus Meissner
Committed by
Alexandre Julliard
Feb 11, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Implemented __crtLCMapStringA.
parent
74d7ef84
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
1 deletion
+16
-1
locale.c
dlls/msvcrt/locale.c
+15
-0
msvcrt.spec
dlls/msvcrt/msvcrt.spec
+1
-1
No files found.
dlls/msvcrt/locale.c
View file @
1998beae
...
...
@@ -532,3 +532,18 @@ int _getmbcp(void)
{
return
MSVCRT_current_lc_all_cp
;
}
/*********************************************************************
* __crtLCMapStringA (MSVCRT.@)
*/
int
__crtLCMapStringA
(
LCID
lcid
,
DWORD
mapflags
,
const
char
*
src
,
int
srclen
,
char
*
dst
,
int
dstlen
,
unsigned
int
codepage
,
int
xflag
)
{
FIXME
(
"(lcid %x, flags %lx, %s(%d), %p(%d), %x, %d), partial stub!
\n
"
,
lcid
,
mapflags
,
src
,
srclen
,
dst
,
dstlen
,
codepage
,
xflag
);
/* FIXME: A bit incorrect. But msvcrt itself just converts its
* arguments to wide strings and then calls LCMapStringW
*/
return
LCMapStringA
(
lcid
,
mapflags
,
src
,
srclen
,
dst
,
dstlen
);
}
dlls/msvcrt/msvcrt.spec
View file @
1998beae
...
...
@@ -86,7 +86,7 @@
@ stub __badioinfo
@ stub __crtCompareStringA
@ stub __crtGetLocaleInfoW
@
stub
__crtLCMapStringA
@
cdecl __crtLCMapStringA(long long str long ptr long long long)
__crtLCMapStringA
@ cdecl __dllonexit(ptr ptr ptr) __dllonexit
@ cdecl __doserrno() __doserrno
@ stub __fpecode #()
...
...
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