msvcrt: Fix __p__pctype implementation.
This commit is contained in:
parent
ac90c1bd18
commit
4debdd6ac8
|
@ -58,6 +58,14 @@ WORD MSVCRT__ctype [257] = {
|
|||
*/
|
||||
unsigned short *MSVCRT__pctype = NULL;
|
||||
|
||||
/*********************************************************************
|
||||
* __p__pctype (MSVCRT.@)
|
||||
*/
|
||||
unsigned short** CDECL MSVCRT___p__pctype(void)
|
||||
{
|
||||
return &get_locinfo()->pctype;
|
||||
}
|
||||
|
||||
/*********************************************************************
|
||||
* __pctype_func (MSVCRT.@)
|
||||
*/
|
||||
|
|
|
@ -236,7 +236,7 @@
|
|||
@ stub __p__mbcasemap()
|
||||
@ cdecl __p__mbctype()
|
||||
@ cdecl __p__osver()
|
||||
@ cdecl __p__pctype() MSVCRT___pctype_func
|
||||
@ cdecl __p__pctype() MSVCRT___p__pctype
|
||||
@ cdecl __p__pgmptr()
|
||||
@ stub __p__pwctype()
|
||||
@ cdecl __p__timezone() MSVCRT___p__timezone
|
||||
|
|
Loading…
Reference in New Issue