mirror of
https://github.com/ACreTeam/ac-decomp
synced 2026-09-06 01:48:16 -04:00
Implement gfxalloc
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
#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
|
||||
Reference in New Issue
Block a user