// File : dbuffer.h // Coded by : Scotte // History : Created 14/03/00 19:58:37 // // Description : Creating and updating a double buffer // Notes : None #ifndef _DBUFFER_H_ #define _DBUFFER_H_ #include typedef struct { DRAWENV drawenv; DISPENV dispenv; GsOT *ot; PACKET *pb; }sDBUFFER; void DBUFFER_Set(const RECT *,const u_hword,const u_hword); void DBUFFER_SetOT(GsOT *); void DBUFFER_SetPB(PACKET *,const u_word); void DBUFFER_SetBG(const u_byte,const u_byte,const u_byte); u_word DBUFFER_Swap(void); GsOT *DBUFFER_CurrentOT(void); #endif