1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
|
#ifndef _XFIREWORKS_DispP_h_INCLUDED_
#define _XFIREWORKS_DispP_h_INCLUDED_
#include "Disp.h"
typedef struct _Disp {
Display * display;
int screen;
Window root_window;
Pixmap pixmap;
Colormap colormap;
int width, height;
unsigned int depth;
int direct_draw;
} _Disp;
/*****************************************************************************/
/* γγγΎγ§ */
/*****************************************************************************/
#endif
/*****************************************************************************/
/* End of File. */
/*****************************************************************************/
|