📄 mapp_bitmap.h
字号:
#ifndef MAPP_BITMAP_H
#define MAPP_BITMAP_H
#include "DataType.h"
#include "msAPI_OSD.h"
#ifdef MAPP_LOADBITMAP_C
#define INTERFACE
#else
#define INTERFACE extern
#endif
#define LOCK_BMP_WIDTH 0x40
#define LOCK_BMP_HEIGHT 0X40
#define LOCK_BMP_TOTAL_BYTE (LOCK_BMP_WIDTH * LOCK_BMP_HEIGHT * 2)
#define LOCK_SMALL_BMP_WIDTH 0x18
#define LOCK_SMALL_BMP_HEIGHT 0X18
#define LOCK_SMALL_BMP_TOTAL_BYTE (LOCK_SMALL_BMP_WIDTH * LOCK_SMALL_BMP_HEIGHT * 2)
//Input bitmap
#define PICTURE_BMP_WIDTH 0x40
#define PICTURE_BMP_HEIGHT 0x40
#define PICTURE_BMP_TOTAL_BYTE (PICTURE_BMP_WIDTH * PICTURE_BMP_HEIGHT * 2)
//Mute bitmap
#define MUTE_BMP_WIDTH 0x20
#define MUTE_BMP_HEIGHT 0x20
#define MUTE_BMP_TOTAL_BYTE (MUTE_BMP_WIDTH * MUTE_BMP_HEIGHT * 2)
//Clock bitmap
#define CLOCK_BMP_WIDTH 0x20
#define CLOCK_BMP_HEIGHT 0x20
#define CLOCK_BMP_TOTAL_BYTE (CLOCK_BMP_WIDTH * CLOCK_BMP_HEIGHT * 2)
// Volume Bitmap
#define VOLUME_BMP_WIDTH 0x18
#define VOLUME_BMP_HEIGHT 0x18
#define VOLUME_BMP_TOTAL_BYTE (VOLUME_BMP_WIDTH * VOLUME_BMP_HEIGHT * 2)
#undef INTERFACE
#endif /*~MAPP_BITMAP_H*/
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -