mirror of
https://github.com/projectPiki/pikmin2.git
synced 2024-12-01 01:00:33 +00:00
393dcd1dba
requested by @intns
26 lines
404 B
C
26 lines
404 B
C
#ifndef _VSFIFO_H
|
|
#define _VSFIFO_H
|
|
|
|
#include "types.h"
|
|
#include "Dolphin/os.h"
|
|
#include "Dolphin/gx.h"
|
|
|
|
struct VSFifo {
|
|
VSFifo(size_t size);
|
|
|
|
virtual ~VSFifo(); // _08
|
|
|
|
void becomeCurrent();
|
|
|
|
static bool isGPActive(); // should be weak
|
|
|
|
static u8 mGpStatus[5];
|
|
|
|
// _00 VTBL
|
|
GXFifoObj* mFifo; // _04
|
|
void* mBase; // _08
|
|
u32 mSize; // _0C
|
|
u8 _10[0xC]; // _10, unknown
|
|
};
|
|
|
|
#endif |