mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 17:34:57 +00:00
better stubs for VerLanguageNameA/W (untested)
svn path=/trunk/; revision=20095
This commit is contained in:
parent
bc678f34f4
commit
32ae60b9b2
1 changed files with 6 additions and 2 deletions
|
@ -355,7 +355,9 @@ VerLanguageNameA (
|
|||
)
|
||||
{
|
||||
STUB;
|
||||
return 0;
|
||||
szLang = "Language Neutral\0";
|
||||
nSize = sizeof(szLang) * sizeof(CHAR);
|
||||
return sizeof(szLang) - 1;
|
||||
}
|
||||
|
||||
|
||||
|
@ -371,7 +373,9 @@ VerLanguageNameW (
|
|||
)
|
||||
{
|
||||
STUB;
|
||||
return 0;
|
||||
szLang = L"Language Neutral\0";
|
||||
nSize = sizeof(szLang) * sizeof(WCHAR);
|
||||
return sizeof(szLang) - 1;
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue