📄 types.h
字号:
/*
Robot Interface
(C) 2006 Jason Hunt
nulluser@gmail.com
File: types.h
*/
#ifndef TYPES_H
#define TYPES_H
#define program_name "CamServer (C) 2006 Jason Hunt"
#define MAX_MESSAGE 1024
// Interface to windows colors
typedef struct color_type
{
unsigned char b, g, r, pad;
};
// Basic color defines
const color_type black = {0, 0, 0, 0};
const color_type white = {255, 255, 255, 0};
const color_type red = {0, 0, 255, 0};
const color_type green = {0, 255, 0, 0};
const color_type blue = {255, 0, 0, 0};
const color_type blue1 = {230, 30, 30, 0};
const color_type blue2 = {180, 10, 10, 0};
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -