msvcp90: Added _Locinfo class stub.
This commit is contained in:
parent
bc9850b42c
commit
dca8da61c1
|
@ -21,6 +21,8 @@
|
|||
#include <stdarg.h>
|
||||
|
||||
#include "msvcp90.h"
|
||||
#include "locale.h"
|
||||
|
||||
#include "windef.h"
|
||||
#include "winbase.h"
|
||||
#include "wine/debug.h"
|
||||
|
@ -46,6 +48,35 @@ typedef struct _locale__Locimp {
|
|||
basic_string_char name;
|
||||
} locale__Locimp;
|
||||
|
||||
typedef struct {
|
||||
void *timeptr;
|
||||
} _Timevec;
|
||||
|
||||
typedef struct {
|
||||
_Lockit lock;
|
||||
basic_string_char days;
|
||||
basic_string_char months;
|
||||
basic_string_char oldlocname;
|
||||
basic_string_char newlocname;
|
||||
} _Locinfo;
|
||||
|
||||
typedef struct {
|
||||
LCID handle;
|
||||
unsigned page;
|
||||
} _Collvec;
|
||||
|
||||
typedef struct {
|
||||
LCID handle;
|
||||
unsigned page;
|
||||
const short *table;
|
||||
int delfl;
|
||||
} _Ctypevec;
|
||||
|
||||
typedef struct {
|
||||
LCID handle;
|
||||
unsigned page;
|
||||
} _Cvtvec;
|
||||
|
||||
/* ?_Id_cnt@id@locale@std@@0HA */
|
||||
int locale_id__Id_cnt = 0;
|
||||
|
||||
|
@ -250,7 +281,7 @@ locale__Locimp** __cdecl locale__Locimp__Clocptr_func(void)
|
|||
|
||||
/* ?_Makeloc@_Locimp@locale@std@@CAPAV123@ABV_Locinfo@3@HPAV123@PBV23@@Z */
|
||||
/* ?_Makeloc@_Locimp@locale@std@@CAPEAV123@AEBV_Locinfo@3@HPEAV123@PEBV23@@Z */
|
||||
locale__Locimp* __cdecl locale__Locimp__Makeloc(const /*_Locinfo*/void *locinfo, category cat, locale__Locimp *locimp, const locale *loc)
|
||||
locale__Locimp* __cdecl locale__Locimp__Makeloc(const _Locinfo *locinfo, category cat, locale__Locimp *locimp, const locale *loc)
|
||||
{
|
||||
FIXME("(%p %d %p %p) stub\n", locinfo, cat, locimp, loc);
|
||||
return NULL;
|
||||
|
@ -258,21 +289,21 @@ locale__Locimp* __cdecl locale__Locimp__Makeloc(const /*_Locinfo*/void *locinfo,
|
|||
|
||||
/* ?_Makeushloc@_Locimp@locale@std@@CAXABV_Locinfo@3@HPAV123@PBV23@@Z */
|
||||
/* ?_Makeushloc@_Locimp@locale@std@@CAXAEBV_Locinfo@3@HPEAV123@PEBV23@@Z */
|
||||
void __cdecl locale__Locimp__Makeushloc(const /*_Locinfo*/void *locinfo, category cat, locale__Locimp *locimp, const locale *loc)
|
||||
void __cdecl locale__Locimp__Makeushloc(const _Locinfo *locinfo, category cat, locale__Locimp *locimp, const locale *loc)
|
||||
{
|
||||
FIXME("(%p %d %p %p) stub\n", locinfo, cat, locimp, loc);
|
||||
}
|
||||
|
||||
/* ?_Makewloc@_Locimp@locale@std@@CAXABV_Locinfo@3@HPAV123@PBV23@@Z */
|
||||
/* ?_Makewloc@_Locimp@locale@std@@CAXAEBV_Locinfo@3@HPEAV123@PEBV23@@Z */
|
||||
void __cdecl locale__Locimp__Makewloc(const /*_Locinfo*/void *locinfo, category cat, locale__Locimp *locimp, const locale *loc)
|
||||
void __cdecl locale__Locimp__Makewloc(const _Locinfo *locinfo, category cat, locale__Locimp *locimp, const locale *loc)
|
||||
{
|
||||
FIXME("(%p %d %p %p) stub\n", locinfo, cat, locimp, loc);
|
||||
}
|
||||
|
||||
/* ?_Makexloc@_Locimp@locale@std@@CAXABV_Locinfo@3@HPAV123@PBV23@@Z */
|
||||
/* ?_Makexloc@_Locimp@locale@std@@CAXAEBV_Locinfo@3@HPEAV123@PEBV23@@Z */
|
||||
void __cdecl locale__Locimp__Makexloc(const /*_Locinfo*/void *locinfo, category cat, locale__Locimp *locimp, const locale *loc)
|
||||
void __cdecl locale__Locimp__Makexloc(const _Locinfo *locinfo, category cat, locale__Locimp *locimp, const locale *loc)
|
||||
{
|
||||
FIXME("(%p %d %p %p) stub\n", locinfo, cat, locimp, loc);
|
||||
}
|
||||
|
@ -458,3 +489,253 @@ basic_string_char __thiscall locale_name(const locale *this)
|
|||
FIXME( "(%p) stub\n", this);
|
||||
return ret;
|
||||
}
|
||||
|
||||
/* ??0_Timevec@std@@QAE@ABV01@@Z */
|
||||
/* ??0_Timevec@std@@QEAA@AEBV01@@Z */
|
||||
DEFINE_THISCALL_WRAPPER(_Timevec_copy_ctor, 8)
|
||||
_Timevec* __thiscall _Timevec_copy_ctor(_Timevec *this, const _Timevec *copy)
|
||||
{
|
||||
FIXME("(%p %p) stub\n", this, copy);
|
||||
return NULL;
|
||||
}
|
||||
|
||||
/* ??0_Timevec@std@@QAE@PAX@Z */
|
||||
/* ??0_Timevec@std@@QEAA@PEAX@Z */
|
||||
DEFINE_THISCALL_WRAPPER(_Timevec_ctor_timeptr, 8)
|
||||
_Timevec* __thiscall _Timevec_ctor_timeptr(_Timevec *this, void *timeptr)
|
||||
{
|
||||
FIXME("(%p %p) stub\n", this, timeptr);
|
||||
return NULL;
|
||||
}
|
||||
|
||||
/* ??_F_Timevec@std@@QAEXXZ */
|
||||
/* ??_F_Timevec@std@@QEAAXXZ */
|
||||
DEFINE_THISCALL_WRAPPER(_Timevec_ctor, 4)
|
||||
_Timevec* __thiscall _Timevec_ctor(_Timevec *this)
|
||||
{
|
||||
FIXME("(%p) stub\n", this);
|
||||
return NULL;
|
||||
}
|
||||
|
||||
/* ??1_Timevec@std@@QAE@XZ */
|
||||
/* ??1_Timevec@std@@QEAA@XZ */
|
||||
DEFINE_THISCALL_WRAPPER(_Timevec_dtor, 4)
|
||||
void __thiscall _Timevec_dtor(_Timevec *this)
|
||||
{
|
||||
FIXME("(%p) stub\n", this);
|
||||
}
|
||||
|
||||
/* ??4_Timevec@std@@QAEAAV01@ABV01@@Z */
|
||||
/* ??4_Timevec@std@@QEAAAEAV01@AEBV01@@Z */
|
||||
DEFINE_THISCALL_WRAPPER(_Timevec_op_assign, 8)
|
||||
_Timevec* __thiscall _Timevec_op_assign(_Timevec *this, _Timevec *right)
|
||||
{
|
||||
FIXME("(%p %p) stub\n", this, right);
|
||||
return NULL;
|
||||
}
|
||||
|
||||
/* ?_Getptr@_Timevec@std@@QBEPAXXZ */
|
||||
/* ?_Getptr@_Timevec@std@@QEBAPEAXXZ */
|
||||
DEFINE_THISCALL_WRAPPER(_Timevec__Getptr, 4)
|
||||
void* __thiscall _Timevec__Getptr(_Timevec *this)
|
||||
{
|
||||
FIXME("(%p) stub\n", this);
|
||||
return NULL;
|
||||
}
|
||||
|
||||
/* ?_Locinfo_ctor@_Locinfo@std@@SAXPAV12@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@2@@Z */
|
||||
/* ?_Locinfo_ctor@_Locinfo@std@@SAXPEAV12@AEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@2@@Z */
|
||||
_Locinfo* __cdecl _Locinfo__Locinfo_ctor_bstr(_Locinfo *locinfo, const basic_string_char *locstr)
|
||||
{
|
||||
FIXME("(%p %p) stub\n", locinfo, locstr);
|
||||
return NULL;
|
||||
}
|
||||
|
||||
/* ??0_Locinfo@std@@QAE@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@@Z */
|
||||
/* ??0_Locinfo@std@@QEAA@AEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@@Z */
|
||||
DEFINE_THISCALL_WRAPPER(_Locinfo_ctor_bstr, 8)
|
||||
_Locinfo* __thiscall _Locinfo_ctor_bstr(_Locinfo *this, const basic_string_char *locstr)
|
||||
{
|
||||
FIXME("(%p %p) stub\n", this, locstr);
|
||||
return NULL;
|
||||
}
|
||||
|
||||
/* ?_Locinfo_ctor@_Locinfo@std@@SAXPAV12@HPBD@Z */
|
||||
/* ?_Locinfo_ctor@_Locinfo@std@@SAXPEAV12@HPEBD@Z */
|
||||
_Locinfo* __cdecl _Locinfo__Locinfo_ctor_cat_cstr(_Locinfo *locinfo, int category, const char *locstr)
|
||||
{
|
||||
FIXME("(%p %d %s) stub\n", locinfo, category, locstr);
|
||||
return NULL;
|
||||
}
|
||||
|
||||
/* ??0_Locinfo@std@@QAE@HPBD@Z */
|
||||
/* ??0_Locinfo@std@@QEAA@HPEBD@Z */
|
||||
DEFINE_THISCALL_WRAPPER(_Locinfo_ctor_cat_cstr, 12)
|
||||
_Locinfo* __thiscall _Locinfo_ctor_cat_cstr(_Locinfo *this, int category, const char *locstr)
|
||||
{
|
||||
FIXME("(%p %d %s) stub\n", this, category, locstr);
|
||||
return NULL;
|
||||
}
|
||||
|
||||
/* ?_Locinfo_ctor@_Locinfo@std@@SAXPAV12@PBD@Z */
|
||||
/* ?_Locinfo_ctor@_Locinfo@std@@SAXPEAV12@PEBD@Z */
|
||||
_Locinfo* __cdecl _Locinfo__Locinfo_ctor_cstr(_Locinfo *locinfo, const char *locstr)
|
||||
{
|
||||
FIXME("(%p %s) stub\n", locinfo, locstr);
|
||||
return NULL;
|
||||
}
|
||||
|
||||
/* ??0_Locinfo@std@@QAE@PBD@Z */
|
||||
/* ??0_Locinfo@std@@QEAA@PEBD@Z */
|
||||
DEFINE_THISCALL_WRAPPER(_Locinfo_ctor_cstr, 8)
|
||||
_Locinfo* __thiscall _Locinfo_ctor_cstr(_Locinfo *this, const char *locstr)
|
||||
{
|
||||
FIXME("(%p %s) stub\n", this, locstr);
|
||||
return NULL;
|
||||
}
|
||||
|
||||
/* ?_Locinfo_dtor@_Locinfo@std@@SAXPAV12@@Z */
|
||||
/* ?_Locinfo_dtor@_Locinfo@std@@SAXPEAV12@@Z */
|
||||
_Locinfo* __cdecl _Locinfo__Locinfo_dtor(_Locinfo *locinfo)
|
||||
{
|
||||
FIXME("(%p) stub\n", locinfo);
|
||||
return NULL;
|
||||
}
|
||||
|
||||
/* ??_F_Locinfo@std@@QAEXXZ */
|
||||
/* ??_F_Locinfo@std@@QEAAXXZ */
|
||||
DEFINE_THISCALL_WRAPPER(_Locinfo_ctor, 4)
|
||||
_Locinfo* __thiscall _Locinfo_ctor(_Locinfo *this)
|
||||
{
|
||||
FIXME("(%p) stub\n", this);
|
||||
return NULL;
|
||||
}
|
||||
|
||||
/* ??1_Locinfo@std@@QAE@XZ */
|
||||
/* ??1_Locinfo@std@@QEAA@XZ */
|
||||
DEFINE_THISCALL_WRAPPER(_Locinfo_dtor, 4)
|
||||
void __thiscall _Locinfo_dtor(_Locinfo *this)
|
||||
{
|
||||
FIXME("(%p) stub\n", this);
|
||||
}
|
||||
|
||||
/* ?_Locinfo_Addcats@_Locinfo@std@@SAAAV12@PAV12@HPBD@Z */
|
||||
/* ?_Locinfo_Addcats@_Locinfo@std@@SAAEAV12@PEAV12@HPEBD@Z */
|
||||
_Locinfo* __cdecl _Locinfo__Locinfo_Addcats(_Locinfo *locinfo, int category, const char *locstr)
|
||||
{
|
||||
FIXME("%p %d %s) stub\n", locinfo, category, locstr);
|
||||
return NULL;
|
||||
}
|
||||
|
||||
/* ?_Addcats@_Locinfo@std@@QAEAAV12@HPBD@Z */
|
||||
/* ?_Addcats@_Locinfo@std@@QEAAAEAV12@HPEBD@Z */
|
||||
DEFINE_THISCALL_WRAPPER(_Locinfo__Addcats, 12)
|
||||
_Locinfo* __thiscall _Locinfo__Addcats(_Locinfo *this, int category, const char *locstr)
|
||||
{
|
||||
FIXME("(%p %d %s) stub\n", this, category, locstr);
|
||||
return NULL;
|
||||
}
|
||||
|
||||
/* ?_Getcoll@_Locinfo@std@@QBE?AU_Collvec@@XZ */
|
||||
/* ?_Getcoll@_Locinfo@std@@QEBA?AU_Collvec@@XZ */
|
||||
DEFINE_THISCALL_WRAPPER(_Locinfo__Getcoll, 4)
|
||||
_Collvec __thiscall _Locinfo__Getcoll(const _Locinfo *this)
|
||||
{
|
||||
_Collvec ret = { 0 }; /* FIXME */
|
||||
FIXME("(%p) stub\n", this);
|
||||
return ret;
|
||||
}
|
||||
|
||||
/* ?_Getctype@_Locinfo@std@@QBE?AU_Ctypevec@@XZ */
|
||||
/* ?_Getctype@_Locinfo@std@@QEBA?AU_Ctypevec@@XZ */
|
||||
DEFINE_THISCALL_WRAPPER_RETPTR(_Locinfo__Getctype, 4)
|
||||
_Ctypevec __thiscall _Locinfo__Getctype(const _Locinfo *this)
|
||||
{
|
||||
_Ctypevec ret = { 0 }; /* FIXME */
|
||||
FIXME("(%p) stub\n", this);
|
||||
return ret;
|
||||
}
|
||||
|
||||
/* ?_Getcvt@_Locinfo@std@@QBE?AU_Cvtvec@@XZ */
|
||||
/* ?_Getcvt@_Locinfo@std@@QEBA?AU_Cvtvec@@XZ */
|
||||
DEFINE_THISCALL_WRAPPER(_Locinfo__Getcvt, 4)
|
||||
_Cvtvec __thiscall _Locinfo__Getcvt(const _Locinfo *this)
|
||||
{
|
||||
_Cvtvec ret = { 0 }; /* FIXME */
|
||||
FIXME("(%p) stub\n", this);
|
||||
return ret;
|
||||
}
|
||||
|
||||
/* ?_Getdateorder@_Locinfo@std@@QBEHXZ */
|
||||
/* ?_Getdateorder@_Locinfo@std@@QEBAHXZ */
|
||||
DEFINE_THISCALL_WRAPPER(_Locinfo__Getdateorder, 4)
|
||||
int __thiscall _Locinfo__Getdateorder(const _Locinfo *this)
|
||||
{
|
||||
FIXME("(%p) stub\n", this);
|
||||
return 0;
|
||||
}
|
||||
|
||||
/* ?_Getdays@_Locinfo@std@@QBEPBDXZ */
|
||||
/* ?_Getdays@_Locinfo@std@@QEBAPEBDXZ */
|
||||
DEFINE_THISCALL_WRAPPER(_Locinfo__Getdays, 4)
|
||||
const char* __thiscall _Locinfo__Getdays(const _Locinfo *this)
|
||||
{
|
||||
FIXME("(%p) stub\n", this);
|
||||
return NULL;
|
||||
}
|
||||
|
||||
/* ?_Getmonths@_Locinfo@std@@QBEPBDXZ */
|
||||
/* ?_Getmonths@_Locinfo@std@@QEBAPEBDXZ */
|
||||
DEFINE_THISCALL_WRAPPER(_Locinfo__Getmonths, 4)
|
||||
const char* __thiscall _Locinfo__Getmonths(const _Locinfo *this)
|
||||
{
|
||||
FIXME("(%p) stub\n", this);
|
||||
return NULL;
|
||||
}
|
||||
|
||||
/* ?_Getfalse@_Locinfo@std@@QBEPBDXZ */
|
||||
/* ?_Getfalse@_Locinfo@std@@QEBAPEBDXZ */
|
||||
DEFINE_THISCALL_WRAPPER(_Locinfo__Getfalse, 4)
|
||||
const char* __thiscall _Locinfo__Getfalse(const _Locinfo *this)
|
||||
{
|
||||
FIXME("(%p) stub\n", this);
|
||||
return NULL;
|
||||
}
|
||||
|
||||
/* ?_Gettrue@_Locinfo@std@@QBEPBDXZ */
|
||||
/* ?_Gettrue@_Locinfo@std@@QEBAPEBDXZ */
|
||||
DEFINE_THISCALL_WRAPPER(_Locinfo__Gettrue, 4)
|
||||
const char* __thiscall _Locinfo__Gettrue(const _Locinfo *this)
|
||||
{
|
||||
FIXME("(%p) stub\n", this);
|
||||
return NULL;
|
||||
}
|
||||
|
||||
/* ?_Getlconv@_Locinfo@std@@QBEPBUlconv@@XZ */
|
||||
/* ?_Getlconv@_Locinfo@std@@QEBAPEBUlconv@@XZ */
|
||||
DEFINE_THISCALL_WRAPPER(_Locinfo__Getlconv, 4)
|
||||
const struct lconv* __thiscall _Locinfo__Getlconv(const _Locinfo *this)
|
||||
{
|
||||
FIXME("(%p) stub\n", this);
|
||||
return NULL;
|
||||
}
|
||||
|
||||
/* ?_Getname@_Locinfo@std@@QBE?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@2@XZ */
|
||||
/* ?_Getname@_Locinfo@std@@QEBA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@2@XZ */
|
||||
DEFINE_THISCALL_WRAPPER_RETPTR(_Locinfo__Getname, 4)
|
||||
basic_string_char __thiscall _Locinfo__Getname(const _Locinfo *this)
|
||||
{
|
||||
basic_string_char ret = { 0 }; /* FIXME */
|
||||
FIXME("(%p) stub\n", this);
|
||||
return ret;
|
||||
}
|
||||
|
||||
/* ?_Gettnames@_Locinfo@std@@QBE?AV_Timevec@2@XZ */
|
||||
/* ?_Gettnames@_Locinfo@std@@QEBA?AV_Timevec@2@XZ */
|
||||
DEFINE_THISCALL_WRAPPER(_Locinfo__Gettnames, 4)
|
||||
_Timevec __thiscall _Locinfo__Gettnames(const _Locinfo *this)
|
||||
{
|
||||
_Timevec ret = { 0 }; /* FIXME */
|
||||
FIXME("(%p) stub\n", this);
|
||||
return ret;
|
||||
}
|
||||
|
|
|
@ -1072,22 +1072,22 @@
|
|||
@ cdecl -arch=win64 ??0_Locimp@locale@std@@AEAA@AEBV012@@Z(ptr ptr) locale__Locimp_copy_ctor
|
||||
@ thiscall -arch=win32 ??0_Locimp@locale@std@@AAE@_N@Z(ptr long) locale__Locimp_ctor_transparent
|
||||
@ cdecl -arch=win64 ??0_Locimp@locale@std@@AEAA@_N@Z(ptr long) locale__Locimp_ctor_transparent
|
||||
@ stub -arch=win32 ??0_Locinfo@std@@QAE@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@@Z
|
||||
@ stub -arch=win64 ??0_Locinfo@std@@QEAA@AEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@@Z
|
||||
@ stub -arch=win32 ??0_Locinfo@std@@QAE@HPBD@Z
|
||||
@ stub -arch=win64 ??0_Locinfo@std@@QEAA@HPEBD@Z
|
||||
@ stub -arch=win32 ??0_Locinfo@std@@QAE@PBD@Z
|
||||
@ stub -arch=win64 ??0_Locinfo@std@@QEAA@PEBD@Z
|
||||
@ thiscall -arch=win32 ??0_Locinfo@std@@QAE@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@@Z(ptr ptr) _Locinfo_ctor_bstr
|
||||
@ cdecl -arch=win64 ??0_Locinfo@std@@QEAA@AEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@@Z(ptr ptr) _Locinfo_ctor_bstr
|
||||
@ thiscall -arch=win32 ??0_Locinfo@std@@QAE@HPBD@Z(ptr long str) _Locinfo_ctor_cat_cstr
|
||||
@ cdecl -arch=win64 ??0_Locinfo@std@@QEAA@HPEBD@Z(ptr long str) _Locinfo_ctor_cat_cstr
|
||||
@ thiscall -arch=win32 ??0_Locinfo@std@@QAE@PBD@Z(ptr str) _Locinfo_ctor_cstr
|
||||
@ cdecl -arch=win64 ??0_Locinfo@std@@QEAA@PEBD@Z(ptr str) _Locinfo_ctor_cstr
|
||||
@ thiscall -arch=win32 ??0_Lockit@std@@QAE@H@Z(ptr long) _Lockit_ctor_locktype
|
||||
@ cdecl -arch=win64 ??0_Lockit@std@@QEAA@H@Z(ptr long) _Lockit_ctor_locktype
|
||||
@ thiscall -arch=win32 ??0_Lockit@std@@QAE@XZ(ptr) _Lockit_ctor
|
||||
@ cdecl -arch=win64 ??0_Lockit@std@@QEAA@XZ(ptr) _Lockit_ctor
|
||||
@ thiscall -arch=win32 ??0_Mutex@std@@QAE@XZ(ptr) mutex_ctor
|
||||
@ cdecl -arch=win64 ??0_Mutex@std@@QEAA@XZ(ptr) mutex_ctor
|
||||
@ stub -arch=win32 ??0_Timevec@std@@QAE@ABV01@@Z
|
||||
@ stub -arch=win64 ??0_Timevec@std@@QEAA@AEBV01@@Z
|
||||
@ stub -arch=win32 ??0_Timevec@std@@QAE@PAX@Z
|
||||
@ stub -arch=win64 ??0_Timevec@std@@QEAA@PEAX@Z
|
||||
@ thiscall -arch=win32 ??0_Timevec@std@@QAE@ABV01@@Z(ptr ptr) _Timevec_copy_ctor
|
||||
@ cdecl -arch=win64 ??0_Timevec@std@@QEAA@AEBV01@@Z(ptr ptr) _Timevec_copy_ctor
|
||||
@ thiscall -arch=win32 ??0_Timevec@std@@QAE@PAX@Z(ptr ptr) _Timevec_ctor_timeptr
|
||||
@ cdecl -arch=win64 ??0_Timevec@std@@QEAA@PEAX@Z(ptr ptr) _Timevec_ctor_timeptr
|
||||
@ stub -arch=win32 ??0_UShinit@std@@QAE@XZ
|
||||
@ stub -arch=win64 ??0_UShinit@std@@QEAA@XZ
|
||||
@ stub -arch=win32 ??0_Winit@std@@QAE@XZ
|
||||
|
@ -1314,14 +1314,14 @@
|
|||
@ stub -arch=win64 ??1_Init_locks@std@@QEAA@XZ
|
||||
@ thiscall -arch=win32 ??1_Locimp@locale@std@@MAE@XZ(ptr) locale__Locimp_dtor
|
||||
@ cdecl -arch=win64 ??1_Locimp@locale@std@@MEAA@XZ(ptr) locale__Locimp_dtor
|
||||
@ stub -arch=win32 ??1_Locinfo@std@@QAE@XZ
|
||||
@ stub -arch=win64 ??1_Locinfo@std@@QEAA@XZ
|
||||
@ thiscall -arch=win32 ??1_Locinfo@std@@QAE@XZ(ptr) _Locinfo_dtor
|
||||
@ cdecl -arch=win64 ??1_Locinfo@std@@QEAA@XZ(ptr) _Locinfo_dtor
|
||||
@ thiscall -arch=win32 ??1_Lockit@std@@QAE@XZ(ptr) _Lockit_dtor
|
||||
@ cdecl -arch=win64 ??1_Lockit@std@@QEAA@XZ(ptr) _Lockit_dtor
|
||||
@ thiscall -arch=win32 ??1_Mutex@std@@QAE@XZ(ptr) mutex_dtor
|
||||
@ cdecl -arch=win64 ??1_Mutex@std@@QEAA@XZ(ptr) mutex_dtor
|
||||
@ stub -arch=win32 ??1_Timevec@std@@QAE@XZ
|
||||
@ stub -arch=win64 ??1_Timevec@std@@QEAA@XZ
|
||||
@ thiscall -arch=win32 ??1_Timevec@std@@QAE@XZ(ptr) _Timevec_dtor
|
||||
@ cdecl -arch=win64 ??1_Timevec@std@@QEAA@XZ(ptr) _Timevec_dtor
|
||||
@ stub -arch=win32 ??1_UShinit@std@@QAE@XZ
|
||||
@ stub -arch=win64 ??1_UShinit@std@@QEAA@XZ
|
||||
@ stub -arch=win32 ??1_Winit@std@@QAE@XZ
|
||||
|
@ -1462,8 +1462,8 @@
|
|||
@ cdecl -arch=win64 ??4_Num_int_base@std@@QEAAAEAU01@AEBU01@@Z(ptr) std_Num_base_op_assign
|
||||
@ stub -arch=win32 ??4_String_base@std@@QAEAAV01@ABV01@@Z
|
||||
@ stub -arch=win64 ??4_String_base@std@@QEAAAEAV01@AEBV01@@Z
|
||||
@ stub -arch=win32 ??4_Timevec@std@@QAEAAV01@ABV01@@Z
|
||||
@ stub -arch=win64 ??4_Timevec@std@@QEAAAEAV01@AEBV01@@Z
|
||||
@ thiscall -arch=win32 ??4_Timevec@std@@QAEAAV01@ABV01@@Z(ptr ptr) _Timevec_op_assign
|
||||
@ cdecl -arch=win64 ??4_Timevec@std@@QEAAAEAV01@AEBV01@@Z(ptr ptr) _Timevec_op_assign
|
||||
@ stub -arch=win32 ??4_UShinit@std@@QAEAAV01@ABV01@@Z
|
||||
@ stub -arch=win64 ??4_UShinit@std@@QEAAAEAV01@AEBV01@@Z
|
||||
@ stub -arch=win32 ??4_Winit@std@@QAEAAV01@ABV01@@Z
|
||||
|
@ -2077,10 +2077,10 @@
|
|||
@ stub -arch=win64 ??_F?$time_put@_WV?$ostreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@QEAAXXZ
|
||||
@ thiscall -arch=win32 ??_F_Locimp@locale@std@@QAEXXZ(ptr) locale__Locimp_ctor
|
||||
@ cdecl -arch=win64 ??_F_Locimp@locale@std@@QEAAXXZ(ptr) locale__Locimp_ctor
|
||||
@ stub -arch=win32 ??_F_Locinfo@std@@QAEXXZ
|
||||
@ stub -arch=win64 ??_F_Locinfo@std@@QEAAXXZ
|
||||
@ stub -arch=win32 ??_F_Timevec@std@@QAEXXZ
|
||||
@ stub -arch=win64 ??_F_Timevec@std@@QEAAXXZ
|
||||
@ thiscall -arch=win32 ??_F_Locinfo@std@@QAEXXZ(ptr) _Locinfo_ctor
|
||||
@ cdecl -arch=win64 ??_F_Locinfo@std@@QEAAXXZ(ptr) _Locinfo_ctor
|
||||
@ thiscall -arch=win32 ??_F_Timevec@std@@QAEXXZ(ptr) _Timevec_ctor
|
||||
@ cdecl -arch=win64 ??_F_Timevec@std@@QEAAXXZ(ptr) _Timevec_ctor
|
||||
@ stub -arch=win32 ??_Fcodecvt_base@std@@QAEXXZ
|
||||
@ stub -arch=win64 ??_Fcodecvt_base@std@@QEAAXXZ
|
||||
@ stub -arch=win32 ??_Fctype_base@std@@QAEXXZ
|
||||
|
@ -2097,8 +2097,8 @@
|
|||
@ stub -arch=win64 ??_Fstrstreambuf@std@@QEAAXXZ
|
||||
@ stub -arch=win32 ??_Ftime_base@std@@QAEXXZ
|
||||
@ stub -arch=win64 ??_Ftime_base@std@@QEAAXXZ
|
||||
@ stub -arch=win32 ?_Addcats@_Locinfo@std@@QAEAAV12@HPBD@Z
|
||||
@ stub -arch=win64 ?_Addcats@_Locinfo@std@@QEAAAEAV12@HPEBD@Z
|
||||
@ thiscall -arch=win32 ?_Addcats@_Locinfo@std@@QAEAAV12@HPBD@Z(ptr long str) _Locinfo__Addcats
|
||||
@ cdecl -arch=win64 ?_Addcats@_Locinfo@std@@QEAAAEAV12@HPEBD@Z(ptr long str) _Locinfo__Addcats
|
||||
@ thiscall -arch=win32 ?_Addfac@_Locimp@locale@std@@AAEXPAVfacet@23@I@Z(ptr ptr long) locale__Locimp__Addfac
|
||||
@ cdecl -arch=win64 ?_Addfac@_Locimp@locale@std@@AEAAXPEAVfacet@23@_K@Z(ptr ptr long) locale__Locimp__Addfac
|
||||
@ thiscall -arch=win32 ?_Addfac@locale@std@@QAEAAV12@PAVfacet@12@II@Z(ptr ptr long long) locale__Addfac
|
||||
|
@ -2301,20 +2301,20 @@
|
|||
@ stub -arch=win64 ?_Getcat@?$time_put@_WV?$ostreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@SA_KPEAPEBVfacet@locale@2@PEBV42@@Z
|
||||
@ cdecl -arch=win32 ?_Getcat@facet@locale@std@@SAIPAPBV123@PBV23@@Z(ptr ptr) locale_facet__Getcat
|
||||
@ cdecl -arch=win64 ?_Getcat@facet@locale@std@@SA_KPEAPEBV123@PEBV23@@Z(ptr ptr) locale_facet__Getcat
|
||||
@ stub -arch=win32 ?_Getcoll@_Locinfo@std@@QBE?AU_Collvec@@XZ
|
||||
@ stub -arch=win64 ?_Getcoll@_Locinfo@std@@QEBA?AU_Collvec@@XZ
|
||||
@ stub -arch=win32 ?_Getctype@_Locinfo@std@@QBE?AU_Ctypevec@@XZ
|
||||
@ stub -arch=win64 ?_Getctype@_Locinfo@std@@QEBA?AU_Ctypevec@@XZ
|
||||
@ stub -arch=win32 ?_Getcvt@_Locinfo@std@@QBE?AU_Cvtvec@@XZ
|
||||
@ stub -arch=win64 ?_Getcvt@_Locinfo@std@@QEBA?AU_Cvtvec@@XZ
|
||||
@ stub -arch=win32 ?_Getdateorder@_Locinfo@std@@QBEHXZ
|
||||
@ stub -arch=win64 ?_Getdateorder@_Locinfo@std@@QEBAHXZ
|
||||
@ stub -arch=win32 ?_Getdays@_Locinfo@std@@QBEPBDXZ
|
||||
@ stub -arch=win64 ?_Getdays@_Locinfo@std@@QEBAPEBDXZ
|
||||
@ thiscall -arch=win32 ?_Getcoll@_Locinfo@std@@QBE?AU_Collvec@@XZ(ptr) _Locinfo__Getcoll
|
||||
@ cdecl -arch=win64 ?_Getcoll@_Locinfo@std@@QEBA?AU_Collvec@@XZ(ptr) _Locinfo__Getcoll
|
||||
@ thiscall -arch=win32 ?_Getctype@_Locinfo@std@@QBE?AU_Ctypevec@@XZ(ptr ptr) _Locinfo__Getctype
|
||||
@ cdecl -arch=win64 ?_Getctype@_Locinfo@std@@QEBA?AU_Ctypevec@@XZ(ptr ptr) _Locinfo__Getctype
|
||||
@ thiscall -arch=win32 ?_Getcvt@_Locinfo@std@@QBE?AU_Cvtvec@@XZ(ptr) _Locinfo__Getcvt
|
||||
@ cdecl -arch=win64 ?_Getcvt@_Locinfo@std@@QEBA?AU_Cvtvec@@XZ(ptr) _Locinfo__Getcvt
|
||||
@ thiscall -arch=win32 ?_Getdateorder@_Locinfo@std@@QBEHXZ(ptr) _Locinfo__Getdateorder
|
||||
@ cdecl -arch=win64 ?_Getdateorder@_Locinfo@std@@QEBAHXZ(ptr) _Locinfo__Getdateorder
|
||||
@ thiscall -arch=win32 ?_Getdays@_Locinfo@std@@QBEPBDXZ(ptr) _Locinfo__Getdays
|
||||
@ cdecl -arch=win64 ?_Getdays@_Locinfo@std@@QEBAPEBDXZ(ptr) _Locinfo__Getdays
|
||||
@ thiscall -arch=win32 ?_Getfacet@locale@std@@QBEPBVfacet@12@I@Z(ptr long) locale__Getfacet
|
||||
@ cdecl -arch=win64 ?_Getfacet@locale@std@@QEBAPEBVfacet@12@_K@Z(ptr long) locale__Getfacet
|
||||
@ stub -arch=win32 ?_Getfalse@_Locinfo@std@@QBEPBDXZ
|
||||
@ stub -arch=win64 ?_Getfalse@_Locinfo@std@@QEBAPEBDXZ
|
||||
@ thiscall -arch=win32 ?_Getfalse@_Locinfo@std@@QBEPBDXZ(ptr) _Locinfo__Getfalse
|
||||
@ cdecl -arch=win64 ?_Getfalse@_Locinfo@std@@QEBAPEBDXZ(ptr) _Locinfo__Getfalse
|
||||
@ stub -arch=win32 ?_Getffld@?$num_get@DV?$istreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@ABAHPADAAV?$istreambuf_iterator@DU?$char_traits@D@std@@@2@1ABVlocale@2@@Z
|
||||
@ stub -arch=win64 ?_Getffld@?$num_get@DV?$istreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@AEBAHPEADAEAV?$istreambuf_iterator@DU?$char_traits@D@std@@@2@1AEBVlocale@2@@Z
|
||||
@ stub -arch=win32 ?_Getffld@?$num_get@GV?$istreambuf_iterator@GU?$char_traits@G@std@@@std@@@std@@ABAHPADAAV?$istreambuf_iterator@GU?$char_traits@G@std@@@2@1ABVlocale@2@@Z
|
||||
|
@ -2341,30 +2341,30 @@
|
|||
@ stub -arch=win64 ?_Getint@?$time_get@GV?$istreambuf_iterator@GU?$char_traits@G@std@@@std@@@std@@AEBAHAEAV?$istreambuf_iterator@GU?$char_traits@G@std@@@2@0HHAEAH@Z
|
||||
@ stub -arch=win32 ?_Getint@?$time_get@_WV?$istreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@ABAHAAV?$istreambuf_iterator@_WU?$char_traits@_W@std@@@2@0HHAAH@Z
|
||||
@ stub -arch=win64 ?_Getint@?$time_get@_WV?$istreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@AEBAHAEAV?$istreambuf_iterator@_WU?$char_traits@_W@std@@@2@0HHAEAH@Z
|
||||
@ stub -arch=win32 ?_Getlconv@_Locinfo@std@@QBEPBUlconv@@XZ
|
||||
@ stub -arch=win64 ?_Getlconv@_Locinfo@std@@QEBAPEBUlconv@@XZ
|
||||
@ thiscall -arch=win32 ?_Getlconv@_Locinfo@std@@QBEPBUlconv@@XZ(ptr) _Locinfo__Getlconv
|
||||
@ cdecl -arch=win64 ?_Getlconv@_Locinfo@std@@QEBAPEBUlconv@@XZ(ptr) _Locinfo__Getlconv
|
||||
@ stub -arch=win32 ?_Getmfld@?$money_get@DV?$istreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@ABE?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@2@AAV?$istreambuf_iterator@DU?$char_traits@D@std@@@2@0_NAAVios_base@2@@Z
|
||||
@ stub -arch=win64 ?_Getmfld@?$money_get@DV?$istreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@AEBA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@2@AEAV?$istreambuf_iterator@DU?$char_traits@D@std@@@2@0_NAEAVios_base@2@@Z
|
||||
@ stub -arch=win32 ?_Getmfld@?$money_get@GV?$istreambuf_iterator@GU?$char_traits@G@std@@@std@@@std@@ABE?AV?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@2@AAV?$istreambuf_iterator@GU?$char_traits@G@std@@@2@0_NAAVios_base@2@@Z
|
||||
@ stub -arch=win64 ?_Getmfld@?$money_get@GV?$istreambuf_iterator@GU?$char_traits@G@std@@@std@@@std@@AEBA?AV?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@2@AEAV?$istreambuf_iterator@GU?$char_traits@G@std@@@2@0_NAEAVios_base@2@@Z
|
||||
@ stub -arch=win32 ?_Getmfld@?$money_get@_WV?$istreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@ABE?AV?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@2@AAV?$istreambuf_iterator@_WU?$char_traits@_W@std@@@2@0_NAAVios_base@2@@Z
|
||||
@ stub -arch=win64 ?_Getmfld@?$money_get@_WV?$istreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@AEBA?AV?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@2@AEAV?$istreambuf_iterator@_WU?$char_traits@_W@std@@@2@0_NAEAVios_base@2@@Z
|
||||
@ stub -arch=win32 ?_Getmonths@_Locinfo@std@@QBEPBDXZ
|
||||
@ stub -arch=win64 ?_Getmonths@_Locinfo@std@@QEBAPEBDXZ
|
||||
@ stub -arch=win32 ?_Getname@_Locinfo@std@@QBE?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@2@XZ
|
||||
@ stub -arch=win64 ?_Getname@_Locinfo@std@@QEBA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@2@XZ
|
||||
@ stub -arch=win32 ?_Getptr@_Timevec@std@@QBEPAXXZ
|
||||
@ stub -arch=win64 ?_Getptr@_Timevec@std@@QEBAPEAXXZ
|
||||
@ thiscall -arch=win32 ?_Getmonths@_Locinfo@std@@QBEPBDXZ(ptr) _Locinfo__Getmonths
|
||||
@ cdecl -arch=win64 ?_Getmonths@_Locinfo@std@@QEBAPEBDXZ(ptr) _Locinfo__Getmonths
|
||||
@ thiscall -arch=win32 ?_Getname@_Locinfo@std@@QBE?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@2@XZ(ptr ptr) _Locinfo__Getname
|
||||
@ cdecl -arch=win64 ?_Getname@_Locinfo@std@@QEBA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@2@XZ(ptr ptr) _Locinfo__Getname
|
||||
@ thiscall -arch=win32 ?_Getptr@_Timevec@std@@QBEPAXXZ(ptr) _Timevec__Getptr
|
||||
@ cdecl -arch=win64 ?_Getptr@_Timevec@std@@QEBAPEAXXZ(ptr) _Timevec__Getptr
|
||||
@ stub -arch=win32 ?_Getstate@?$basic_stringbuf@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@AAEHH@Z
|
||||
@ stub -arch=win64 ?_Getstate@?$basic_stringbuf@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@AEAAHH@Z
|
||||
@ stub -arch=win32 ?_Getstate@?$basic_stringbuf@GU?$char_traits@G@std@@V?$allocator@G@2@@std@@AAEHH@Z
|
||||
@ stub -arch=win64 ?_Getstate@?$basic_stringbuf@GU?$char_traits@G@std@@V?$allocator@G@2@@std@@AEAAHH@Z
|
||||
@ stub -arch=win32 ?_Getstate@?$basic_stringbuf@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@std@@AAEHH@Z
|
||||
@ stub -arch=win64 ?_Getstate@?$basic_stringbuf@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@std@@AEAAHH@Z
|
||||
@ stub -arch=win32 ?_Gettnames@_Locinfo@std@@QBE?AV_Timevec@2@XZ
|
||||
@ stub -arch=win64 ?_Gettnames@_Locinfo@std@@QEBA?AV_Timevec@2@XZ
|
||||
@ stub -arch=win32 ?_Gettrue@_Locinfo@std@@QBEPBDXZ
|
||||
@ stub -arch=win64 ?_Gettrue@_Locinfo@std@@QEBAPEBDXZ
|
||||
@ thiscall -arch=win32 ?_Gettnames@_Locinfo@std@@QBE?AV_Timevec@2@XZ(ptr) _Locinfo__Gettnames
|
||||
@ cdecl -arch=win64 ?_Gettnames@_Locinfo@std@@QEBA?AV_Timevec@2@XZ(ptr) _Locinfo__Gettnames
|
||||
@ thiscall -arch=win32 ?_Gettrue@_Locinfo@std@@QBEPBDXZ(ptr) _Locinfo__Gettrue
|
||||
@ cdecl -arch=win64 ?_Gettrue@_Locinfo@std@@QEBAPEBDXZ(ptr) _Locinfo__Gettrue
|
||||
@ stub -arch=win32 ?_Gnavail@?$basic_streambuf@DU?$char_traits@D@std@@@std@@IBEHXZ
|
||||
@ stub -arch=win64 ?_Gnavail@?$basic_streambuf@DU?$char_traits@D@std@@@std@@IEBA_JXZ
|
||||
@ stub -arch=win32 ?_Gnavail@?$basic_streambuf@GU?$char_traits@G@std@@@std@@IBEHXZ
|
||||
|
@ -2581,16 +2581,16 @@
|
|||
@ cdecl -arch=win64 ?_Locimp_ctor@_Locimp@locale@std@@CAXPEAV123@AEBV123@@Z(ptr ptr) locale__Locimp_copy_ctor
|
||||
@ cdecl -arch=win32 ?_Locimp_dtor@_Locimp@locale@std@@CAXPAV123@@Z(ptr) locale__Locimp_dtor
|
||||
@ cdecl -arch=win64 ?_Locimp_dtor@_Locimp@locale@std@@CAXPEAV123@@Z(ptr) locale__Locimp_dtor
|
||||
@ stub -arch=win32 ?_Locinfo_Addcats@_Locinfo@std@@SAAAV12@PAV12@HPBD@Z
|
||||
@ stub -arch=win64 ?_Locinfo_Addcats@_Locinfo@std@@SAAEAV12@PEAV12@HPEBD@Z
|
||||
@ stub -arch=win32 ?_Locinfo_ctor@_Locinfo@std@@SAXPAV12@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@2@@Z
|
||||
@ stub -arch=win64 ?_Locinfo_ctor@_Locinfo@std@@SAXPEAV12@AEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@2@@Z
|
||||
@ stub -arch=win32 ?_Locinfo_ctor@_Locinfo@std@@SAXPAV12@HPBD@Z
|
||||
@ stub -arch=win64 ?_Locinfo_ctor@_Locinfo@std@@SAXPEAV12@HPEBD@Z
|
||||
@ stub -arch=win32 ?_Locinfo_ctor@_Locinfo@std@@SAXPAV12@PBD@Z
|
||||
@ stub -arch=win64 ?_Locinfo_ctor@_Locinfo@std@@SAXPEAV12@PEBD@Z
|
||||
@ stub -arch=win32 ?_Locinfo_dtor@_Locinfo@std@@SAXPAV12@@Z
|
||||
@ stub -arch=win64 ?_Locinfo_dtor@_Locinfo@std@@SAXPEAV12@@Z
|
||||
@ cdecl -arch=win32 ?_Locinfo_Addcats@_Locinfo@std@@SAAAV12@PAV12@HPBD@Z(ptr long str) _Locinfo__Locinfo_Addcats
|
||||
@ cdecl -arch=win64 ?_Locinfo_Addcats@_Locinfo@std@@SAAEAV12@PEAV12@HPEBD@Z(ptr long str) _Locinfo__Locinfo_Addcats
|
||||
@ cdecl -arch=win32 ?_Locinfo_ctor@_Locinfo@std@@SAXPAV12@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@2@@Z(ptr ptr) _Locinfo__Locinfo_ctor_bstr
|
||||
@ cdecl -arch=win64 ?_Locinfo_ctor@_Locinfo@std@@SAXPEAV12@AEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@2@@Z(ptr ptr) _Locinfo__Locinfo_ctor_bstr
|
||||
@ cdecl -arch=win32 ?_Locinfo_ctor@_Locinfo@std@@SAXPAV12@HPBD@Z(ptr long str) _Locinfo__Locinfo_ctor_cat_cstr
|
||||
@ cdecl -arch=win64 ?_Locinfo_ctor@_Locinfo@std@@SAXPEAV12@HPEBD@Z(ptr long str) _Locinfo__Locinfo_ctor_cat_cstr
|
||||
@ cdecl -arch=win32 ?_Locinfo_ctor@_Locinfo@std@@SAXPAV12@PBD@Z(ptr str) _Locinfo__Locinfo_ctor_cstr
|
||||
@ cdecl -arch=win64 ?_Locinfo_ctor@_Locinfo@std@@SAXPEAV12@PEBD@Z(ptr str) _Locinfo__Locinfo_ctor_cstr
|
||||
@ cdecl -arch=win32 ?_Locinfo_dtor@_Locinfo@std@@SAXPAV12@@Z(ptr) _Locinfo__Locinfo_dtor
|
||||
@ cdecl -arch=win64 ?_Locinfo_dtor@_Locinfo@std@@SAXPEAV12@@Z(ptr) _Locinfo__Locinfo_dtor
|
||||
@ stub -arch=win32 ?_Lock@?$basic_streambuf@DU?$char_traits@D@std@@@std@@QAEXXZ
|
||||
@ stub -arch=win64 ?_Lock@?$basic_streambuf@DU?$char_traits@D@std@@@std@@QEAAXXZ
|
||||
@ stub -arch=win32 ?_Lock@?$basic_streambuf@GU?$char_traits@G@std@@@std@@QAEXXZ
|
||||
|
|
Loading…
Reference in New Issue