mapp_bitmap.h

来自「mstar 776 开发的车载dvd」· C头文件 代码 · 共 48 行

H
48
字号

#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 + =
减小字号Ctrl + -
显示快捷键?