Re: msvcrt: Implement ___lc_codepage_func, ___lc_collate_cp_func and ___lc_handle_func.
15 Apr
2009
15 Apr
'09
2:07 p.m.
"Hans Leidekker" <hans(a)codeweavers.com> wrote:
+/********************************************************************* + * ___lc_handle_func (MSVCRT.@) + */ +HANDLE * ___lc_handle_func(void) +{ + return MSVCRT___lc_handle; +} + +/********************************************************************* + * ___lc_codepage_func (MSVCRT.@) + */ +int ___lc_codepage_func(void) +{ + return MSVCRT___lc_codepage; +} + +/********************************************************************* + * ___lc_collate_cp_func (MSVCRT.@) + */ +int ___lc_collate_cp_func(void) +{ + return MSVCRT___lc_collate_cp; +}
All msvcrt public exports should have explicit CDECL calling convention. -- Dmitry.
6176
Age (days ago)
6176
Last active (days ago)
0 comments
1 participants
participants (1)
-
Dmitry Timoshkov