Module: wine Branch: master Commit: 91c6a55c2cc7ddc873ed17b1272135d5185a3393 URL: http://source.winehq.org/git/wine.git/?a=commit;h=91c6a55c2cc7ddc873ed17b127...
Author: Piotr Caban piotr@codeweavers.com Date: Thu Dec 8 12:09:41 2011 +0100
msvcp90: Added _Locinfo::_Getname implementation.
---
dlls/msvcp90/locale.c | 7 +++++-- 1 files changed, 5 insertions(+), 2 deletions(-)
diff --git a/dlls/msvcp90/locale.c b/dlls/msvcp90/locale.c index 4e9e5a0..1a637c0 100644 --- a/dlls/msvcp90/locale.c +++ b/dlls/msvcp90/locale.c @@ -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; }