?? ascii.h
字號:
//
// ASCII.H
//
// Source code from:
//
// Serial Communications: A C++ Developer's Guide, 2nd Edition
// by Mark Nelson, IDG Books, 1999
//
// Please see the book for information on usage.
//
#ifndef _ASCII_DOT_H
#define _ASCII_DOT_H
const int BS = 8;
const int LF = 10;
const int CR = 13;
const int DLE = 16;
const int XON = 17;
const int XOFF = 19;
const int CAN = 24;
const int ESC = 27;
#endif // #ifndef _ASCII_DOT_H
// ******************** END OF ASCII.H *******************
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -