pinyin.h
来自「汉字转拼音程序」· C头文件 代码 · 共 32 行
H
32 行
// Pinyin.h: interface for the CPinYin class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_PINYIN_H__CB1CCE28_3AC4_485B_B791_E93724DBCE34__INCLUDED_)
#define AFX_PINYIN_H__CB1CCE28_3AC4_485B_B791_E93724DBCE34__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#if 1
#pragma warning(disable:4786)
#endif
#include <string>
using namespace std;
class CPinYin
{
private:
CPinYin();
virtual ~CPinYin();
public:
static bool Initialize(const char *lut);
static string GetSpellByAscii(int ascii);
static string GetSpell(const char * ch);
static string GetFullSpell(const char *szIn);
public:
};
#endif // !defined(AFX_PINYIN_H__CB1CCE28_3AC4_485B_B791_E93724DBCE34__INCLUDED_)
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?