mirror of
https://github.com/zeldaret/tp
synced 2026-05-23 06:54:28 -04:00
2453c0e333
* move dolsdk2004 over * cleanup some temp work * finish and cleanup gf * b_bh done * d_a_e_mb done
27 lines
470 B
C
27 lines
470 B
C
#ifndef _DOLPHIN_AM_H_
|
|
#define _DOLPHIN_AM_H_
|
|
|
|
#include <dolphin/types.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef void (*AMCallback)(char* path);
|
|
|
|
void* AMLoadFile(char* path, u32* length);
|
|
u32 AMPush(char* path);
|
|
u32 AMPushData(void* buffer, u32 length);
|
|
void AMPop(void);
|
|
u32 AMGetZeroBuffer(void);
|
|
u32 AMGetReadStatus(void);
|
|
u32 AMGetFreeSize(void);
|
|
u32 AMGetStackPointer(void);
|
|
void AMInit(u32 aramBase, u32 aramBytes);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|