mirror of
https://github.com/encounter/ac-decomp.git
synced 2026-03-30 10:57:04 -07:00
20 lines
285 B
C
20 lines
285 B
C
#ifndef GFXALLOC_H
|
|
#define GFXALLOC_H
|
|
|
|
#include "types.h"
|
|
#include "PR/mbi.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
extern Gfx* gfxopen(Gfx* gfxp);
|
|
extern Gfx* gfxclose(Gfx* gfxp, Gfx* gfxp_new);
|
|
extern Gfx* gfxalloc(Gfx** gfxpp, size_t size);
|
|
|
|
#ifdef __cplusplus
|
|
};
|
|
#endif
|
|
|
|
#endif
|