mirror of
https://github.com/zeldaret/ss
synced 2026-05-25 07:23:00 -04:00
27 lines
491 B
C
27 lines
491 B
C
/**
|
|
* References: Dolphin Emulator, Retro Modding Wiki, vgmstream
|
|
*/
|
|
|
|
#ifndef RVL_SDK_PUBLIC_AX_H
|
|
#define RVL_SDK_PUBLIC_AX_H
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#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>
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif
|