better stubs for VerLanguageNameA/W (untested)

svn path=/trunk/; revision=20095
This commit is contained in:
Christoph von Wittich 2005-12-12 00:06:38 +00:00
parent bc678f34f4
commit 32ae60b9b2

View file

@ -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;
}