X-Git-Url: https://hackdaworld.org/gitweb/?a=blobdiff_plain;f=dfbapi.h;h=8ffacc8ec76467736c50b8b7c50a96ac8d3a9c7c;hb=1bb70a8dc0de03a26a0d005e6056d893381d8914;hp=54ab56b3210cad1f840bc4ac5175f73963619798;hpb=ac3628afff01679dfa9da69cf010764970e40be7;p=physik%2Fnlsop.git diff --git a/dfbapi.h b/dfbapi.h index 54ab56b..8ffacc8 100644 --- a/dfbapi.h +++ b/dfbapi.h @@ -5,7 +5,12 @@ * */ +#ifndef DFBAPI_H +#define DFBAPI_H + +#ifdef USE_DFB_API #include +#endif /* two dimensional lattice */ @@ -24,11 +29,15 @@ typedef struct __d2_lattice unsigned char *status; /* status&1 -> red, else blue */ int *extra; /* store extra values */ void *v_ptr; /* void ptr, for any use */ +#ifdef USE_DFB_API IDirectFB *dfb; IDirectFBSurface *p_surface; IDirectFBFont *font; IDirectFBInputDevice *keyboard; IDirectFBEventBuffer *k_buffer; +#else + char *foo1,*foo2,foo3,foo4; +#endif } d2_lattice; typedef struct __d3_lattice @@ -42,19 +51,27 @@ typedef struct __d3_lattice unsigned char *status; /* status&1 -> red, else blue */ int *extra; /* store extra values */ void *v_ptr; /* void ptr, for any use */ +#ifdef USE_DFB_API IDirectFB *dfb; IDirectFBSurface *p_surface; IDirectFBFont *font; IDirectFBInputDevice *keyboard; IDirectFBEventBuffer *k_buffer; +#else + char *foo1,*foo2,foo3,foo4; +#endif } d3_lattice; /* function prototypes */ -int d2_lattice_init(int *argc,char **argv,d2_lattice *d2_l,int x,int y); +int d2_lattice_init(int *argc,char **argv,d2_lattice *d2_l); int d2_lattice_release(d2_lattice *d2_l); int d2_lattice_draw(d2_lattice *d2_l,int x,int y,int arg_c,char **arg_v); -int d3_lattice_init(int *argc,char **argv,d3_lattice *d3_l,int x,int y,int z); +int d3_lattice_init(int *argc,char **argv,d3_lattice *d3_l); int d3_lattice_release(d3_lattice *d3_l); int d3_lattice_draw(d3_lattice *d3_l,int x,int y,int z,int arg_c,char **arg_v); +int d2_event_init(d2_lattice *d2_l); +int d3_event_init(d3_lattice *d3_l); +int scan_event(d3_lattice *d3_l,int *x,int *y,int *z,int *q,int *esc); int dx_lattice_get_color(unsigned char *status,unsigned char *r,unsigned char *g,unsigned char *b); +#endif /* DFBAPI_H */