msvcp90: Added _Locinfo::_Getfalse and _Gettrue implementation.

This commit is contained in:
Piotr Caban 2011-12-08 12:09:15 +01:00 committed by Alexandre Julliard
parent 56c1c75b72
commit dc1a38d385
1 changed files with 4 additions and 4 deletions

View File

@ -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 */