[PATCH 01/10] ntdll: Add stub for RtlLCIDToCultureName.

Alexandre Julliard julliard at winehq.org
Mon Mar 29 15:00:14 CDT 2021


Mark Harmstone <mark at harmstone.com> writes:

> +/***********************************************************************
> + *           RtlLCIDToCultureName (NTDLL.@)
> + *
> + * Return the text name of a numeric language ID.
> + */
> +BOOLEAN WINAPI RtlLCIDToCultureName( LCID lcid, PUNICODE_STRING string )
> +{
> +    FIXME("(%04x, %p)\n", lcid, string);
> +
> +    return FALSE;
> +}

This should go in locale.c, and the implementation should use the
existing locale data.

-- 
Alexandre Julliard
julliard at winehq.org



More information about the wine-devel mailing list