📄 rmbasic.h
字号:
#ifndef _RMBASIC_H#define _RMBASIC_Htypedef unsigned char RMuint8;typedef unsigned short RMuint16;typedef unsigned long RMuint32;typedef char RMint8;typedef short int RMint16;typedef long int RMint32;#ifdef _WIN32typedef unsigned __int64 RMuint64;typedef __int64 RMint64;typedef unsigned char RMbool;#elsetypedef unsigned long long RMuint64;typedef long long RMint64;typedef int RMbool;#endif#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -