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