Piotr Caban : msvcp90: Added _Locinfo::_Getlconv implementation.
Module: wine Branch: master Commit: 81434aabff472dd1797d3ee479f0ad67ef694884 URL: http://source.winehq.org/git/wine.git/?a=commit;h=81434aabff472dd1797d3ee479... Author: Piotr Caban <piotr(a)codeweavers.com> Date: Thu Dec 8 12:09:28 2011 +0100 msvcp90: Added _Locinfo::_Getlconv implementation. --- dlls/msvcp90/locale.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dlls/msvcp90/locale.c b/dlls/msvcp90/locale.c index ae270ae..4e9e5a0 100644 --- a/dlls/msvcp90/locale.c +++ b/dlls/msvcp90/locale.c @@ -969,8 +969,8 @@ const char* __thiscall _Locinfo__Gettrue(const _Locinfo *this) DEFINE_THISCALL_WRAPPER(_Locinfo__Getlconv, 4) const struct lconv* __thiscall _Locinfo__Getlconv(const _Locinfo *this) { - FIXME("(%p) stub\n", this); - return NULL; + TRACE("(%p)\n", this); + return localeconv(); } /* ?_Getname(a)_Locinfo@std@@QBE?AV?$basic_string(a)DU?$char_traits(a)D@std@@V?$allocator(a)D@2@@2(a)XZ */
participants (1)
-
Alexandre Julliard