rmbasic.h
来自「EM8511s中使用的avi播放器」· C头文件 代码 · 共 22 行
H
22 行
#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 + =
减小字号Ctrl + -
显示快捷键?