📄 widechar.h
字号:
/*****************************************************************************
WideChar
--------
Some routines to work with UNICODE strings.
by yoda
WWW: y0da.cjb.net
E-mail: LordPE@gmx.net
You are allowed to use this source code in your own projects if you mention
my name.
*****************************************************************************/
#ifndef __WideChar_h__
#define __WideChar_h__
#include <windows.h>
//
// WideChar class
//
class WideChar
{
public:
WideChar();
~WideChar();
static BOOL SingleToWideCharStr(IN PSTR szStr, OUT PWSTR szWideStrBuff, IN DWORD dwcBuff);
static BOOL WideToSingleCharStr(IN PWSTR szWideStr, OUT PSTR szStrBuff, IN DWORD dwcBuff);
};
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -