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
4aec827b
Commit
4aec827b
authored
Apr 15, 2009
by
Hans Leidekker
Committed by
Alexandre Julliard
Apr 15, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcrt: Implement ___lc_codepage_func, ___lc_collate_cp_func and ___lc_handle_func.
parent
dbe5453f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
27 additions
and
3 deletions
+27
-3
locale.c
dlls/msvcrt/locale.c
+24
-0
msvcrt.spec
dlls/msvcrt/msvcrt.spec
+3
-3
No files found.
dlls/msvcrt/locale.c
View file @
4aec827b
...
@@ -607,3 +607,27 @@ void CDECL __lconv_init(void)
...
@@ -607,3 +607,27 @@ void CDECL __lconv_init(void)
{
{
FIXME
(
" stub
\n
"
);
FIXME
(
" stub
\n
"
);
}
}
/*********************************************************************
* ___lc_handle_func (MSVCRT.@)
*/
HANDLE
*
CDECL
___lc_handle_func
(
void
)
{
return
MSVCRT___lc_handle
;
}
/*********************************************************************
* ___lc_codepage_func (MSVCRT.@)
*/
int
CDECL
___lc_codepage_func
(
void
)
{
return
MSVCRT___lc_codepage
;
}
/*********************************************************************
* ___lc_collate_cp_func (MSVCRT.@)
*/
int
CDECL
___lc_collate_cp_func
(
void
)
{
return
MSVCRT___lc_collate_cp
;
}
dlls/msvcrt/msvcrt.spec
View file @
4aec827b
...
@@ -84,9 +84,9 @@
...
@@ -84,9 +84,9 @@
@ cdecl __RTDynamicCast(ptr long ptr ptr long) MSVCRT___RTDynamicCast
@ cdecl __RTDynamicCast(ptr long ptr ptr long) MSVCRT___RTDynamicCast
@ cdecl __RTtypeid(ptr) MSVCRT___RTtypeid
@ cdecl __RTtypeid(ptr) MSVCRT___RTtypeid
@ cdecl __STRINGTOLD(ptr ptr str long)
@ cdecl __STRINGTOLD(ptr ptr str long)
@
stub ___lc_codepage_func
@
cdecl ___lc_codepage_func()
@
stub ___lc_collate_cp_func
@
cdecl ___lc_collate_cp_func()
@
stub ___lc_handle_func
@
cdecl ___lc_handle_func()
@ cdecl ___mb_cur_max_func() MSVCRT____mb_cur_max_func
@ cdecl ___mb_cur_max_func() MSVCRT____mb_cur_max_func
@ cdecl ___setlc_active_func() MSVCRT____setlc_active_func
@ cdecl ___setlc_active_func() MSVCRT____setlc_active_func
@ cdecl ___unguarded_readlc_active_add_func() MSVCRT____unguarded_readlc_active_add_func
@ cdecl ___unguarded_readlc_active_add_func() MSVCRT____unguarded_readlc_active_add_func
...
...
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