From dc1a38d38544b05790da6f027a6bcdead3f5536f Mon Sep 17 00:00:00 2001 From: Piotr Caban Date: Thu, 8 Dec 2011 12:09:15 +0100 Subject: [PATCH] msvcp90: Added _Locinfo::_Getfalse and _Gettrue implementation. --- dlls/msvcp90/locale.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/dlls/msvcp90/locale.c b/dlls/msvcp90/locale.c index a668d180df6..ae270aea91a 100644 --- a/dlls/msvcp90/locale.c +++ b/dlls/msvcp90/locale.c @@ -951,8 +951,8 @@ const char* __thiscall _Locinfo__Getmonths(const _Locinfo *this) DEFINE_THISCALL_WRAPPER(_Locinfo__Getfalse, 4) const char* __thiscall _Locinfo__Getfalse(const _Locinfo *this) { - FIXME("(%p) stub\n", this); - return NULL; + TRACE("(%p)\n", this); + return "false"; } /* ?_Gettrue@_Locinfo@std@@QBEPBDXZ */ @@ -960,8 +960,8 @@ const char* __thiscall _Locinfo__Getfalse(const _Locinfo *this) DEFINE_THISCALL_WRAPPER(_Locinfo__Gettrue, 4) const char* __thiscall _Locinfo__Gettrue(const _Locinfo *this) { - FIXME("(%p) stub\n", this); - return NULL; + TRACE("(%p)\n", this); + return "true"; } /* ?_Getlconv@_Locinfo@std@@QBEPBUlconv@@XZ */ -- 2.11.4.GIT