2001-12-05 22:11:35 +00:00
|
|
|
/*
|
|
|
|
* Multibyte char definitions
|
|
|
|
*
|
|
|
|
* Copyright 2001 Francois Gouget.
|
2002-03-09 23:29:33 +00:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
2006-05-18 12:49:52 +00:00
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
2001-12-05 22:11:35 +00:00
|
|
|
*/
|
|
|
|
#ifndef __WINE_MBCTYPE_H
|
|
|
|
#define __WINE_MBCTYPE_H
|
2008-12-11 21:37:34 +00:00
|
|
|
|
2019-08-09 15:32:04 +00:00
|
|
|
#include <corecrt.h>
|
2001-12-05 22:11:35 +00:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2008-12-15 15:20:08 +00:00
|
|
|
#ifdef __i386__
|
2020-11-24 17:50:06 +00:00
|
|
|
_ACRTIMP unsigned char* __cdecl __p__mbctype(void);
|
2001-12-05 22:11:35 +00:00
|
|
|
#define _mbctype (__p__mbctype())
|
2008-12-15 15:20:08 +00:00
|
|
|
#else
|
|
|
|
extern unsigned char MSVCRT_mbctype[];
|
|
|
|
#endif
|
2001-12-05 22:11:35 +00:00
|
|
|
|
2005-07-08 11:31:26 +00:00
|
|
|
#define _MS 0x01
|
|
|
|
#define _MP 0x02
|
|
|
|
#define _M1 0x04
|
|
|
|
#define _M2 0x08
|
|
|
|
|
|
|
|
#define _SBUP 0x10
|
|
|
|
#define _SBLOW 0x20
|
|
|
|
|
|
|
|
#define _MBC_SINGLE 0
|
|
|
|
#define _MBC_LEAD 1
|
|
|
|
#define _MBC_TRAIL 2
|
|
|
|
#define _MBC_ILLEGAL -1
|
|
|
|
|
|
|
|
#define _KANJI_CP 932
|
|
|
|
|
|
|
|
#define _MB_CP_SBCS 0
|
|
|
|
#define _MB_CP_OEM -2
|
|
|
|
#define _MB_CP_ANSI -3
|
|
|
|
#define _MB_CP_LOCALE -4
|
|
|
|
|
2020-11-24 17:50:06 +00:00
|
|
|
_ACRTIMP int __cdecl _getmbcp(void);
|
|
|
|
_ACRTIMP int __cdecl _ismbbalnum(unsigned int);
|
|
|
|
_ACRTIMP int __cdecl _ismbbalpha(unsigned int);
|
|
|
|
_ACRTIMP int __cdecl _ismbbgraph(unsigned int);
|
|
|
|
_ACRTIMP int __cdecl _ismbbkalnum(unsigned int);
|
|
|
|
_ACRTIMP int __cdecl _ismbbkana(unsigned int);
|
|
|
|
_ACRTIMP int __cdecl _ismbbkprint(unsigned int);
|
|
|
|
_ACRTIMP int __cdecl _ismbbkpunct(unsigned int);
|
|
|
|
_ACRTIMP int __cdecl _ismbbprint(unsigned int);
|
|
|
|
_ACRTIMP int __cdecl _ismbbpunct(unsigned int);
|
|
|
|
_ACRTIMP int __cdecl _setmbcp(int);
|
2002-12-18 20:17:20 +00:00
|
|
|
|
2004-06-25 01:19:15 +00:00
|
|
|
#ifndef _MBLEADTRAIL_DEFINED
|
|
|
|
#define _MBLEADTRAIL_DEFINED
|
2020-11-24 17:50:06 +00:00
|
|
|
_ACRTIMP int __cdecl _ismbblead(unsigned int);
|
2020-12-04 14:50:22 +00:00
|
|
|
_ACRTIMP int __cdecl _ismbblead_l(unsigned int,_locale_t);
|
2020-11-24 17:50:06 +00:00
|
|
|
_ACRTIMP int __cdecl _ismbbtrail(unsigned int);
|
|
|
|
_ACRTIMP int __cdecl _ismbslead(const unsigned char*,const unsigned char*);
|
|
|
|
_ACRTIMP int __cdecl _ismbstrail(const unsigned char*,const unsigned char*);
|
2004-06-25 01:19:15 +00:00
|
|
|
#endif /* _MBLEADTRAIL_DEFINED */
|
2001-12-05 22:11:35 +00:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* __WINE_MBCTYPE_H */
|