msvcrt: Implement ___lc_codepage_func, ___lc_collate_cp_func and ___lc_handle_func.

Dmitry Timoshkov dmitry at codeweavers.com
Wed Apr 15 08:07:28 CDT 2009


"Hans Leidekker" <hans at 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.



More information about the wine-devel mailing list