Fixed includes for libs (no longer need lib/ folder prefix)

This commit is contained in:
Elijah Thomas
2023-08-12 14:15:55 -04:00
parent 683dc91a53
commit 93f003b87b
160 changed files with 408 additions and 322 deletions
+27 -1
View File
@@ -3,7 +3,7 @@ LIBS = [
{
"lib": "SS",
"mw_version": "Wii/1.7",
"cflags": "-proc gekko -Cpp_exceptions off -RTTI off -O4,p -fp hard, -inline noauto, -enum int, -str reuse -I- -i include",
"cflags": "-proc gekko -Cpp_exceptions off -RTTI off -O4,p -fp hard, -inline noauto, -enum int, -str reuse -I- -i include -i include/lib",
"host": False,
"objects": [
["Runtime/__init_cpp_exceptions.cpp", False],
@@ -19,6 +19,32 @@ LIBS = [
["toBeSorted/save_manager.cpp", False],
],
},
{
"lib": "RVL",
"mw_version": "Wii/1.7", # FIXME: Change Compiler+flags Probably
"cflags": "-proc gekko -Cpp_exceptions off -RTTI off -O4,p -fp hard, -inline noauto, -enum int, -str reuse -I- -i include -i include/lib",
"host": False,
"objects": [
["lib/rvl/CX/cx.c", False],
],
},
{
"lib": "nw4r",
"mw_version": "Wii/1.7", # FIXME: Change Compiler+flags Probably
"cflags": "-proc gekko -Cpp_exceptions off -RTTI off -O4,p -fp hard, -inline noauto, -enum int, -str reuse -I- -i include -i include/lib",
"host": False,
"objects": [
],
},
{
"lib": "egg",
"mw_version": "Wii/1.7", # FIXME: Change Compiler+flags Probably
"cflags": "-proc gekko -Cpp_exceptions off -RTTI off -O4,p -fp hard, -inline noauto, -enum int, -str reuse -I- -i include -i include/lib",
"host": False,
"objects": [
["lib/egg/core/eggStream.cpp", False],
],
}
]
VERSIONS = [
"SOUE01", # 0
+1 -1
View File
@@ -1,6 +1,6 @@
#pragma once
#include <lib/egg/core/eggHeap.h>
#include <egg/core/eggHeap.h>
class dHeap {
public:
+1 -1
View File
@@ -4,7 +4,7 @@
// and the Skyward Sword Ghidra database. Comments and docs can be seen above. stripped in this file for easier looking
#include <types.h>
#include <lib/egg/core/eggFrmHeap.h>
#include <egg/core/eggFrmHeap.h>
#include <f/f_profile.h>
#include <f/f_base_id.h>
#include <f/f_helper_unk.h>
+2 -2
View File
@@ -1,7 +1,7 @@
#pragma once
#include <lib/egg/egg_types.h>
#include <lib/egg/core/eggHeap.h>
#include <egg/egg_types.h>
#include <egg/core/eggHeap.h>
namespace EGG {
class IAudioMgr {
+7 -8
View File
@@ -1,17 +1,16 @@
#pragma once
// this file was ported from https://github.com/riidefi/mkw/blob/master/source/egg/core/eggAllocator.hpp
#include <rvl/MEM.h>
#include <egg/core/eggHeap.h>
#include <lib/rvl/MEM.h>
#include <lib/egg/core/eggHeap.h>
// Ghidra: Allocator
// size: 0x1C
// .text: [0x804952d0, 0x804953f0]
// .data: [0x8056e8d0, 0x8056e8e8] # Allocator vtable
// sdata2: [0x8057f2f0, 0x8057f2f8] # MEMAllocator func table
namespace EGG {
class Heap;
// Ghidra: Allocator
// size: 0x1C
// .text: [0x804952d0, 0x804953f0]
// .data: [0x8056e8d0, 0x8056e8e8] # Allocator vtable
// sdata2: [0x8057f2f0, 0x8057f2f8] # MEMAllocator func table
class Allocator : public MEMAllocator {
public:
Allocator(Heap* heap, s32 align);
+1 -1
View File
@@ -2,7 +2,7 @@
// This file was adapted from https://github.com/riidefi/mkw/blob/master/source/egg/core/eggDisposer.hpp
#include <lib/nw4r/ut/utList.h>
#include <nw4r/ut/utList.h>
#include <types.h>
namespace EGG {
+1 -1
View File
@@ -1,6 +1,6 @@
#pragma once
#include <lib/egg/core/eggHeap.h>
#include <egg/core/eggHeap.h>
// [TODO: extend this]
+6 -6
View File
@@ -3,12 +3,12 @@
// This file is ported from https://github.com/riidefi/mkw/blob/master/source/egg/core/eggHeap.hpp
#include <types.h>
#include <lib/rvl/MEM.h>
#include <lib/rvl/OS.h>
#include <lib/egg/core/eggAllocator.h>
#include <lib/egg/core/eggDisposer.h>
#include <lib/nw4r/ut/utList.h>
#include <lib/egg/core/eggThread.h>
#include <rvl/MEM.h>
#include <rvl/OS.h>
#include <egg/core/eggAllocator.h>
#include <egg/core/eggDisposer.h>
#include <nw4r/ut/utList.h>
#include <egg/core/eggThread.h>
#ifndef HEAP_PRIVATE
#define HEAP_PRIVATE protected
+1 -1
View File
@@ -1,6 +1,6 @@
#pragma once
#include <lib/nw4r/nw4r_types.h>
#include <nw4r/nw4r_types.h>
namespace nw4r
{
+1 -1
View File
@@ -1,6 +1,6 @@
#pragma once
#include <lib/nw4r/nw4r_types.h>
#include <nw4r/nw4r_types.h>
namespace nw4r
{
+2 -2
View File
@@ -4,8 +4,8 @@
extern "C" {
#endif
#include <lib/rvl/AI/ai.h>
#include <lib/rvl/AI/ai_hardware.h>
#include <rvl/AI/ai.h>
#include <rvl/AI/ai_hardware.h>
#ifdef __cplusplus
}
+1 -1
View File
@@ -1,6 +1,6 @@
#ifndef RVL_SDK_AI_H
#define RVL_SDK_AI_H
#include <lib/rvl/types.h>
#include <rvl/types.h>
#ifdef __cplusplus
extern "C" {
#endif
+1 -1
View File
@@ -1,6 +1,6 @@
#ifndef RVL_SDK_AI_HARDWARE_H
#define RVL_SDK_AI_HARDWARE_H
#include <lib/rvl/types.h>
#include <rvl/types.h>
#ifdef __cplusplus
extern "C" {
#endif
+1 -1
View File
@@ -4,7 +4,7 @@
extern "C" {
#endif
#include <lib/rvl/ARC/arc.h>
#include <rvl/ARC/arc.h>
#ifdef __cplusplus
}
+1 -1
View File
@@ -1,6 +1,6 @@
#ifndef RVL_SDK_ARC_H
#define RVL_SDK_ARC_H
#include <lib/rvl/types.h>
#include <rvl/types.h>
#ifdef __cplusplus
extern "C" {
#endif
+1 -1
View File
@@ -4,7 +4,7 @@
extern "C" {
#endif
#include <lib/rvl/BASE/PPCArch.h>
#include <rvl/BASE/PPCArch.h>
#ifdef __cplusplus
}
+1 -1
View File
@@ -1,6 +1,6 @@
#ifndef RVL_SDK_PPC_ARCH_H
#define RVL_SDK_PPC_ARCH_H
#include <lib/rvl/types.h>
#include <rvl/types.h>
#ifdef __cplusplus
extern "C" {
#endif
+1 -1
View File
@@ -4,7 +4,7 @@
extern "C" {
#endif
#include <lib/rvl/CARD/CARD.h>
#include <rvl/CARD/CARD.h>
#ifdef __cplusplus
}
+1 -1
View File
@@ -1,6 +1,6 @@
#ifndef RVL_SDK_CARD_H
#define RVL_SDK_CARD_H
#include <lib/rvl/types.h>
#include <rvl/types.h>
#ifdef __cplusplus
extern "C" {
#endif
+1 -1
View File
@@ -4,7 +4,7 @@
extern "C" {
#endif
#include <lib/rvl/CNT/cnt.h>
#include <rvl/CNT/cnt.h>
#ifdef __cplusplus
}
+2 -2
View File
@@ -1,7 +1,7 @@
#ifndef RVL_SDK_CNT_H
#define RVL_SDK_CNT_H
#include <lib/rvl/ARC.h>
#include <lib/rvl/types.h>
#include <rvl/ARC.h>
#include <rvl/types.h>
#ifdef __cplusplus
extern "C" {
#endif
+61
View File
@@ -0,0 +1,61 @@
#pragma once
#include <types.h>
// .text: [0x803cee90, 0x803d0b20]
#ifdef __cplusplus
extern "C" {
#endif
typedef struct CXUncompContextLZ {
u8 _[0x18];
} CXUncompContextLZ;
typedef struct CXUncompContextRL {
u8 _[0x10];
} CXUncompContextRL;
typedef struct CXUncompContextLH {
// u8 _[0x8a8];
// taken from xenoblade
u8* destp;
s32 destCount;
s32 forceDestCount;
u16 huffTable9[1 << (9 + 1)];
u16 huffTable12[1 << (5 + 1)];
u16* nodep;
s32 tableSize9;
s32 tableSize12;
u32 tableIdx;
u32 stream;
u32 stream_len;
u16 length;
s8 offset_bits;
u8 headerSize;
} CXUncompContextLH;
typedef struct CXUncompContextLRC {
u8 _[0x902C];
} CXUncompContextLRC;
// TODO(Zeldex) : Fix Params
/* 803cee90 */ void CXInitUncompContextRL();
/* 803ceec0 */ void CXInitUncompContextLZ();
/* 803cef00 */ void CXReadUncompRL();
/* 803cf1b0 */ void CXReadUncompLZ();
/* 803cf570 */ void CXInitUncompContextLH();
/* 803cf5b0 */ void CXReadUncompLH();
/* 803cfda0 */ void RCAddCount_();
/* 803cff90 */ void RCSearch_();
/* 803d0030 */ void RCGetData_();
/* 803d0140 */ void CXInitUncompContextLRC();
/* 803d0390 */ void CXReadUncompLRC();
/* 803d0790 */ void CXGetUncompressedSize();
/* 803d07d0 */ void CXUncompressLZ();
/* 803d0920 */ void CXiLHVerifyTable();
#ifdef __cplusplus
}
#endif
+1 -1
View File
@@ -4,7 +4,7 @@
extern "C" {
#endif
#include <lib/rvl/DB/db.h>
#include <rvl/DB/db.h>
#ifdef __cplusplus
}
+1 -1
View File
@@ -1,6 +1,6 @@
#ifndef RVL_SDK_DB_H
#define RVL_SDK_DB_H
#include <lib/rvl/types.h>
#include <rvl/types.h>
#ifdef __cplusplus
extern "C" {
#endif
+4 -4
View File
@@ -4,10 +4,10 @@
extern "C" {
#endif
#include <lib/rvl/DSP/dsp.h>
#include <lib/rvl/DSP/dsp_debug.h>
#include <lib/rvl/DSP/dsp_hardware.h>
#include <lib/rvl/DSP/dsp_task.h>
#include <rvl/DSP/dsp.h>
#include <rvl/DSP/dsp_debug.h>
#include <rvl/DSP/dsp_hardware.h>
#include <rvl/DSP/dsp_task.h>
#ifdef __cplusplus
}
+1 -1
View File
@@ -1,6 +1,6 @@
#ifndef RVL_SDK_DSP_H
#define RVL_SDK_DSP_H
#include <lib/rvl/types.h>
#include <rvl/types.h>
#ifdef __cplusplus
extern "C" {
#endif
+1 -1
View File
@@ -1,6 +1,6 @@
#ifndef RVL_SDK_DSP_DEBUG_H
#define RVL_SDK_DSP_DEBUG_H
#include <lib/rvl/types.h>
#include <rvl/types.h>
#ifdef __cplusplus
extern "C" {
#endif
+1 -1
View File
@@ -1,6 +1,6 @@
#ifndef RVL_SDK_DSP_HARDWARE_H
#define RVL_SDK_DSP_HARDWARE_H
#include <lib/rvl/types.h>
#include <rvl/types.h>
#ifdef __cplusplus
extern "C" {
#endif
+1 -1
View File
@@ -1,6 +1,6 @@
#ifndef RVL_SDK_DSP_TASK_H
#define RVL_SDK_DSP_TASK_H
#include <lib/rvl/types.h>
#include <rvl/types.h>
#ifdef __cplusplus
extern "C" {
#endif
+5 -5
View File
@@ -4,11 +4,11 @@
extern "C" {
#endif
#include <lib/rvl/DVD/dvd.h>
#include <lib/rvl/DVD/dvd_broadway.h>
#include <lib/rvl/DVD/dvdfatal.h>
#include <lib/rvl/DVD/dvdfs.h>
#include <lib/rvl/DVD/dvdidutils.h>
#include <rvl/DVD/dvd.h>
#include <rvl/DVD/dvd_broadway.h>
#include <rvl/DVD/dvdfatal.h>
#include <rvl/DVD/dvdfs.h>
#include <rvl/DVD/dvdidutils.h>
#ifdef __cplusplus
}
+1 -1
View File
@@ -1,6 +1,6 @@
#ifndef RVL_SDK_DVD_H
#define RVL_SDK_DVD_H
#include <lib/rvl/types.h>
#include <rvl/types.h>
#ifdef __cplusplus
extern "C" {
#endif
+1 -1
View File
@@ -1,6 +1,6 @@
#ifndef RVL_SDK_DVD_BROADWAY_H
#define RVL_SDK_DVD_BROADWAY_H
#include <lib/rvl/types.h>
#include <rvl/types.h>
#ifdef __cplusplus
extern "C" {
#endif
+1 -1
View File
@@ -1,6 +1,6 @@
#ifndef RVL_SDK_DVD_FATAL_H
#define RVL_SDK_DVD_FATAL_H
#include <lib/rvl/types.h>
#include <rvl/types.h>
#ifdef __cplusplus
extern "C" {
#endif
+1 -1
View File
@@ -1,6 +1,6 @@
#ifndef RVL_SDK_DVD_FS_H
#define RVL_SDK_DVD_FS_H
#include <lib/rvl/types.h>
#include <rvl/types.h>
#ifdef __cplusplus
extern "C" {
#endif
+1 -1
View File
@@ -1,6 +1,6 @@
#ifndef RVL_SDK_DVD_ID_UTILS_H
#define RVL_SDK_DVD_ID_UTILS_H
#include <lib/rvl/types.h>
#include <rvl/types.h>
#ifdef __cplusplus
extern "C" {
#endif
+1 -1
View File
@@ -4,7 +4,7 @@
extern "C" {
#endif
#include <lib/rvl/ESP/esp.h>
#include <rvl/ESP/esp.h>
#ifdef __cplusplus
}
+3 -3
View File
@@ -1,8 +1,8 @@
#ifndef RVL_SDK_ESP_H
#define RVL_SDK_ESP_H
#include <lib/rvl/ARC.h>
#include <lib/rvl/IPC.h>
#include <lib/rvl/types.h>
#include <rvl/ARC.h>
#include <rvl/IPC.h>
#include <rvl/types.h>
#ifdef __cplusplus
extern "C" {
#endif
+4 -4
View File
@@ -4,10 +4,10 @@
extern "C" {
#endif
#include <lib/rvl/EXI/EXIBios.h>
#include <lib/rvl/EXI/EXICommon.h>
#include <lib/rvl/EXI/EXIHardware.h>
#include <lib/rvl/EXI/EXIUart.h>
#include <rvl/EXI/EXIBios.h>
#include <rvl/EXI/EXICommon.h>
#include <rvl/EXI/EXIHardware.h>
#include <rvl/EXI/EXIUart.h>
#ifdef __cplusplus
}
+2 -2
View File
@@ -1,7 +1,7 @@
#ifndef RVL_SDK_EXI_BIOS_H
#define RVL_SDK_EXI_BIOS_H
#include <lib/rvl/EXI/EXICommon.h>
#include <lib/rvl/types.h>
#include <rvl/EXI/EXICommon.h>
#include <rvl/types.h>
#ifdef __cplusplus
extern "C" {
#endif
+1 -1
View File
@@ -1,6 +1,6 @@
#ifndef RVL_SDK_EXI_COMMON_H
#define RVL_SDK_EXI_COMMON_H
#include <lib/rvl/types.h>
#include <rvl/types.h>
#ifdef __cplusplus
extern "C" {
#endif
+2 -2
View File
@@ -1,7 +1,7 @@
#ifndef RVL_SDK_EXI_HARDWARE_H
#define RVL_SDK_EXI_HARDWARE_H
#include <lib/rvl/EXI/EXICommon.h>
#include <lib/rvl/types.h>
#include <rvl/EXI/EXICommon.h>
#include <rvl/types.h>
#ifdef __cplusplus
extern "C" {
#endif
+2 -2
View File
@@ -1,7 +1,7 @@
#ifndef RVL_SDK_EXI_UART_H
#define RVL_SDK_EXI_UART_H
#include <lib/rvl/EXI/EXIBios.h>
#include <lib/rvl/types.h>
#include <rvl/EXI/EXIBios.h>
#include <rvl/types.h>
#ifdef __cplusplus
extern "C" {
#endif
+1 -1
View File
@@ -4,7 +4,7 @@
extern "C" {
#endif
#include <lib/rvl/FS/fs.h>
#include <rvl/FS/fs.h>
#ifdef __cplusplus
}
+2 -2
View File
@@ -1,7 +1,7 @@
#ifndef RVL_SDK_FS_H
#define RVL_SDK_FS_H
#include <lib/rvl/IPC.h>
#include <lib/rvl/types.h>
#include <rvl/IPC.h>
#include <rvl/types.h>
#ifdef __cplusplus
extern "C" {
#endif
+21 -21
View File
@@ -4,27 +4,27 @@
extern "C" {
#endif
#include <lib/rvl/GX/GXAttr.h>
#include <lib/rvl/GX/GXBump.h>
#include <lib/rvl/GX/GXDisplayList.h>
#include <lib/rvl/GX/GXDraw.h>
#include <lib/rvl/GX/GXFifo.h>
#include <lib/rvl/GX/GXFrameBuf.h>
#include <lib/rvl/GX/GXGeometry.h>
#include <lib/rvl/GX/GXHardware.h>
#include <lib/rvl/GX/GXHardwareBP.h>
#include <lib/rvl/GX/GXHardwareCP.h>
#include <lib/rvl/GX/GXHardwareXF.h>
#include <lib/rvl/GX/GXInit.h>
#include <lib/rvl/GX/GXInternal.h>
#include <lib/rvl/GX/GXLight.h>
#include <lib/rvl/GX/GXMisc.h>
#include <lib/rvl/GX/GXPixel.h>
#include <lib/rvl/GX/GXTev.h>
#include <lib/rvl/GX/GXTexture.h>
#include <lib/rvl/GX/GXTransform.h>
#include <lib/rvl/GX/GXTypes.h>
#include <lib/rvl/GX/GXVert.h>
#include <rvl/GX/GXAttr.h>
#include <rvl/GX/GXBump.h>
#include <rvl/GX/GXDisplayList.h>
#include <rvl/GX/GXDraw.h>
#include <rvl/GX/GXFifo.h>
#include <rvl/GX/GXFrameBuf.h>
#include <rvl/GX/GXGeometry.h>
#include <rvl/GX/GXHardware.h>
#include <rvl/GX/GXHardwareBP.h>
#include <rvl/GX/GXHardwareCP.h>
#include <rvl/GX/GXHardwareXF.h>
#include <rvl/GX/GXInit.h>
#include <rvl/GX/GXInternal.h>
#include <rvl/GX/GXLight.h>
#include <rvl/GX/GXMisc.h>
#include <rvl/GX/GXPixel.h>
#include <rvl/GX/GXTev.h>
#include <rvl/GX/GXTexture.h>
#include <rvl/GX/GXTransform.h>
#include <rvl/GX/GXTypes.h>
#include <rvl/GX/GXVert.h>
#ifdef __cplusplus
}
+2 -2
View File
@@ -1,7 +1,7 @@
#ifndef RVL_SDK_GX_ATTR_H
#define RVL_SDK_GX_ATTR_H
#include <lib/rvl/GX/GXTypes.h>
#include <lib/rvl/types.h>
#include <rvl/GX/GXTypes.h>
#include <rvl/types.h>
#ifdef __cplusplus
extern "C" {
#endif
+2 -2
View File
@@ -1,7 +1,7 @@
#ifndef RVL_SDK_GX_BUMP_H
#define RVL_SDK_GX_BUMP_H
#include <lib/rvl/GX/GXTypes.h>
#include <lib/rvl/types.h>
#include <rvl/GX/GXTypes.h>
#include <rvl/types.h>
#ifdef __cplusplus
extern "C" {
#endif
+2 -2
View File
@@ -1,7 +1,7 @@
#ifndef RVL_SDK_GX_DISPLAY_LIST_H
#define RVL_SDK_GX_DISPLAY_LIST_H
#include <lib/rvl/GX/GXHardware.h>
#include <lib/rvl/types.h>
#include <rvl/GX/GXHardware.h>
#include <rvl/types.h>
#ifdef __cplusplus
extern "C" {
#endif
+1 -1
View File
@@ -1,6 +1,6 @@
#ifndef RVL_SDK_GX_DRAW_H
#define RVL_SDK_GX_DRAW_H
#include <lib/rvl/types.h>
#include <rvl/types.h>
#ifdef __cplusplus
extern "C" {
#endif
+2 -2
View File
@@ -1,7 +1,7 @@
#ifndef RVL_SDK_GX_FIFO_H
#define RVL_SDK_GX_FIFO_H
#include <lib/rvl/GX/GXInternal.h>
#include <lib/rvl/types.h>
#include <rvl/GX/GXInternal.h>
#include <rvl/types.h>
#ifdef __cplusplus
extern "C" {
#endif
+1 -1
View File
@@ -1,6 +1,6 @@
#ifndef RVL_SDK_GX_FRAMEBUF_H
#define RVL_SDK_GX_FRAMEBUF_H
#include <lib/rvl/types.h>
#include <rvl/types.h>
#ifdef __cplusplus
extern "C" {
#endif
+2 -2
View File
@@ -1,7 +1,7 @@
#ifndef RVL_SDK_GX_GEOMETRY_H
#define RVL_SDK_GX_GEOMETRY_H
#include <lib/rvl/GX/GXTypes.h>
#include <lib/rvl/types.h>
#include <rvl/GX/GXTypes.h>
#include <rvl/types.h>
#ifdef __cplusplus
extern "C" {
#endif
+2 -2
View File
@@ -1,7 +1,7 @@
#ifndef RVL_SDK_GX_HARDWARE_H
#define RVL_SDK_GX_HARDWARE_H
#include <lib/rvl/GX/GXTypes.h>
#include <lib/rvl/types.h>
#include <rvl/GX/GXTypes.h>
#include <rvl/types.h>
#ifdef __cplusplus
extern "C" {
#endif
+2 -2
View File
@@ -1,7 +1,7 @@
#ifndef RVL_SDK_GX_HARDWARE_BP_H
#define RVL_SDK_GX_HARDWARE_BP_H
#include <lib/rvl/GX/GXTypes.h>
#include <lib/rvl/types.h>
#include <rvl/GX/GXTypes.h>
#include <rvl/types.h>
#ifdef __cplusplus
extern "C" {
#endif
+2 -2
View File
@@ -1,7 +1,7 @@
#ifndef RVL_SDK_GX_HARDWARE_CP_H
#define RVL_SDK_GX_HARDWARE_CP_H
#include <lib/rvl/GX/GXTypes.h>
#include <lib/rvl/types.h>
#include <rvl/GX/GXTypes.h>
#include <rvl/types.h>
#ifdef __cplusplus
extern "C" {
#endif
+2 -2
View File
@@ -1,7 +1,7 @@
#ifndef RVL_SDK_GX_HARDWARE_XF_H
#define RVL_SDK_GX_HARDWARE_XF_H
#include <lib/rvl/GX/GXTypes.h>
#include <lib/rvl/types.h>
#include <rvl/GX/GXTypes.h>
#include <rvl/types.h>
#ifdef __cplusplus
extern "C" {
#endif
+1 -1
View File
@@ -1,6 +1,6 @@
#ifndef RVL_SDK_GX_INIT_H
#define RVL_SDK_GX_INIT_H
#include <lib/rvl/types.h>
#include <rvl/types.h>
#ifdef __cplusplus
extern "C" {
#endif
+2 -2
View File
@@ -1,7 +1,7 @@
#ifndef RVL_SDK_GX_INTERNAL_H
#define RVL_SDK_GX_INTERNAL_H
#include <lib/rvl/GX/GXTypes.h>
#include <lib/rvl/types.h>
#include <rvl/GX/GXTypes.h>
#include <rvl/types.h>
#ifdef __cplusplus
extern "C" {
#endif
+3 -3
View File
@@ -1,8 +1,8 @@
#ifndef RVL_SDK_GX_LIGHT_H
#define RVL_SDK_GX_LIGHT_H
#include <lib/rvl/GX/GXInternal.h>
#include <lib/rvl/GX/GXTypes.h>
#include <lib/rvl/types.h>
#include <rvl/GX/GXInternal.h>
#include <rvl/GX/GXTypes.h>
#include <rvl/types.h>
#ifdef __cplusplus
extern "C" {
#endif
+1 -1
View File
@@ -1,6 +1,6 @@
#ifndef RVL_SDK_GX_MISC_H
#define RVL_SDK_GX_MISC_H
#include <lib/rvl/types.h>
#include <rvl/types.h>
#ifdef __cplusplus
extern "C" {
#endif
+3 -3
View File
@@ -1,8 +1,8 @@
#ifndef RVL_SDK_GX_PIXEL_H
#define RVL_SDK_GX_PIXEL_H
#include <lib/rvl/GX/GXTypes.h>
#include <lib/rvl/MTX.h>
#include <lib/rvl/types.h>
#include <rvl/GX/GXTypes.h>
#include <rvl/MTX.h>
#include <rvl/types.h>
#ifdef __cplusplus
extern "C" {
#endif
+2 -2
View File
@@ -1,7 +1,7 @@
#ifndef RVL_SDK_GX_TEV_H
#define RVL_SDK_GX_TEV_H
#include <lib/rvl/GX/GXTypes.h>
#include <lib/rvl/types.h>
#include <rvl/GX/GXTypes.h>
#include <rvl/types.h>
#ifdef __cplusplus
extern "C" {
#endif
+2 -2
View File
@@ -1,7 +1,7 @@
#ifndef RVL_SDK_GX_TEXTURE_H
#define RVL_SDK_GX_TEXTURE_H
#include <lib/rvl/GX/GXTypes.h>
#include <lib/rvl/types.h>
#include <rvl/GX/GXTypes.h>
#include <rvl/types.h>
#ifdef __cplusplus
extern "C" {
#endif
+3 -3
View File
@@ -1,8 +1,8 @@
#ifndef RVL_SDK_GX_TRANSFORM_H
#define RVL_SDK_GX_TRANSFORM_H
#include <lib/rvl/GX/GXTypes.h>
#include <lib/rvl/MTX.h>
#include <lib/rvl/types.h>
#include <rvl/GX/GXTypes.h>
#include <rvl/MTX.h>
#include <rvl/types.h>
#ifdef __cplusplus
extern "C" {
#endif
+1 -1
View File
@@ -1,6 +1,6 @@
#ifndef RVL_SDK_GX_TYPES_H
#define RVL_SDK_GX_TYPES_H
#include <lib/rvl/types.h>
#include <rvl/types.h>
#ifdef __cplusplus
extern "C" {
#endif
+2 -2
View File
@@ -1,7 +1,7 @@
#ifndef RVL_SDK_GX_VERT_H
#define RVL_SDK_GX_VERT_H
#include <lib/rvl/GX/GXHardware.h>
#include <lib/rvl/types.h>
#include <rvl/GX/GXHardware.h>
#include <rvl/types.h>
#ifdef __cplusplus
extern "C" {
#endif
+4 -4
View File
@@ -4,10 +4,10 @@
extern "C" {
#endif
#include <lib/rvl/IPC/ipcMain.h>
#include <lib/rvl/IPC/ipcProfile.h>
#include <lib/rvl/IPC/ipcclt.h>
#include <lib/rvl/IPC/memory.h>
#include <rvl/IPC/ipcMain.h>
#include <rvl/IPC/ipcProfile.h>
#include <rvl/IPC/ipcclt.h>
#include <rvl/IPC/memory.h>
#ifdef __cplusplus
}
+1 -1
View File
@@ -1,6 +1,6 @@
#ifndef RVL_SDK_IPC_MAIN_H
#define RVL_SDK_IPC_MAIN_H
#include <lib/rvl/types.h>
#include <rvl/types.h>
#ifdef __cplusplus
extern "C" {
#endif
+2 -2
View File
@@ -1,7 +1,7 @@
#ifndef RVL_SDK_IPC_PROFILE_H
#define RVL_SDK_IPC_PROFILE_H
#include <lib/rvl/IPC/ipcclt.h>
#include <lib/rvl/types.h>
#include <rvl/IPC/ipcclt.h>
#include <rvl/types.h>
#ifdef __cplusplus
extern "C" {
#endif
+2 -2
View File
@@ -1,7 +1,7 @@
#ifndef RVL_SDK_IPC_CLT_H
#define RVL_SDK_IPC_CLT_H
#include <lib/rvl/OS.h>
#include <lib/rvl/types.h>
#include <rvl/OS.h>
#include <rvl/types.h>
#ifdef __cplusplus
extern "C" {
#endif
+1 -1
View File
@@ -1,6 +1,6 @@
#ifndef RVL_SDK_IPC_MEMORY_H
#define RVL_SDK_IPC_MEMORY_H
#include <lib/rvl/types.h>
#include <rvl/types.h>
#ifdef __cplusplus
extern "C" {
#endif
+5 -5
View File
@@ -4,11 +4,11 @@
extern "C" {
#endif
#include <lib/rvl/MEM/mem_allocator.h>
#include <lib/rvl/MEM/mem_expHeap.h>
#include <lib/rvl/MEM/mem_frameHeap.h>
#include <lib/rvl/MEM/mem_heapCommon.h>
#include <lib/rvl/MEM/mem_list.h>
#include <rvl/MEM/mem_allocator.h>
#include <rvl/MEM/mem_expHeap.h>
#include <rvl/MEM/mem_frameHeap.h>
#include <rvl/MEM/mem_heapCommon.h>
#include <rvl/MEM/mem_list.h>
#ifdef __cplusplus
}
+1 -1
View File
@@ -1,6 +1,6 @@
#ifndef RVL_SDK_MEM_ALLOCATOR_H
#define RVL_SDK_MEM_ALLOCATOR_H
#include <lib/rvl/types.h>
#include <rvl/types.h>
#ifdef __cplusplus
extern "C" {
#endif
+1 -1
View File
@@ -1,6 +1,6 @@
#ifndef RVL_SDK_MEM_EXP_HEAP_H
#define RVL_SDK_MEM_EXP_HEAP_H
#include <lib/rvl/types.h>
#include <rvl/types.h>
#ifdef __cplusplus
extern "C" {
#endif
+1 -1
View File
@@ -1,6 +1,6 @@
#ifndef RVL_SDK_MEM_FRAME_HEAP_H
#define RVL_SDK_MEM_FRAME_HEAP_H
#include <lib/rvl/types.h>
#include <rvl/types.h>
#ifdef __cplusplus
extern "C" {
#endif
+3 -3
View File
@@ -1,8 +1,8 @@
#ifndef RVL_SDK_MEM_HEAP_COMMON_H
#define RVL_SDK_MEM_HEAP_COMMON_H
#include <lib/rvl/MEM/mem_list.h>
#include <lib/rvl/OS.h>
#include <lib/rvl/types.h>
#include <rvl/MEM/mem_list.h>
#include <rvl/OS.h>
#include <rvl/types.h>
// #include <string.h>
#ifdef __cplusplus
extern "C" {
+1 -1
View File
@@ -1,6 +1,6 @@
#ifndef RVL_SDK_MEM_LIST_H
#define RVL_SDK_MEM_LIST_H
#include <lib/rvl/types.h>
#include <rvl/types.h>
#ifdef __cplusplus
extern "C" {
#endif
+5 -5
View File
@@ -4,11 +4,11 @@
extern "C" {
#endif
#include <lib/rvl/MTX/mtx.h>
#include <lib/rvl/MTX/mtx44.h>
#include <lib/rvl/MTX/mtxvec.h>
#include <lib/rvl/MTX/quat.h>
#include <lib/rvl/MTX/vec.h>
#include <rvl/MTX/mtx.h>
#include <rvl/MTX/mtx44.h>
#include <rvl/MTX/mtxvec.h>
#include <rvl/MTX/quat.h>
#include <rvl/MTX/vec.h>
#ifdef __cplusplus
}
+1 -1
View File
@@ -1,6 +1,6 @@
#ifndef RVL_SDK_MTX_MTX_H
#define RVL_SDK_MTX_MTX_H
#include <lib/rvl/types.h>
#include <rvl/types.h>
#ifdef __cplusplus
extern "C" {
#endif
+2 -2
View File
@@ -1,7 +1,7 @@
#ifndef RVL_SDK_MTX_MTX44_H
#define RVL_SDK_MTX_MTX44_H
#include <lib/rvl/MTX/mtx.h>
#include <lib/rvl/types.h>
#include <rvl/MTX/mtx.h>
#include <rvl/types.h>
#ifdef __cplusplus
extern "C" {
#endif
+2 -2
View File
@@ -1,7 +1,7 @@
#ifndef RVL_SDK_MTX_MTXVEC_H
#define RVL_SDK_MTX_MTXVEC_H
#include <lib/rvl/MTX/mtx.h>
#include <lib/rvl/types.h>
#include <rvl/MTX/mtx.h>
#include <rvl/types.h>
#ifdef __cplusplus
extern "C" {
#endif
+2 -2
View File
@@ -1,7 +1,7 @@
#ifndef RVL_SDK_MTX_QUAT_H
#define RVL_SDK_MTX_QUAT_H
#include <lib/rvl/MTX/mtx.h>
#include <lib/rvl/types.h>
#include <rvl/MTX/mtx.h>
#include <rvl/types.h>
#ifdef __cplusplus
extern "C" {
#endif
+2 -2
View File
@@ -1,7 +1,7 @@
#ifndef RVL_SDK_MTX_VEC_H
#define RVL_SDK_MTX_VEC_H
#include <lib/rvl/MTX/mtx.h>
#include <lib/rvl/types.h>
#include <rvl/MTX/mtx.h>
#include <rvl/types.h>
#ifdef __cplusplus
extern "C" {
#endif
+4 -4
View File
@@ -4,10 +4,10 @@
extern "C" {
#endif
#include <lib/rvl/NAND/NANDCheck.h>
#include <lib/rvl/NAND/NANDCore.h>
#include <lib/rvl/NAND/NANDOpenClose.h>
#include <lib/rvl/NAND/nand.h>
#include <rvl/NAND/NANDCheck.h>
#include <rvl/NAND/NANDCore.h>
#include <rvl/NAND/NANDOpenClose.h>
#include <rvl/NAND/nand.h>
#ifdef __cplusplus
}
+2 -2
View File
@@ -1,7 +1,7 @@
#ifndef RVL_SDK_NAND_CHECK_H
#define RVL_SDK_NAND_CHECK_H
#include <lib/rvl/NAND/nand.h>
#include <lib/rvl/types.h>
#include <rvl/NAND/nand.h>
#include <rvl/types.h>
#ifdef __cplusplus
extern "C" {
#endif
+2 -2
View File
@@ -1,7 +1,7 @@
#ifndef RVL_SDK_NAND_CORE_H
#define RVL_SDK_NAND_CORE_H
#include <lib/rvl/NAND/nand.h>
#include <lib/rvl/types.h>
#include <rvl/NAND/nand.h>
#include <rvl/types.h>
#ifdef __cplusplus
extern "C" {
#endif
+2 -2
View File
@@ -1,7 +1,7 @@
#ifndef RVL_SDK_NAND_OPEN_CLOSE_H
#define RVL_SDK_NAND_OPEN_CLOSE_H
#include <lib/rvl/NAND/nand.h>
#include <lib/rvl/types.h>
#include <rvl/NAND/nand.h>
#include <rvl/types.h>
#ifdef __cplusplus
extern "C" {
#endif
+2 -2
View File
@@ -1,7 +1,7 @@
#ifndef RVL_SDK_NAND_H
#define RVL_SDK_NAND_H
#include <lib/rvl/FS.h>
#include <lib/rvl/types.h>
#include <rvl/FS.h>
#include <rvl/types.h>
#ifdef __cplusplus
extern "C" {
#endif
+3 -3
View File
@@ -4,9 +4,9 @@
extern "C" {
#endif
#include <lib/rvl/NWC24/NWC24Schedule.h>
#include <lib/rvl/NWC24/NWC24System.h>
#include <lib/rvl/NWC24/NWC24Time.h>
#include <rvl/NWC24/NWC24Schedule.h>
#include <rvl/NWC24/NWC24System.h>
#include <rvl/NWC24/NWC24Time.h>
#ifdef __cplusplus
}
+1 -1
View File
@@ -1,6 +1,6 @@
#ifndef RVL_SDK_NWC24_SCHEDULE_H
#define RVL_SDK_NWC24_SCHEDULE_H
#include <lib/rvl/types.h>
#include <rvl/types.h>
#ifdef __cplusplus
extern "C" {
#endif
+1 -1
View File
@@ -1,6 +1,6 @@
#ifndef RVL_SDK_NWC24_SYSTEM_H
#define RVL_SDK_NWC24_SYSTEM_H
#include <lib/rvl/types.h>
#include <rvl/types.h>
#ifdef __cplusplus
extern "C" {
#endif
+1 -1
View File
@@ -1,6 +1,6 @@
#ifndef RVL_SDK_NWC24_TIME_H
#define RVL_SDK_NWC24_TIME_H
#include <lib/rvl/types.h>
#include <rvl/types.h>
#ifdef __cplusplus
extern "C" {
#endif
+3 -3
View File
@@ -4,9 +4,9 @@
extern "C" {
#endif
#include <lib/rvl/NdevExi2AD/DebuggerDriver.h>
#include <lib/rvl/NdevExi2AD/ODEMU.h>
#include <lib/rvl/NdevExi2AD/exi2.h>
#include <rvl/NdevExi2AD/DebuggerDriver.h>
#include <rvl/NdevExi2AD/ODEMU.h>
#include <rvl/NdevExi2AD/exi2.h>
#ifdef __cplusplus
}
+3 -3
View File
@@ -1,8 +1,8 @@
#ifndef RVL_SDK_NDEV_EXI2_AD_DEBUGGER_DRIVER_H
#define RVL_SDK_NDEV_EXI2_AD_DEBUGGER_DRIVER_H
#include <lib/rvl/NdevExi2AD/exi2.h>
#include <lib/rvl/OS.h>
#include <lib/rvl/types.h>
#include <rvl/NdevExi2AD/exi2.h>
#include <rvl/OS.h>
#include <rvl/types.h>
#ifdef __cplusplus
extern "C" {
#endif
+1 -1
View File
@@ -1,6 +1,6 @@
#ifndef RVL_SDK_NDEV_EXI2_AD_ODEMU_H
#define RVL_SDK_NDEV_EXI2_AD_ODEMU_H
#include <lib/rvl/types.h>
#include <rvl/types.h>
#ifdef __cplusplus
extern "C" {
#endif
+1 -1
View File
@@ -1,6 +1,6 @@
#ifndef RVL_SDK_NDEV_EXI2_AD_EXI2_H
#define RVL_SDK_NDEV_EXI2_AD_EXI2_H
#include <lib/rvl/types.h>
#include <rvl/types.h>
#ifdef __cplusplus
extern "C" {
#endif
+31 -31
View File
@@ -4,37 +4,37 @@
extern "C" {
#endif
#include <lib/rvl/OS/OS.h>
#include <lib/rvl/OS/OSAddress.h>
#include <lib/rvl/OS/OSAlarm.h>
#include <lib/rvl/OS/OSAlloc.h>
#include <lib/rvl/OS/OSArena.h>
#include <lib/rvl/OS/OSAudioSystem.h>
#include <lib/rvl/OS/OSCache.h>
#include <lib/rvl/OS/OSContext.h>
#include <lib/rvl/OS/OSError.h>
#include <lib/rvl/OS/OSExec.h>
#include <lib/rvl/OS/OSFastCast.h>
#include <lib/rvl/OS/OSFatal.h>
#include <lib/rvl/OS/OSFont.h>
#include <lib/rvl/OS/OSHardware.h>
#include <lib/rvl/OS/OSInterrupt.h>
#include <lib/rvl/OS/OSIpc.h>
#include <lib/rvl/OS/OSLink.h>
#include <lib/rvl/OS/OSMemory.h>
#include <lib/rvl/OS/OSMessage.h>
#include <lib/rvl/OS/OSMutex.h>
#include <lib/rvl/OS/OSNet.h>
#include <lib/rvl/OS/OSPlayRecord.h>
#include <lib/rvl/OS/OSReset.h>
#include <lib/rvl/OS/OSRtc.h>
#include <lib/rvl/OS/OSStateFlags.h>
#include <lib/rvl/OS/OSStateTM.h>
#include <lib/rvl/OS/OSSync.h>
#include <lib/rvl/OS/OSThread.h>
#include <lib/rvl/OS/OSTime.h>
#include <lib/rvl/OS/OSUtf.h>
#include <lib/rvl/OS/__ppc_eabi_init.h>
#include <rvl/OS/OS.h>
#include <rvl/OS/OSAddress.h>
#include <rvl/OS/OSAlarm.h>
#include <rvl/OS/OSAlloc.h>
#include <rvl/OS/OSArena.h>
#include <rvl/OS/OSAudioSystem.h>
#include <rvl/OS/OSCache.h>
#include <rvl/OS/OSContext.h>
#include <rvl/OS/OSError.h>
#include <rvl/OS/OSExec.h>
#include <rvl/OS/OSFastCast.h>
#include <rvl/OS/OSFatal.h>
#include <rvl/OS/OSFont.h>
#include <rvl/OS/OSHardware.h>
#include <rvl/OS/OSInterrupt.h>
#include <rvl/OS/OSIpc.h>
#include <rvl/OS/OSLink.h>
#include <rvl/OS/OSMemory.h>
#include <rvl/OS/OSMessage.h>
#include <rvl/OS/OSMutex.h>
#include <rvl/OS/OSNet.h>
#include <rvl/OS/OSPlayRecord.h>
#include <rvl/OS/OSReset.h>
#include <rvl/OS/OSRtc.h>
#include <rvl/OS/OSStateFlags.h>
#include <rvl/OS/OSStateTM.h>
#include <rvl/OS/OSSync.h>
#include <rvl/OS/OSThread.h>
#include <rvl/OS/OSTime.h>
#include <rvl/OS/OSUtf.h>
#include <rvl/OS/__ppc_eabi_init.h>
#ifdef __cplusplus
}
+3 -3
View File
@@ -1,8 +1,8 @@
#ifndef RVL_SDK_OS_H
#define RVL_SDK_OS_H
#include <lib/rvl/OS/OSContext.h>
#include <lib/rvl/OS/OSExec.h>
#include <lib/rvl/types.h>
#include <rvl/OS/OSContext.h>
#include <rvl/OS/OSExec.h>
#include <rvl/types.h>
#ifdef __cplusplus
extern "C" {
#endif
+1 -1
View File
@@ -1,6 +1,6 @@
#ifndef RVL_SDK_OS_ADDRESS_H
#define RVL_SDK_OS_ADDRESS_H
#include <lib/rvl/types.h>
#include <rvl/types.h>
#ifdef __cplusplus
extern "C" {
#endif
+1 -1
View File
@@ -1,6 +1,6 @@
#ifndef RVL_SDK_OS_ALARM_H
#define RVL_SDK_OS_ALARM_H
#include <lib/rvl/types.h>
#include <rvl/types.h>
#ifdef __cplusplus
extern "C" {
#endif

Some files were not shown because too many files have changed in this diff Show More