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

msvcp71: Add locale::facet::_Getcat implementation.

parent 6d4abc78
......@@ -1892,8 +1892,8 @@
@ cdecl -arch=win64 ?_Getcat@?$time_put@GV?$ostreambuf_iterator@GU?$char_traits@G@std@@@std@@@std@@SA_KPEAPEBVfacet@locale@2@@Z(ptr) time_put_short__Getcat_old
@ cdecl -arch=win32 ?_Getcat@?$time_put@_WV?$ostreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@SAIPAPBVfacet@locale@2@@Z(ptr) time_put_wchar__Getcat_old
@ cdecl -arch=win64 ?_Getcat@?$time_put@_WV?$ostreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@SA_KPEAPEBVfacet@locale@2@@Z(ptr) time_put_wchar__Getcat_old
@ stub -arch=win32 ?_Getcat@facet@locale@std@@SAIPAPBV123@@Z
@ stub -arch=win64 ?_Getcat@facet@locale@std@@SA_KPEAPEBV123@@Z
@ cdecl -arch=win32 ?_Getcat@facet@locale@std@@SAIPAPBV123@@Z(ptr) locale_facet__Getcat_old
@ cdecl -arch=win64 ?_Getcat@facet@locale@std@@SA_KPEAPEBV123@@Z(ptr) locale_facet__Getcat_old
@ thiscall -arch=i386 ?_Getcoll@_Locinfo@std@@QBE?AU_Collvec@@XZ(ptr ptr) _Locinfo__Getcoll
@ cdecl -arch=win64 ?_Getcoll@_Locinfo@std@@QEBA?AU_Collvec@@XZ(ptr ptr) _Locinfo__Getcoll
@ thiscall -arch=i386 ?_Getctype@_Locinfo@std@@QBE?AU_Ctypevec@@XZ(ptr ptr) _Locinfo__Getctype
......
......@@ -2079,8 +2079,8 @@
@ cdecl -arch=win64 ?_Getcat@?$time_put@GV?$ostreambuf_iterator@GU?$char_traits@G@std@@@std@@@std@@SA_KPEAPEBVfacet@locale@2@@Z(ptr) time_put_short__Getcat_old
@ cdecl -arch=win32 ?_Getcat@?$time_put@_WV?$ostreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@SAIPAPBVfacet@locale@2@@Z(ptr) time_put_wchar__Getcat_old
@ cdecl -arch=win64 ?_Getcat@?$time_put@_WV?$ostreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@SA_KPEAPEBVfacet@locale@2@@Z(ptr) time_put_wchar__Getcat_old
@ stub -arch=win32 ?_Getcat@facet@locale@std@@SAIPAPBV123@@Z
@ stub -arch=win64 ?_Getcat@facet@locale@std@@SA_KPEAPEBV123@@Z
@ cdecl -arch=win32 ?_Getcat@facet@locale@std@@SAIPAPBV123@@Z(ptr) locale_facet__Getcat_old
@ cdecl -arch=win64 ?_Getcat@facet@locale@std@@SA_KPEAPEBV123@@Z(ptr) locale_facet__Getcat_old
@ thiscall -arch=win32 ?_Getcoll@_Locinfo@std@@QBE?AU_Collvec@@XZ(ptr ptr) _Locinfo__Getcoll
@ cdecl -arch=win64 ?_Getcoll@_Locinfo@std@@QEBA?AU_Collvec@@XZ(ptr ptr) _Locinfo__Getcoll
@ thiscall -arch=win32 ?_Getctype@_Locinfo@std@@QBE?AU_Ctypevec@@XZ(ptr ptr) _Locinfo__Getctype
......
......@@ -2296,8 +2296,8 @@
@ cdecl -arch=win64 ?_Getcat@?$time_put@GV?$ostreambuf_iterator@GU?$char_traits@G@std@@@std@@@std@@SA_KPEAPEBVfacet@locale@2@@Z(ptr) time_put_short__Getcat_old
@ cdecl -arch=win32 ?_Getcat@?$time_put@_WV?$ostreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@SAIPAPBVfacet@locale@2@@Z(ptr) time_put_wchar__Getcat_old
@ cdecl -arch=win64 ?_Getcat@?$time_put@_WV?$ostreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@SA_KPEAPEBVfacet@locale@2@@Z(ptr) time_put_wchar__Getcat_old
@ stub -arch=win32 ?_Getcat@facet@locale@std@@SAIPAPBV123@@Z
@ stub -arch=win64 ?_Getcat@facet@locale@std@@SA_KPEAPEBV123@@Z
@ cdecl -arch=win32 ?_Getcat@facet@locale@std@@SAIPAPBV123@@Z(ptr) locale_facet__Getcat_old
@ cdecl -arch=win64 ?_Getcat@facet@locale@std@@SA_KPEAPEBV123@@Z(ptr) locale_facet__Getcat_old
@ thiscall -arch=i386 ?_Getcoll@_Locinfo@std@@QBE?AU_Collvec@@XZ(ptr ptr) _Locinfo__Getcoll
@ cdecl -arch=win64 ?_Getcoll@_Locinfo@std@@QEBA?AU_Collvec@@XZ(ptr ptr) _Locinfo__Getcoll
@ thiscall -arch=i386 ?_Getctype@_Locinfo@std@@QBE?AU_Ctypevec@@XZ(ptr ptr) _Locinfo__Getctype
......
......@@ -408,6 +408,14 @@ MSVCP_size_t __cdecl locale_facet__Getcat(const locale_facet **facet, const loca
return -1;
}
/* ?_Getcat@facet@locale@std@@SAIPAPBV123@@Z */
/* ?_Getcat@facet@locale@std@@SA_KPEAPEBV123@@Z */
MSVCP_size_t __cdecl locale_facet__Getcat_old(const locale_facet **facet)
{
TRACE("(%p)\n", facet);
return -1;
}
/* ??0_Timevec@std@@QAE@ABV01@@Z */
/* ??0_Timevec@std@@QEAA@AEBV01@@Z */
/* This copy constructor modifies copied object */
......
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