msvcp100: Implement _Locinfo::_Getname.
This commit is contained in:
parent
6e47b1691b
commit
91356c3bed
|
@ -908,8 +908,8 @@
|
|||
@ cdecl -arch=win64 ?_Getlconv@_Locinfo@std@@QEBAPEBUlconv@@XZ(ptr) _Locinfo__Getlconv
|
||||
@ thiscall -arch=win32 ?_Getmonths@_Locinfo@std@@QBEPBDXZ(ptr) _Locinfo__Getmonths
|
||||
@ cdecl -arch=win64 ?_Getmonths@_Locinfo@std@@QEBAPEBDXZ(ptr) _Locinfo__Getmonths
|
||||
@ stub -arch=win32 ?_Getname@_Locinfo@std@@QBEPBDXZ
|
||||
@ stub -arch=win64 ?_Getname@_Locinfo@std@@QEBAPEBDXZ
|
||||
@ thiscall -arch=win32 ?_Getname@_Locinfo@std@@QBEPBDXZ(ptr) _Locinfo__Getname
|
||||
@ cdecl -arch=win64 ?_Getname@_Locinfo@std@@QEBAPEBDXZ(ptr) _Locinfo__Getname
|
||||
@ cdecl -arch=arm ?_Getpfirst@_Container_base12@std@@QBAPAPAU_Iterator_base12@2@XZ(ptr) _Container_base12__Getpfirst
|
||||
@ thiscall -arch=i386 ?_Getpfirst@_Container_base12@std@@QBEPAPAU_Iterator_base12@2@XZ(ptr) _Container_base12__Getpfirst
|
||||
@ cdecl -arch=win64 ?_Getpfirst@_Container_base12@std@@QEBAPEAPEAU_Iterator_base12@2@XZ(ptr) _Container_base12__Getpfirst
|
||||
|
|
|
@ -1331,8 +1331,8 @@
|
|||
@ thiscall -arch=i386 ?_Getmonths@_Locinfo@std@@QBEPBDXZ(ptr) msvcp90.?_Getmonths@_Locinfo@std@@QBEPBDXZ
|
||||
@ cdecl -arch=win64 ?_Getmonths@_Locinfo@std@@QEBAPEBDXZ(ptr) msvcp90.?_Getmonths@_Locinfo@std@@QEBAPEBDXZ
|
||||
@ stub -arch=arm ?_Getname@_Locinfo@std@@QBAPBDXZ
|
||||
@ stub -arch=i386 ?_Getname@_Locinfo@std@@QBEPBDXZ
|
||||
@ stub -arch=win64 ?_Getname@_Locinfo@std@@QEBAPEBDXZ
|
||||
@ thiscall -arch=win32 ?_Getname@_Locinfo@std@@QBEPBDXZ(ptr) msvcp100.?_Getname@_Locinfo@std@@QBEPBDXZ
|
||||
@ cdecl -arch=win64 ?_Getname@_Locinfo@std@@QEBAPEBDXZ(ptr) msvcp100.?_Getname@_Locinfo@std@@QEBAPEBDXZ
|
||||
@ cdecl -arch=arm ?_Getpfirst@_Container_base12@std@@QBAPAPAU_Iterator_base12@2@XZ(ptr) msvcp100.?_Getpfirst@_Container_base12@std@@QBAPAPAU_Iterator_base12@2@XZ
|
||||
@ thiscall -arch=i386 ?_Getpfirst@_Container_base12@std@@QBEPAPAU_Iterator_base12@2@XZ(ptr) msvcp100.?_Getpfirst@_Container_base12@std@@QBEPAPAU_Iterator_base12@2@XZ
|
||||
@ cdecl -arch=win64 ?_Getpfirst@_Container_base12@std@@QEBAPEAPEAU_Iterator_base12@2@XZ(ptr) msvcp100.?_Getpfirst@_Container_base12@std@@QEBAPEAPEAU_Iterator_base12@2@XZ
|
||||
|
|
|
@ -9454,6 +9454,16 @@ basic_string_char* __thiscall locale_name(const locale *this, basic_string_char
|
|||
return ret;
|
||||
}
|
||||
|
||||
#else
|
||||
|
||||
/* ?_Getname@_Locinfo@std@@QBEPBDXZ */
|
||||
/* ?_Getname@_Locinfo@std@@QEBAPEBDXZ */
|
||||
DEFINE_THISCALL_WRAPPER(_Locinfo__Getname, 4)
|
||||
const char * __thiscall _Locinfo__Getname( const _Locinfo *this )
|
||||
{
|
||||
return locale_string_char_c_str( &this->newlocname );
|
||||
}
|
||||
|
||||
#endif /* _MSVCP_VER < 100 */
|
||||
|
||||
/* wctrans */
|
||||
|
|
Loading…
Reference in New Issue