Commit dc1a38d3 authored by Piotr Caban's avatar Piotr Caban Committed by Alexandre Julliard

msvcp90: Added _Locinfo::_Getfalse and _Gettrue implementation.

parent 56c1c75b
...@@ -951,8 +951,8 @@ const char* __thiscall _Locinfo__Getmonths(const _Locinfo *this) ...@@ -951,8 +951,8 @@ const char* __thiscall _Locinfo__Getmonths(const _Locinfo *this)
DEFINE_THISCALL_WRAPPER(_Locinfo__Getfalse, 4) DEFINE_THISCALL_WRAPPER(_Locinfo__Getfalse, 4)
const char* __thiscall _Locinfo__Getfalse(const _Locinfo *this) const char* __thiscall _Locinfo__Getfalse(const _Locinfo *this)
{ {
FIXME("(%p) stub\n", this); TRACE("(%p)\n", this);
return NULL; return "false";
} }
/* ?_Gettrue@_Locinfo@std@@QBEPBDXZ */ /* ?_Gettrue@_Locinfo@std@@QBEPBDXZ */
...@@ -960,8 +960,8 @@ const char* __thiscall _Locinfo__Getfalse(const _Locinfo *this) ...@@ -960,8 +960,8 @@ const char* __thiscall _Locinfo__Getfalse(const _Locinfo *this)
DEFINE_THISCALL_WRAPPER(_Locinfo__Gettrue, 4) DEFINE_THISCALL_WRAPPER(_Locinfo__Gettrue, 4)
const char* __thiscall _Locinfo__Gettrue(const _Locinfo *this) const char* __thiscall _Locinfo__Gettrue(const _Locinfo *this)
{ {
FIXME("(%p) stub\n", this); TRACE("(%p)\n", this);
return NULL; return "true";
} }
/* ?_Getlconv@_Locinfo@std@@QBEPBUlconv@@XZ */ /* ?_Getlconv@_Locinfo@std@@QBEPBUlconv@@XZ */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment