📄 epocmisc.h
字号:
/** @file epocmisc.h * * Miscellaneous Symbian OS funtions and definitions for PuTTY * * Copyright 2002 Petteri Kangaslampi * * See license.txt for full copyright and license information.*/#ifndef __EPOCMISC_H__#define __EPOCMISC_H__/* Disable some warnings when compiling the original PuTTY C source code. The Symbian build tools run Visual C at warning level 4, and the code isn't really written for that... */#ifndef __cplusplus#ifdef __WINS__#pragma warning(disable : 4127) /* conditional expression is constant */#pragma warning(disable : 4100) /* unreferenced formal parameter */#pragma warning(disable : 4057) /* XX differs in indirection to slightly different base types from YY */#pragma warning(disable : 4244) /* conversion from X to Y, possible loss of data */#endif#endif#ifdef __cplusplusextern "C" {#endiftypedef unsigned int DWORD;typedef wchar_t WCHAR;typedef unsigned char BYTE;#ifndef min#define min(x,y) ((x) <= (y) ? (x) : (y))#define max(x,y) ((x) >= (y) ? (x) : (y))#endif#define CP_ACP 0x12345678DWORD GetTickCount();unsigned GetCaretBlinkTime(); #ifdef __cplusplus}#endif#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -