Commit 4debdd6a authored by Piotr Caban's avatar Piotr Caban Committed by Alexandre Julliard

msvcrt: Fix __p__pctype implementation.

parent ac90c1bd
......@@ -59,6 +59,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.@)
*/
const unsigned short* CDECL MSVCRT___pctype_func(void)
......
......@@ -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
......
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