|
|
| version 1.5, 2003/11/04 15:44:59 | version 1.7, 2005/02/16 09:31:55 |
|---|---|
| Line 6 enum { | Line 6 enum { |
| }; | }; |
| typedef struct { | typedef struct { |
| BYTE *ptr; | UINT8 *ptr; |
| int xalign; | int xalign; |
| int yalign; | int yalign; |
| int width; | int width; |
| Line 32 enum { | Line 32 enum { |
| }; | }; |
| typedef struct { | typedef struct { |
| BYTE flag; | UINT8 flag; |
| BYTE bpp; | UINT8 bpp; |
| BYTE allflash; | UINT8 allflash; |
| BYTE palchanged; | UINT8 palchanged; |
| } SCRNMNG; | } SCRNMNG; |
| Line 46 extern "C" { | Line 46 extern "C" { |
| extern SCRNMNG scrnmng; // マクロ用 | extern SCRNMNG scrnmng; // マクロ用 |
| void scrnmng_initialize(void); | void scrnmng_initialize(void); |
| BOOL scrnmng_create(BYTE scrnmode); | BRESULT scrnmng_create(UINT8 scrnmode); |
| void scrnmng_destroy(void); | void scrnmng_destroy(void); |
| void scrnmng_setwidth(int posx, int width); | void scrnmng_setwidth(int posx, int width); |
| void scrnmng_setextend(int extend); | void scrnmng_setextend(int extend); |
| void scrnmng_setheight(int posy, int height); | void scrnmng_setheight(int posy, int height); |
| #define scrnmng_setbpp(commendablebpp) | |
| const SCRNSURF *scrnmng_surflock(void); | const SCRNSURF *scrnmng_surflock(void); |
| void scrnmng_surfunlock(const SCRNSURF *surf); | void scrnmng_surfunlock(const SCRNSURF *surf); |
| void scrnmng_update(void); | void scrnmng_update(void); |