mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 09:34:43 +00:00
[MSHTML] Improve a reactos hack
Don't define a dll-import function.
This commit is contained in:
parent
d6eebaa47a
commit
1c5ddc893a
1 changed files with 2 additions and 1 deletions
|
@ -20,12 +20,13 @@
|
||||||
|
|
||||||
#ifdef __REACTOS__
|
#ifdef __REACTOS__
|
||||||
/* HACK This is a Vista+ API */
|
/* HACK This is a Vista+ API */
|
||||||
static INT WINAPI LCIDToLocaleName( LCID lcid, LPWSTR name, INT count, DWORD flags )
|
static INT WINAPI LCIDToLocaleName_( LCID lcid, LPWSTR name, INT count, DWORD flags )
|
||||||
{
|
{
|
||||||
if (flags) FIXME( "unsupported flags %x\n", flags );
|
if (flags) FIXME( "unsupported flags %x\n", flags );
|
||||||
|
|
||||||
return GetLocaleInfoW( lcid, LOCALE_SNAME | LOCALE_NOUSEROVERRIDE, name, count );
|
return GetLocaleInfoW( lcid, LOCALE_SNAME | LOCALE_NOUSEROVERRIDE, name, count );
|
||||||
}
|
}
|
||||||
|
#define LCIDToLocaleName LCIDToLocaleName_
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
typedef struct HTMLPluginsCollection HTMLPluginsCollection;
|
typedef struct HTMLPluginsCollection HTMLPluginsCollection;
|
||||||
|
|
Loading…
Reference in a new issue