Home
last modified time | relevance | path

Searched refs:push_language (Results 1 – 3 of 3) sorted by relevance

/reactos/dll/ntdll/rtl/
H A Dlibsupp.c562 int push_language( USHORT *list, ULONG pos, WORD lang );
596 pos = push_language( list, pos, info->Language ); in find_entry()
599 pos = push_language( list, pos, MAKELANGID( PRIMARYLANGID(info->Language), SUBLANG_NEUTRAL ) ); in find_entry()
602 pos = push_language( list, pos, MAKELANGID( LANG_NEUTRAL, SUBLANG_NEUTRAL ) ); in find_entry()
611 pos = push_language( list, pos, LANGIDFROMLCID(NtCurrentTeb()->CurrentLocale) ); in find_entry()
616 pos = push_language( list, pos, LANGIDFROMLCID(user_lcid) ); in find_entry()
619 … pos = push_language( list, pos, MAKELANGID( PRIMARYLANGID(user_lcid), SUBLANG_NEUTRAL ) ); in find_entry()
628 pos = push_language( list, pos, LANGIDFROMLCID( system_lcid ) ); in find_entry()
631 … pos = push_language( list, pos, MAKELANGID( PRIMARYLANGID(system_lcid), SUBLANG_NEUTRAL ) ); in find_entry()
635 pos = push_language( list, pos, MAKELANGID( LANG_ENGLISH, SUBLANG_DEFAULT ) ); in find_entry()
/reactos/dll/win32/version/
H A Dversion.c112 static inline int push_language( WORD *list, int pos, WORD lang ) in push_language() function
134 pos = push_language( list, pos, MAKELANGID( LANG_NEUTRAL, SUBLANG_NEUTRAL ) ); in find_entry_language()
135 pos = push_language( list, pos, LANGIDFROMLCID( NtCurrentTeb()->CurrentLocale ) ); in find_entry_language()
136 pos = push_language( list, pos, GetUserDefaultLangID() ); in find_entry_language()
137 …pos = push_language( list, pos, MAKELANGID( PRIMARYLANGID(GetUserDefaultLangID()), SUBLANG_NEUTRAL… in find_entry_language()
138 …pos = push_language( list, pos, MAKELANGID( PRIMARYLANGID(GetUserDefaultLangID()), SUBLANG_DEFAULT… in find_entry_language()
139 pos = push_language( list, pos, GetSystemDefaultLangID() ); in find_entry_language()
140 …pos = push_language( list, pos, MAKELANGID( PRIMARYLANGID(GetSystemDefaultLangID()), SUBLANG_NEUTR… in find_entry_language()
141 …pos = push_language( list, pos, MAKELANGID( PRIMARYLANGID(GetSystemDefaultLangID()), SUBLANG_DEFAU… in find_entry_language()
142 pos = push_language( list, pos, MAKELANGID( LANG_ENGLISH, SUBLANG_DEFAULT ) ); in find_entry_language()
[all …]
/reactos/sdk/lib/rtl/
H A Dres.c61 int push_language( USHORT *list, ULONG pos, WORD lang ) in push_language() function