⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 gbbig5unicode.h

📁 Big5,GB,Unicode互相转换的源代码。 C++编写
💻 H
字号:
/************************************************************************
*
*  Module name         : GBBig5Unicode.h
*
*  Module description  :
*     This header file contains function prototypes for Chinese character
*     set encode method conversion.
*
*  Project             : Generic
*
*  Target platform     : Win32
*
*  Compiler & Library  : Visual C++ 6.0
*
*  Author              : Richard Shen
*
*  Creation date       : 09 October, 2000
*
************************************************************************/
#ifndef GBBig5Unicode_h
#define GBBig5Unicode_h

// GB2312 <=> Unicode
const unsigned char  *GBCodeToUnicode(unsigned char *gbCode);
const unsigned char  *UnicodeToGBCode(unsigned char *unicode);

// Big5 <=> Unicode
const unsigned char  *Big5CodeToUnicode(unsigned char *b5Code);
const unsigned char  *UnicodeToBig5Code(unsigned char *unicode);

// GB2312 <=> Big5
const unsigned char  *GBCodeToBig5Code(unsigned char *gbCode);
const unsigned char  *Big5CodeToGBCode(unsigned char *b5Code);

// Check code
BOOL                 IsGBCode(unsigned char *gbCode);
BOOL                 IsBig5Code(unsigned char *b5Code);

#endif // GBBig5Unicode_h

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -