2023-12-24 16:35:03 +00:00
|
|
|
/**
|
|
|
|
* References: Dolphin Emulator, Retro Modding Wiki, vgmstream
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef RVL_SDK_PUBLIC_AX_H
|
|
|
|
#define RVL_SDK_PUBLIC_AX_H
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2024-10-16 19:36:02 +00:00
|
|
|
#include "rvl/AX/AX.h"
|
|
|
|
#include "rvl/AX/AXAlloc.h"
|
|
|
|
#include "rvl/AX/AXAux.h"
|
|
|
|
#include "rvl/AX/AXCL.h"
|
|
|
|
#include "rvl/AX/AXComp.h"
|
|
|
|
#include "rvl/AX/AXOut.h"
|
|
|
|
#include "rvl/AX/AXPB.h"
|
|
|
|
#include "rvl/AX/AXProf.h"
|
|
|
|
#include "rvl/AX/AXSPB.h"
|
|
|
|
#include "rvl/AX/AXVPB.h"
|
|
|
|
#include "rvl/AX/DSPCode.h"
|
2023-12-24 16:35:03 +00:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif
|