mirror of
https://github.com/zeldaret/ss.git
synced 2024-12-12 07:45:51 +00:00
26af4db82d
* update from dtk-template and start work towards using clangd * include <a> -> "a" * Update build.yml * remove/add non-trivial class in union warning
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
|