msvcp90: Added _Locinfo::_Getname implementation.

oldstable
Piotr Caban 2011-12-08 12:09:41 +01:00 committed by Alexandre Julliard
parent 81434aabff
commit 91c6a55c2c
1 changed files with 5 additions and 2 deletions

View File

@ -978,8 +978,11 @@ const struct lconv* __thiscall _Locinfo__Getlconv(const _Locinfo *this)
DEFINE_THISCALL_WRAPPER_RETPTR(_Locinfo__Getname, 4)
basic_string_char __thiscall _Locinfo__Getname(const _Locinfo *this)
{
basic_string_char ret = { 0 }; /* FIXME */
FIXME("(%p) stub\n", this);
basic_string_char ret;
TRACE("(%p)\n", this);
MSVCP_basic_string_char_copy_ctor(&ret, &this->newlocname);
return ret;
}