复制代码- /*BMP C file converted from BMP file*/
- #include "base.h"
- ALIGN4 const unsigned char a[] = {
- /* image header, 20 bytes */
- #ifdef WIN32
- 0x18,0x00,0x00,0x00,0x18,0x58,0x02,0x00,
- #else
- 0x00,0x00,0x00,0x18,0x00,0x02,0x58,0x18,
- #endif
- #ifdef WIN32
- 240, 0, 64, 1, 0, 0,224, 1, 16, 0, 1, 0, 0, 0, 0, 0,
- #else
- 0,240, 1, 64, 0, 0, 1,224, 0, 16, 0, 1, 0, 0, 0, 0,
- #endif
-
- /* scan line 1 */
-
- #ifdef WIN32
|