mirror of
https://github.com/ACreTeam/ac-decomp
synced 2026-05-31 17:01:39 -04:00
12 lines
369 B
C
12 lines
369 B
C
#ifndef _DOLPHIN_CARDBIOS_H_
|
|
#define _DOLPHIN_CARDBIOS_H_
|
|
|
|
void CARDInit(void);
|
|
s32 CARDGetResultCode(s32 chan);
|
|
s32 CARDFreeBlocks(s32 chan, s32 *byteNotUsed, s32 *filesNotUsed);
|
|
long CARDGetEncoding(long chan, unsigned short * encode);
|
|
long CARDGetMemSize(long chan, unsigned short * size);
|
|
s32 CARDGetSectorSize(s32 chan, u32 *size);
|
|
|
|
#endif // _DOLPHIN_CARDBIOS_H_
|