--- np2/vram/sdraw.h 2003/10/16 17:58:13 1.1 +++ np2/vram/sdraw.h 2005/03/05 11:58:03 1.4 @@ -1,14 +1,14 @@ typedef struct { -const BYTE *src; -const BYTE *src2; - BYTE *dst; +const UINT8 *src; +const UINT8 *src2; + UINT8 *dst; int width; int xbytes; int y; int xalign; int yalign; - BYTE dirty[SURFACE_WIDTH]; + UINT8 dirty[SURFACE_HEIGHT]; } _SDRAW, *SDRAW; typedef void (SCRNCALL * SDRAWFN)(SDRAW sdraw, int maxy); @@ -20,6 +20,10 @@ extern "C" { const SDRAWFN *sdraw_getproctbl(const SCRNSURF *surf); +#if defined(SUPPORT_PC9821) +const SDRAWFN *sdraw_getproctblex(const SCRNSURF *surf); +#endif + #ifdef __cplusplus } #endif