mirror of
https://github.com/PrimeDecomp/prime.git
synced 2025-12-09 09:47:42 +00:00
@@ -3,8 +3,22 @@
|
||||
|
||||
#include "types.h"
|
||||
|
||||
// TODO: likely comes from dolphin sdk
|
||||
enum ECardSlot { kCS_SlotA, kCS_SlotB };
|
||||
enum ECardResult { k_READY };
|
||||
struct FileHandle {};
|
||||
|
||||
class CMemoryCardSys {
|
||||
public:
|
||||
struct CardFileHandle {
|
||||
ECardSlot slot;
|
||||
FileHandle handle;
|
||||
CardFileHandle(ECardSlot slot) : slot(slot) {}
|
||||
int getFileNo() const;
|
||||
};
|
||||
|
||||
struct CCardFileInfo {};
|
||||
|
||||
CMemoryCardSys();
|
||||
~CMemoryCardSys();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user