Module: wine Branch: master Commit: dc1a38d38544b05790da6f027a6bcdead3f5536f URL: http://source.winehq.org/git/wine.git/?a=commit;h=dc1a38d38544b05790da6f027a...
Author: Piotr Caban piotr@codeweavers.com Date: Thu Dec 8 12:09:15 2011 +0100
msvcp90: Added _Locinfo::_Getfalse and _Gettrue implementation.
---
dlls/msvcp90/locale.c | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/dlls/msvcp90/locale.c b/dlls/msvcp90/locale.c index a668d18..ae270ae 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 */