Commit 451f9b9c authored by Piotr Caban's avatar Piotr Caban Committed by Alexandre Julliard

msvcp90: Added _Locinfo::_Gettnames implementation.

parent 462fa62c
......@@ -30,6 +30,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(msvcp90);
char* __cdecl _Getdays(void);
char* __cdecl _Getmonths(void);
void* __cdecl _Gettnames(void);
typedef int category;
......@@ -692,7 +693,7 @@ DEFINE_THISCALL_WRAPPER(_Timevec_dtor, 4)
void __thiscall _Timevec_dtor(_Timevec *this)
{
TRACE("(%p)\n", this);
MSVCRT_operator_delete(this->timeptr);
free(this->timeptr);
}
/* ??4_Timevec@std@@QAEAAV01@ABV01@@Z */
......@@ -1015,7 +1016,10 @@ basic_string_char __thiscall _Locinfo__Getname(const _Locinfo *this)
DEFINE_THISCALL_WRAPPER(_Locinfo__Gettnames, 4)
_Timevec __thiscall _Locinfo__Gettnames(const _Locinfo *this)
{
_Timevec ret = { 0 }; /* FIXME */
FIXME("(%p) stub\n", this);
_Timevec ret;
TRACE("(%p)\n", this);
_Timevec_ctor_timeptr(&ret, _Gettnames());
return ret;
}
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