add structure missing from last commit

This commit is contained in:
Sam Hegarty
2012-02-16 21:49:19 +13:00
parent 9a233be9c6
commit 8d9fee4d9e

View File

@@ -23,6 +23,13 @@ typedef struct PspGeContext {
unsigned int context[512];
} PspGeContext;
/** Structure storing a stack (for CALL/RET) */
typedef struct
{
/** The stack buffer */
unsigned int stack[8];
} SceGeStack;
/** Typedef for a GE callback */
typedef void (*PspGeCallback)(int id, void *arg);