?? l_allbmp.h
字號(hào):
/*
漏空函數(shù)
駱文超 于1997年2月制
*/
#include "stdafx.h"
#include <stdio.h>
#include "ddapi.h"
#define START_COLOR_NUMBER 75 //變色的開(kāi)始顏色號(hào);
#define END_COLOR_NUMBER 85 //變色結(jié)束的顏色號(hào);
#define BUFFERS_WIDTH 255 //buffers的寬度等于圖片最大的寬度
class CPicture_imageall
{
private:
FILE * compress_file; //壓縮文件
FILE * index_file; //索引文件
char * compress_buf; //數(shù)據(jù)BUFFERS
int * index_buf; //索引偏移量
char screen_buffers [BUFFERS_WIDTH];
public:
//打開(kāi)x壓縮文件;
void image_open_compress (char compress_file_name[20]);
//關(guān)閉壓縮文件;
void image_close_compress (void);
//打開(kāi)索引文件;
void image_open_index (char index_file_name[20]);
//關(guān)閉索引文件;
void image_close_index (void);
/*
漏空貼函數(shù):
short x:圖片的左上角坐標(biāo);
short y:圖片的右上角坐標(biāo);
short screen_width:屏幕的寬度;
short * &screen_point:屏幕的指針;
short color_variable:顏色的偏移量;
*/
//void All_image (short x,short y,short screen_width,
// char * screen_point,short picture_number);
BOOL LoadBitmap( CDDSurface *pSurface, int index ,int bTrans=0);
};
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -