├── .clang-format ├── .flake8 ├── .gitattributes ├── .github └── workflows │ └── build.yml ├── .gitignore ├── .vscode ├── extensions.json ├── settings.json └── tasks.json ├── LICENSE ├── README.md ├── assets └── objdiff.png ├── config └── RSPE01_01 │ ├── build.sha1 │ ├── config.yml │ ├── splits.txt │ └── symbols.txt ├── configure.py ├── docs ├── contributing.md ├── getting_started.md ├── splits.md └── symbols.md ├── include ├── MSL │ ├── algorithm │ ├── arith.h │ ├── cctype │ ├── cerrno │ ├── climits │ ├── clocale │ ├── cmath │ ├── cstdarg │ ├── cstddef │ ├── cstdio │ ├── cstdlib │ ├── cstring │ ├── ctype.h │ ├── cwchar │ ├── errno.h │ ├── extras.h │ ├── internal │ │ ├── FILE_POS.h │ │ ├── fdlibm.h │ │ ├── fdlibm_public.h │ │ ├── file_io.h │ │ ├── float.h │ │ ├── math_api.h │ │ ├── math_double.h │ │ ├── math_ppc.h │ │ ├── math_sun.h │ │ ├── mbstring.h │ │ ├── mem.h │ │ ├── printf.h │ │ ├── rand.h │ │ ├── scanf.h │ │ ├── strtold.h │ │ ├── wchar_io.h │ │ ├── wmem.h │ │ ├── wprintf.h │ │ └── wstring.h │ ├── iterator │ ├── limits │ ├── limits.h │ ├── locale.h │ ├── math.h │ ├── new │ ├── stdarg.h │ ├── stddef.h │ ├── stdio.h │ ├── stdlib.h │ ├── string.h │ └── wchar.h ├── MetroTRK.h ├── MetroTRK │ └── debugger │ │ ├── Os │ │ └── dolphin │ │ │ ├── dolphin_trk.h │ │ │ ├── dolphin_trk_glue.h │ │ │ └── usr_put.h │ │ └── Portable │ │ ├── UART.h │ │ ├── dispatch.h │ │ ├── dserror.h │ │ ├── mem_TRK.h │ │ ├── msg.h │ │ ├── msgbuf.h │ │ ├── msghndlr.h │ │ ├── mutex_TRK.h │ │ ├── nubevent.h │ │ └── nubinit.h ├── Pack │ ├── RPAssert.h │ ├── RPGraphics.h │ ├── RPGraphics │ │ ├── RPGrpModel.h │ │ ├── RPGrpModelResManager.h │ │ ├── RPGrpRenderer.h │ │ └── RPGrpScreen.h │ ├── RPKernel.h │ ├── RPKernel │ │ ├── IRPSysHostIOSocket.h │ │ ├── IRPSysKokeshiBodyManager.h │ │ ├── IRPSysKokeshiCtrlDataCallback.h │ │ ├── RPSysAppMiiManager.h │ │ ├── RPSysAvatar.h │ │ ├── RPSysControllerSyncMgr.h │ │ ├── RPSysFile.h │ │ ├── RPSysFrameCtrl.h │ │ ├── RPSysHostIOSocketManager.h │ │ ├── RPSysKokeshi.h │ │ ├── RPSysKokeshiCtrlDataLoader.h │ │ ├── RPSysKokeshiCtrlDataMgr.h │ │ ├── RPSysKokeshiCtrlMgr.h │ │ ├── RPSysKokeshiGenInfo.h │ │ ├── RPSysKokeshiIcon.h │ │ ├── RPSysKokeshiIterater.h │ │ ├── RPSysKokeshiLocation.h │ │ ├── RPSysKokeshiManager.h │ │ ├── RPSysKokeshiOverloadInfo.h │ │ ├── RPSysLayout.h │ │ ├── RPSysLytAllocator.h │ │ ├── RPSysLytAnmObj.h │ │ ├── RPSysLytBounding.h │ │ ├── RPSysLytDynamicAnm.h │ │ ├── RPSysLytPicture.h │ │ ├── RPSysLytResAccessor.h │ │ ├── RPSysLytTextBox.h │ │ ├── RPSysLytWindow.h │ │ ├── RPSysMessage.h │ │ ├── RPSysMiddleDB.h │ │ ├── RPSysMiddleDBGenInfo.h │ │ ├── RPSysOfficialDB.h │ │ ├── RPSysTagProcessor.h │ │ ├── RPSysTextWriter.h │ │ ├── RPSysWideTextWriter.h │ │ ├── RP_DEBUG_STUB_0.h │ │ └── RP_DEBUG_STUB_1.h │ ├── RPSingleton.h │ ├── RPSystem.h │ ├── RPSystem │ │ ├── RPSysFontManager.h │ │ ├── RPSysGameConfig.h │ │ ├── RPSysProjectLocal.h │ │ ├── RPSysResourceManager.h │ │ ├── RPSysSceneCreator.h │ │ ├── RPSysSystem.h │ │ └── RPSysTagParms.h │ ├── RPUtility.h │ ├── RPUtility │ │ └── RPUtlRandom.h │ └── types_pack.h ├── RVLFaceLib.h ├── RVLFaceLib │ ├── RFL_Config.h │ ├── RFL_Controller.h │ ├── RFL_DataUtility.h │ ├── RFL_Database.h │ ├── RFL_Icon.h │ ├── RFL_MiddleDatabase.h │ ├── RFL_Model.h │ ├── RFL_NANDLoader.h │ ├── RFL_NWC24.h │ ├── RFL_System.h │ ├── RFL_Types.h │ ├── RFLi_Config.h │ ├── RFLi_Controller.h │ ├── RFLi_DataUtility.h │ ├── RFLi_Database.h │ ├── RFLi_DefaultDatabase.h │ ├── RFLi_Format.h │ ├── RFLi_HiddenDatabase.h │ ├── RFLi_MakeRandomFace.h │ ├── RFLi_MakeTex.h │ ├── RFLi_MiddleDatabase.h │ ├── RFLi_Model.h │ ├── RFLi_NANDAccess.h │ ├── RFLi_NANDLoader.h │ ├── RFLi_System.h │ ├── RFLi_Texture.h │ ├── RFLi_Types.h │ └── RVLFaceLibInternal.h ├── __doxygen.hpp ├── compat.h ├── decomp.h ├── egg │ ├── audio.h │ ├── audio │ │ ├── eggAudio3DActor.h │ │ ├── eggAudio3DMgr.h │ │ ├── eggAudioArcPlayerMgr.h │ │ ├── eggAudioExpMgr.h │ │ ├── eggAudioFxMgr.h │ │ ├── eggAudioHeapMgr.h │ │ ├── eggAudioMgr.h │ │ └── eggAudioSystem.h │ ├── core.h │ ├── core │ │ ├── eggAllocator.h │ │ ├── eggArchive.h │ │ ├── eggAsyncDisplay.h │ │ ├── eggBitFlag.h │ │ ├── eggCntFile.h │ │ ├── eggColorFader.h │ │ ├── eggController.h │ │ ├── eggDecomp.h │ │ ├── eggDisplay.h │ │ ├── eggDisposer.h │ │ ├── eggDvdFile.h │ │ ├── eggDvdRipper.h │ │ ├── eggExpHeap.h │ │ ├── eggFader.h │ │ ├── eggFile.h │ │ ├── eggFrmHeap.h │ │ ├── eggGraphicsFifo.h │ │ ├── eggHeap.h │ │ ├── eggIBinary.h │ │ ├── eggPerformanceView.h │ │ ├── eggProcessMeter.h │ │ ├── eggScene.h │ │ ├── eggSceneCreator.h │ │ ├── eggSceneManager.h │ │ ├── eggSingleton.h │ │ ├── eggStopWatch.h │ │ ├── eggStream.h │ │ ├── eggSystem.h │ │ ├── eggTaskThread.h │ │ ├── eggThread.h │ │ ├── eggVideo.h │ │ ├── eggWatch.h │ │ ├── eggXfb.h │ │ └── eggXfbManager.h │ ├── gfx.h │ ├── gfx │ │ └── eggResTIMG.h │ ├── gfxe.h │ ├── gfxe │ │ ├── eggAnalizeDL.h │ │ ├── eggCapTexture.h │ │ ├── eggCpuTexture.h │ │ ├── eggDrawGX.h │ │ ├── eggDrawPathBase.h │ │ ├── eggDrawPathBloom.h │ │ ├── eggDrawPathDOF.h │ │ ├── eggDrawPathHDR.h │ │ ├── eggDrawPathShadowVolume.h │ │ ├── eggDrawPathXluSnap.h │ │ ├── eggFog.h │ │ ├── eggFogManager.h │ │ ├── eggFrustum.h │ │ ├── eggG3DUtility.h │ │ ├── eggGXUtility.h │ │ ├── eggGfxEngine.h │ │ ├── eggIDrawGX.h │ │ ├── eggIScnProc.h │ │ ├── eggIScnProcModel.h │ │ ├── eggLightManager.h │ │ ├── eggLightObject.h │ │ ├── eggLightTexture.h │ │ ├── eggLightTextureManager.h │ │ ├── eggModelBoundingInfo.h │ │ ├── eggModelEx.h │ │ ├── eggModelSnapshot.h │ │ ├── eggPostEffectBase.h │ │ ├── eggPostEffectBlur.h │ │ ├── eggPostEffectBlurGather.h │ │ ├── eggPostEffectHDR.h │ │ ├── eggPostEffectSimple.h │ │ ├── eggScnRenderer.h │ │ ├── eggScnRootEx.h │ │ ├── eggScreen.h │ │ ├── eggScreenEffectBase.h │ │ ├── eggShadowTexture.h │ │ ├── eggShadowTextureManager.h │ │ ├── eggStateGX.h │ │ └── eggTextureBuffer.h │ ├── math.h │ ├── math │ │ ├── eggMath.h │ │ ├── eggMatrix.h │ │ ├── eggQuat.h │ │ └── eggVector.h │ ├── prim.h │ ├── prim │ │ ├── eggAssert.h │ │ ├── eggBuffer.h │ │ └── eggNw4rList.h │ ├── types_egg.h │ ├── util.h │ └── util │ │ ├── eggException.h │ │ └── eggMsgRes.h ├── homebuttonMiniLib.h ├── homebuttonMiniLib │ ├── HBMAnmController.h │ ├── HBMApi.h │ ├── HBMBase.h │ ├── HBMController.h │ ├── HBMFrameController.h │ ├── HBMGUIManager.h │ ├── HBMRemoteSpk.h │ ├── HBMRes.h │ └── HBMTypes.h ├── lang.h ├── macros.h ├── macros.inc ├── nw4r │ ├── ef.h │ ├── ef │ │ ├── drawstrategy │ │ │ ├── ef_drawbillboardstrategy.h │ │ │ ├── ef_drawdirectionalstrategy.h │ │ │ ├── ef_drawfreestrategy.h │ │ │ ├── ef_drawlinestrategy.h │ │ │ ├── ef_drawpointstrategy.h │ │ │ ├── ef_drawsmoothstripestrategy.h │ │ │ ├── ef_drawstrategybuilder.h │ │ │ ├── ef_drawstrategyimpl.h │ │ │ └── ef_drawstripestrategy.h │ │ ├── ef_activitylist.h │ │ ├── ef_animcurve.h │ │ ├── ef_creationqueue.h │ │ ├── ef_drawinfo.h │ │ ├── ef_draworder.h │ │ ├── ef_drawstrategy.h │ │ ├── ef_drawstrategybuilder.h │ │ ├── ef_effect.h │ │ ├── ef_effectsystem.h │ │ ├── ef_emitter.h │ │ ├── ef_emitterform.h │ │ ├── ef_handle.h │ │ ├── ef_linkedobject.h │ │ ├── ef_memorymanager.h │ │ ├── ef_memorymanagertmp.h │ │ ├── ef_particle.h │ │ ├── ef_particlemanager.h │ │ ├── ef_random.h │ │ ├── ef_referencedobject.h │ │ ├── ef_res_animcurve.h │ │ ├── ef_res_emitter.h │ │ ├── ef_res_texture.h │ │ ├── ef_resource.h │ │ ├── ef_types.h │ │ ├── ef_util.h │ │ └── emform │ │ │ ├── ef_cube.h │ │ │ ├── ef_cylinder.h │ │ │ ├── ef_disc.h │ │ │ ├── ef_emform.h │ │ │ ├── ef_line.h │ │ │ ├── ef_point.h │ │ │ ├── ef_sphere.h │ │ │ └── ef_torus.h │ ├── g3d.h │ ├── g3d │ │ ├── g3d_3dsmax.h │ │ ├── g3d_anmchr.h │ │ ├── g3d_anmclr.h │ │ ├── g3d_anmobj.h │ │ ├── g3d_anmscn.h │ │ ├── g3d_anmshp.h │ │ ├── g3d_anmtexpat.h │ │ ├── g3d_anmtexsrt.h │ │ ├── g3d_anmvis.h │ │ ├── g3d_basic.h │ │ ├── g3d_calcmaterial.h │ │ ├── g3d_calcview.h │ │ ├── g3d_calcvtx.h │ │ ├── g3d_calcworld.h │ │ ├── g3d_camera.h │ │ ├── g3d_dcc.h │ │ ├── g3d_draw.h │ │ ├── g3d_draw1mat1shp.h │ │ ├── g3d_fog.h │ │ ├── g3d_init.h │ │ ├── g3d_light.h │ │ ├── g3d_maya.h │ │ ├── g3d_obj.h │ │ ├── g3d_rtti.h │ │ ├── g3d_scnmdl.h │ │ ├── g3d_scnmdl1mat1shp.h │ │ ├── g3d_scnmdlsmpl.h │ │ ├── g3d_scnobj.h │ │ ├── g3d_scnproc.h │ │ ├── g3d_scnrfl.h │ │ ├── g3d_scnroot.h │ │ ├── g3d_state.h │ │ ├── g3d_workmem.h │ │ ├── g3d_xsi.h │ │ ├── platform │ │ │ ├── g3d_allocator.h │ │ │ ├── g3d_cpu.h │ │ │ ├── g3d_gpu.h │ │ │ └── g3d_tmem.h │ │ └── res │ │ │ ├── g3d_resanm.h │ │ │ ├── g3d_resanmamblight.h │ │ │ ├── g3d_resanmcamera.h │ │ │ ├── g3d_resanmchr.h │ │ │ ├── g3d_resanmclr.h │ │ │ ├── g3d_resanmfog.h │ │ │ ├── g3d_resanmlight.h │ │ │ ├── g3d_resanmscn.h │ │ │ ├── g3d_resanmshp.h │ │ │ ├── g3d_resanmtexpat.h │ │ │ ├── g3d_resanmtexsrt.h │ │ │ ├── g3d_resanmvis.h │ │ │ ├── g3d_rescommon.h │ │ │ ├── g3d_resdict.h │ │ │ ├── g3d_resfile.h │ │ │ ├── g3d_reslightset.h │ │ │ ├── g3d_resmat.h │ │ │ ├── g3d_resmdl.h │ │ │ ├── g3d_resnode.h │ │ │ ├── g3d_respltt.h │ │ │ ├── g3d_resshp.h │ │ │ ├── g3d_restev.h │ │ │ ├── g3d_restex.h │ │ │ └── g3d_resvtx.h │ ├── lyt.h │ ├── lyt │ │ ├── lyt_animation.h │ │ ├── lyt_arcResourceAccessor.h │ │ ├── lyt_bounding.h │ │ ├── lyt_common.h │ │ ├── lyt_drawInfo.h │ │ ├── lyt_group.h │ │ ├── lyt_init.h │ │ ├── lyt_layout.h │ │ ├── lyt_material.h │ │ ├── lyt_pane.h │ │ ├── lyt_picture.h │ │ ├── lyt_resourceAccessor.h │ │ ├── lyt_resources.h │ │ ├── lyt_texMap.h │ │ ├── lyt_textBox.h │ │ ├── lyt_types.h │ │ └── lyt_window.h │ ├── math.h │ ├── math │ │ ├── math_arithmetic.h │ │ ├── math_constant.h │ │ ├── math_geometry.h │ │ ├── math_triangular.h │ │ └── math_types.h │ ├── snd.h │ ├── snd │ │ ├── snd_AxManager.h │ │ ├── snd_AxVoice.h │ │ ├── snd_AxVoiceManager.h │ │ ├── snd_AxfxImpl.h │ │ ├── snd_Bank.h │ │ ├── snd_BankFile.h │ │ ├── snd_BasicPlayer.h │ │ ├── snd_BasicSound.h │ │ ├── snd_Channel.h │ │ ├── snd_ChannelManager.h │ │ ├── snd_DisposeCallback.h │ │ ├── snd_DisposeCallbackManager.h │ │ ├── snd_DvdSoundArchive.h │ │ ├── snd_EnvGenerator.h │ │ ├── snd_ExternalSoundPlayer.h │ │ ├── snd_FrameHeap.h │ │ ├── snd_FxBase.h │ │ ├── snd_FxChorus.h │ │ ├── snd_FxDelay.h │ │ ├── snd_FxReverbHi.h │ │ ├── snd_FxReverbHiDpl2.h │ │ ├── snd_InstancePool.h │ │ ├── snd_Lfo.h │ │ ├── snd_MemorySoundArchive.h │ │ ├── snd_MmlParser.h │ │ ├── snd_MmlSeqTrack.h │ │ ├── snd_MmlSeqTrackAllocator.h │ │ ├── snd_MoveValue.h │ │ ├── snd_NandSoundArchive.h │ │ ├── snd_NoteOnCallback.h │ │ ├── snd_PlayerHeap.h │ │ ├── snd_RemoteSpeaker.h │ │ ├── snd_RemoteSpeakerManager.h │ │ ├── snd_SeqFile.h │ │ ├── snd_SeqPlayer.h │ │ ├── snd_SeqSound.h │ │ ├── snd_SeqSoundHandle.h │ │ ├── snd_SeqTrack.h │ │ ├── snd_SeqTrackAllocator.h │ │ ├── snd_Sound3DActor.h │ │ ├── snd_Sound3DListener.h │ │ ├── snd_Sound3DManager.h │ │ ├── snd_SoundActor.h │ │ ├── snd_SoundArchive.h │ │ ├── snd_SoundArchiveFile.h │ │ ├── snd_SoundArchiveLoader.h │ │ ├── snd_SoundArchivePlayer.h │ │ ├── snd_SoundHandle.h │ │ ├── snd_SoundHeap.h │ │ ├── snd_SoundInstanceManager.h │ │ ├── snd_SoundMemoryAllocatable.h │ │ ├── snd_SoundPlayer.h │ │ ├── snd_SoundStartable.h │ │ ├── snd_SoundSystem.h │ │ ├── snd_SoundThread.h │ │ ├── snd_StrmChannel.h │ │ ├── snd_StrmFile.h │ │ ├── snd_StrmPlayer.h │ │ ├── snd_StrmSound.h │ │ ├── snd_StrmSoundHandle.h │ │ ├── snd_Task.h │ │ ├── snd_TaskManager.h │ │ ├── snd_TaskThread.h │ │ ├── snd_Types.h │ │ ├── snd_Util.h │ │ ├── snd_Voice.h │ │ ├── snd_VoiceManager.h │ │ ├── snd_WaveFile.h │ │ ├── snd_WaveSound.h │ │ ├── snd_WaveSoundHandle.h │ │ ├── snd_WsdFile.h │ │ ├── snd_WsdPlayer.h │ │ └── snd_adpcm.h │ ├── types_nw4r.h │ ├── ut.h │ └── ut │ │ ├── ut_CharStrmReader.h │ │ ├── ut_CharWriter.h │ │ ├── ut_Color.h │ │ ├── ut_DvdFileStream.h │ │ ├── ut_DvdLockedFileStream.h │ │ ├── ut_FileStream.h │ │ ├── ut_Font.h │ │ ├── ut_IOStream.h │ │ ├── ut_LinkList.h │ │ ├── ut_LockedCache.h │ │ ├── ut_NandFileStream.h │ │ ├── ut_NonCopyable.h │ │ ├── ut_Rect.h │ │ ├── ut_ResFont.h │ │ ├── ut_ResFontBase.h │ │ ├── ut_RomFont.h │ │ ├── ut_RuntimeTypeInfo.h │ │ ├── ut_TagProcessor.h │ │ ├── ut_TagProcessorBase.h │ │ ├── ut_TextWriter.h │ │ ├── ut_TextWriterBase.h │ │ ├── ut_WideTagProcessor.h │ │ ├── ut_WideTextWriter.h │ │ ├── ut_algorithm.h │ │ ├── ut_binaryFileFormat.h │ │ ├── ut_list.h │ │ └── ut_lock.h ├── revolution │ ├── AI.h │ ├── AI │ │ ├── ai.h │ │ └── ai_hardware.h │ ├── ARC.h │ ├── ARC │ │ └── arc.h │ ├── AX.h │ ├── AX │ │ ├── AX.h │ │ ├── AXAlloc.h │ │ ├── AXAux.h │ │ ├── AXCL.h │ │ ├── AXComp.h │ │ ├── AXOut.h │ │ ├── AXPB.h │ │ ├── AXProf.h │ │ ├── AXSPB.h │ │ ├── AXVPB.h │ │ └── DSPCode.h │ ├── AXFX.h │ ├── AXFX │ │ ├── AXFXChorus.h │ │ ├── AXFXChorusExp.h │ │ ├── AXFXCommon.h │ │ ├── AXFXDelay.h │ │ ├── AXFXHooks.h │ │ ├── AXFXLfoTable.h │ │ ├── AXFXReverbHi.h │ │ ├── AXFXReverbHiDpl2.h │ │ ├── AXFXReverbHiExp.h │ │ ├── AXFXReverbHiExpDpl2.h │ │ └── AXFXSrcCoef.h │ ├── BASE.h │ ├── BASE │ │ └── PPCArch.h │ ├── BTE.h │ ├── BTE │ │ ├── MODULE_LICENSE_APACHE2 │ │ ├── NOTICE │ │ ├── README │ │ ├── audio_a2dp_hw │ │ │ └── audio_a2dp_hw.h │ │ ├── bta │ │ │ ├── ag │ │ │ │ ├── bta_ag_at.h │ │ │ │ └── bta_ag_int.h │ │ │ ├── ar │ │ │ │ └── bta_ar_int.h │ │ │ ├── av │ │ │ │ └── bta_av_int.h │ │ │ ├── dm │ │ │ │ └── bta_dm_int.h │ │ │ ├── gatt │ │ │ │ ├── bta_gattc_int.h │ │ │ │ └── bta_gatts_int.h │ │ │ ├── hh │ │ │ │ └── bta_hh_int.h │ │ │ ├── hl │ │ │ │ └── bta_hl_int.h │ │ │ ├── include │ │ │ │ ├── bd.h │ │ │ │ ├── bta_ag_api.h │ │ │ │ ├── bta_ag_ci.h │ │ │ │ ├── bta_ag_co.h │ │ │ │ ├── bta_api.h │ │ │ │ ├── bta_ar_api.h │ │ │ │ ├── bta_av_api.h │ │ │ │ ├── bta_av_ci.h │ │ │ │ ├── bta_av_co.h │ │ │ │ ├── bta_av_sbc.h │ │ │ │ ├── bta_dm_ci.h │ │ │ │ ├── bta_dm_co.h │ │ │ │ ├── bta_fs_api.h │ │ │ │ ├── bta_fs_ci.h │ │ │ │ ├── bta_fs_co.h │ │ │ │ ├── bta_gatt_api.h │ │ │ │ ├── bta_gattc_ci.h │ │ │ │ ├── bta_gattc_co.h │ │ │ │ ├── bta_gatts_co.h │ │ │ │ ├── bta_hh_api.h │ │ │ │ ├── bta_hh_co.h │ │ │ │ ├── bta_hl_api.h │ │ │ │ ├── bta_hl_ci.h │ │ │ │ ├── bta_hl_co.h │ │ │ │ ├── bta_jv_api.h │ │ │ │ ├── bta_jv_co.h │ │ │ │ ├── bta_op_api.h │ │ │ │ ├── bta_pan_api.h │ │ │ │ ├── bta_pan_ci.h │ │ │ │ ├── bta_pan_co.h │ │ │ │ ├── bta_pbs_api.h │ │ │ │ ├── bta_sys_ci.h │ │ │ │ ├── bta_sys_co.h │ │ │ │ ├── ptim.h │ │ │ │ └── utl.h │ │ │ ├── jv │ │ │ │ └── bta_jv_int.h │ │ │ ├── pan │ │ │ │ └── bta_pan_int.h │ │ │ ├── pb │ │ │ │ └── bta_pbs_int.h │ │ │ └── sys │ │ │ │ ├── bta_sys.h │ │ │ │ └── bta_sys_int.h │ │ ├── btif │ │ │ └── include │ │ │ │ ├── btif_api.h │ │ │ │ ├── btif_av.h │ │ │ │ ├── btif_av_api.h │ │ │ │ ├── btif_av_co.h │ │ │ │ ├── btif_common.h │ │ │ │ ├── btif_config.h │ │ │ │ ├── btif_config_util.h │ │ │ │ ├── btif_dm.h │ │ │ │ ├── btif_hh.h │ │ │ │ ├── btif_hl.h │ │ │ │ ├── btif_media.h │ │ │ │ ├── btif_pan.h │ │ │ │ ├── btif_pan_internal.h │ │ │ │ ├── btif_profile_queue.h │ │ │ │ ├── btif_sm.h │ │ │ │ ├── btif_sock.h │ │ │ │ ├── btif_sock_rfc.h │ │ │ │ ├── btif_sock_sdp.h │ │ │ │ ├── btif_sock_thread.h │ │ │ │ ├── btif_sock_util.h │ │ │ │ ├── btif_storage.h │ │ │ │ ├── btif_util.h │ │ │ │ └── uinput.h │ │ ├── embdrv │ │ │ └── sbc │ │ │ │ └── encoder │ │ │ │ └── include │ │ │ │ ├── sbc_dct.h │ │ │ │ ├── sbc_enc_func_declare.h │ │ │ │ ├── sbc_encoder.h │ │ │ │ ├── sbc_if.h │ │ │ │ └── sbc_types.h │ │ ├── gki │ │ │ ├── common │ │ │ │ ├── gki.h │ │ │ │ ├── gki_common.h │ │ │ │ └── gki_inet.h │ │ │ └── platform │ │ │ │ ├── data_types.h │ │ │ │ └── gki_int.h │ │ ├── hci │ │ │ └── include │ │ │ │ ├── bt_hci_bdroid.h │ │ │ │ ├── bt_hci_lib.h │ │ │ │ ├── bt_vendor_lib.h │ │ │ │ ├── hci.h │ │ │ │ ├── userial.h │ │ │ │ └── utils.h │ │ ├── include │ │ │ ├── bt_target.h │ │ │ ├── bt_trace.h │ │ │ ├── bte.h │ │ │ ├── bte_appl.h │ │ │ ├── bte_common.h │ │ │ └── gki_target.h │ │ ├── rvl │ │ │ └── uusb_ppc.h │ │ ├── stack │ │ │ ├── a2dp │ │ │ │ └── a2d_int.h │ │ │ ├── avct │ │ │ │ ├── avct_defs.h │ │ │ │ └── avct_int.h │ │ │ ├── avdt │ │ │ │ ├── avdt_defs.h │ │ │ │ └── avdt_int.h │ │ │ ├── avrc │ │ │ │ └── avrc_int.h │ │ │ ├── bnep │ │ │ │ └── bnep_int.h │ │ │ ├── btm │ │ │ │ ├── btm_ble_int.h │ │ │ │ └── btm_int.h │ │ │ ├── gatt │ │ │ │ └── gatt_int.h │ │ │ ├── hid │ │ │ │ ├── hid_conn.h │ │ │ │ └── hidh_int.h │ │ │ ├── include │ │ │ │ ├── a2d_api.h │ │ │ │ ├── a2d_sbc.h │ │ │ │ ├── avct_api.h │ │ │ │ ├── avdt_api.h │ │ │ │ ├── avdtc_api.h │ │ │ │ ├── avrc_api.h │ │ │ │ ├── avrc_defs.h │ │ │ │ ├── bnep_api.h │ │ │ │ ├── bt_types.h │ │ │ │ ├── btm_api.h │ │ │ │ ├── btm_ble_api.h │ │ │ │ ├── btu.h │ │ │ │ ├── dyn_mem.h │ │ │ │ ├── gap_api.h │ │ │ │ ├── gatt_api.h │ │ │ │ ├── gattdefs.h │ │ │ │ ├── goep_fs.h │ │ │ │ ├── hcidefs.h │ │ │ │ ├── hcimsgs.h │ │ │ │ ├── hidd_api.h │ │ │ │ ├── hiddefs.h │ │ │ │ ├── hidh_api.h │ │ │ │ ├── l2c_api.h │ │ │ │ ├── l2cdefs.h │ │ │ │ ├── mca_api.h │ │ │ │ ├── mca_defs.h │ │ │ │ ├── obx_api.h │ │ │ │ ├── pan_api.h │ │ │ │ ├── port_api.h │ │ │ │ ├── port_ext.h │ │ │ │ ├── profiles_api.h │ │ │ │ ├── rfcdefs.h │ │ │ │ ├── sdp_api.h │ │ │ │ ├── sdpdefs.h │ │ │ │ ├── smp_api.h │ │ │ │ ├── uipc_msg.h │ │ │ │ ├── utfc.h │ │ │ │ ├── wbt_api.h │ │ │ │ └── wcassert.h │ │ │ ├── l2cap │ │ │ │ └── l2c_int.h │ │ │ ├── mcap │ │ │ │ └── mca_int.h │ │ │ ├── pan │ │ │ │ └── pan_int.h │ │ │ ├── rfcomm │ │ │ │ ├── port_int.h │ │ │ │ └── rfc_int.h │ │ │ ├── sdp │ │ │ │ └── sdpint.h │ │ │ └── smp │ │ │ │ ├── aes.h │ │ │ │ └── smp_int.h │ │ ├── udrv │ │ │ ├── include │ │ │ │ └── uipc.h │ │ │ └── ulinux │ │ │ │ └── uipc_linux.h │ │ └── utils │ │ │ └── include │ │ │ └── bt_utils.h │ ├── CARD.h │ ├── CARD │ │ └── CARD.h │ ├── CNT.h │ ├── CNT │ │ └── cnt.h │ ├── DB.h │ ├── DB │ │ └── db.h │ ├── DSP.h │ ├── DSP │ │ ├── dsp.h │ │ ├── dsp_debug.h │ │ ├── dsp_hardware.h │ │ └── dsp_task.h │ ├── DVD.h │ ├── DVD │ │ ├── dvd.h │ │ ├── dvd_broadway.h │ │ ├── dvderror.h │ │ ├── dvdfatal.h │ │ ├── dvdfs.h │ │ ├── dvdidutils.h │ │ └── dvdqueue.h │ ├── ESP.h │ ├── ESP │ │ └── esp.h │ ├── EUART.h │ ├── EUART │ │ └── euart.h │ ├── EXI.h │ ├── EXI │ │ ├── EXIBios.h │ │ ├── EXICommon.h │ │ ├── EXIHardware.h │ │ └── EXIUart.h │ ├── FS.h │ ├── FS │ │ └── fs.h │ ├── GX.h │ ├── GX │ │ ├── GXAttr.h │ │ ├── GXBump.h │ │ ├── GXDisplayList.h │ │ ├── GXDraw.h │ │ ├── GXFifo.h │ │ ├── GXFrameBuf.h │ │ ├── GXGeometry.h │ │ ├── GXHardware.h │ │ ├── GXHardwareBP.h │ │ ├── GXHardwareCP.h │ │ ├── GXHardwareXF.h │ │ ├── GXInit.h │ │ ├── GXInternal.h │ │ ├── GXLight.h │ │ ├── GXMisc.h │ │ ├── GXPixel.h │ │ ├── GXTev.h │ │ ├── GXTexture.h │ │ ├── GXTransform.h │ │ ├── GXTypes.h │ │ └── GXVert.h │ ├── IPC.h │ ├── IPC │ │ ├── ipcHardware.h │ │ ├── ipcMain.h │ │ ├── ipcProfile.h │ │ ├── ipcclt.h │ │ └── memory.h │ ├── KPAD.h │ ├── KPAD │ │ └── KPAD.h │ ├── MEM.h │ ├── MEM │ │ ├── mem_allocator.h │ │ ├── mem_expHeap.h │ │ ├── mem_frameHeap.h │ │ ├── mem_heapCommon.h │ │ └── mem_list.h │ ├── MTX.h │ ├── MTX │ │ ├── mtx.h │ │ ├── mtx44.h │ │ ├── mtxtypes.h │ │ ├── mtxvec.h │ │ ├── quat.h │ │ └── vec.h │ ├── NAND.h │ ├── NAND │ │ ├── NANDCheck.h │ │ ├── NANDCore.h │ │ ├── NANDOpenClose.h │ │ └── nand.h │ ├── NWC24.h │ ├── NWC24 │ │ ├── NWC24Config.h │ │ ├── NWC24DateParser.h │ │ ├── NWC24Download.h │ │ ├── NWC24FileApi.h │ │ ├── NWC24FriendList.h │ │ ├── NWC24Ipc.h │ │ ├── NWC24MBoxCtrl.h │ │ ├── NWC24Manage.h │ │ ├── NWC24Mime.h │ │ ├── NWC24MsgCommit.h │ │ ├── NWC24MsgObj.h │ │ ├── NWC24Parser.h │ │ ├── NWC24Schedule.h │ │ ├── NWC24SecretFList.h │ │ ├── NWC24StdApi.h │ │ ├── NWC24System.h │ │ ├── NWC24Time.h │ │ ├── NWC24Types.h │ │ └── NWC24Utils.h │ ├── NdevExi2AD.h │ ├── NdevExi2AD │ │ ├── DebuggerDriver.h │ │ ├── ODEMU.h │ │ └── exi2.h │ ├── OS.h │ ├── OS │ │ ├── OS.h │ │ ├── OSAddress.h │ │ ├── OSAlarm.h │ │ ├── OSAlloc.h │ │ ├── OSArena.h │ │ ├── OSAudioSystem.h │ │ ├── OSCache.h │ │ ├── OSContext.h │ │ ├── OSError.h │ │ ├── OSExec.h │ │ ├── OSFastCast.h │ │ ├── OSFatal.h │ │ ├── OSFont.h │ │ ├── OSHardware.h │ │ ├── OSInterrupt.h │ │ ├── OSIpc.h │ │ ├── OSLink.h │ │ ├── OSMemory.h │ │ ├── OSMessage.h │ │ ├── OSMutex.h │ │ ├── OSNet.h │ │ ├── OSPlayRecord.h │ │ ├── OSReset.h │ │ ├── OSRtc.h │ │ ├── OSStateFlags.h │ │ ├── OSStateTM.h │ │ ├── OSSync.h │ │ ├── OSThread.h │ │ ├── OSTime.h │ │ ├── OSUtf.h │ │ └── __ppc_eabi_init.h │ ├── PAD.h │ ├── PAD │ │ └── Pad.h │ ├── SC.h │ ├── SC │ │ ├── scapi.h │ │ ├── scapi_prdinfo.h │ │ └── scsystem.h │ ├── SI.h │ ├── SI │ │ ├── SIBios.h │ │ ├── SIHardware.h │ │ └── SISamplingRate.h │ ├── TPL.h │ ├── TPL │ │ └── TPL.h │ ├── USB.h │ ├── USB │ │ └── usb.h │ ├── VF.h │ ├── VF │ │ └── d_vf.h │ ├── VI.h │ ├── VI │ │ ├── vi.h │ │ ├── vi3in1.h │ │ └── vihardware.h │ ├── WENC.h │ ├── WENC │ │ └── wenc.h │ ├── WPAD.h │ ├── WPAD │ │ ├── WPAD.h │ │ ├── WPADHIDParser.h │ │ ├── WPADInternal.h │ │ ├── WPADMem.h │ │ └── debug_msg.h │ ├── WUD.h │ ├── WUD │ │ ├── WUD.h │ │ ├── WUDHidHost.h │ │ ├── WUDInternal.h │ │ └── debug_msg.h │ └── version.h ├── runtime │ ├── GCN_mem_alloc.h │ ├── Gecko_ExceptionPPC.h │ └── global_destructor_chain.h └── types.h ├── orig └── RSPE01_01 │ └── .gitkeep ├── src ├── MSL │ ├── e_acos.c │ ├── e_asin.c │ ├── e_atan2.c │ ├── e_fmod.c │ ├── e_pow.c │ ├── e_rem_pio2.c │ ├── e_sqrt.c │ ├── float.c │ ├── k_cos.c │ ├── k_rem_pio2.c │ ├── k_sin.c │ ├── k_tan.c │ ├── math_ppc.c │ ├── s_atan.c │ ├── s_ceil.c │ ├── s_copysign.c │ ├── s_cos.c │ ├── s_floor.c │ ├── s_frexp.c │ ├── s_ldexp.c │ ├── s_modf.c │ ├── s_sin.c │ ├── s_tan.c │ ├── w_acos.c │ ├── w_asin.c │ ├── w_atan2.c │ ├── w_fmod.c │ ├── w_pow.c │ └── w_sqrt.c ├── MetroTRK │ └── debugger │ │ └── Portable │ │ ├── dispatch.c │ │ ├── mem_TRK.c │ │ ├── msg.c │ │ ├── msgbuf.c │ │ ├── mutex_TRK.c │ │ └── nubevent.c ├── Pack │ ├── RPKernel │ │ ├── IRPSysHostIOSocket.cpp │ │ ├── RPSysAppMiiManager.cpp │ │ ├── RPSysAvatar.cpp │ │ ├── RPSysControllerSyncMgr.cpp │ │ ├── RPSysFile.cpp │ │ ├── RPSysFrameCtrl.cpp │ │ ├── RPSysHostIOSocketManager.cpp │ │ ├── RPSysKokeshi.cpp │ │ ├── RPSysKokeshiCtrlDataLoader.cpp │ │ ├── RPSysKokeshiCtrlDataMgr.cpp │ │ ├── RPSysKokeshiCtrlMgr.cpp │ │ ├── RPSysKokeshiGenInfo.cpp │ │ ├── RPSysKokeshiIterater.cpp │ │ ├── RPSysKokeshiLocation.cpp │ │ ├── RPSysKokeshiOverloadInfo.cpp │ │ ├── RPSysLayout.cpp │ │ ├── RPSysLytAllocator.cpp │ │ ├── RPSysLytAnmObj.cpp │ │ ├── RPSysLytBounding.cpp │ │ ├── RPSysLytDynamicAnm.cpp │ │ ├── RPSysLytPicture.cpp │ │ ├── RPSysLytResAccessor.cpp │ │ ├── RPSysLytTextBox.cpp │ │ ├── RPSysLytWindow.cpp │ │ ├── RPSysMessage.cpp │ │ ├── RPSysMiddleDB.cpp │ │ ├── RPSysMiddleDBGenInfo.cpp │ │ ├── RPSysOfficialDB.cpp │ │ ├── RPSysTextWriter.cpp │ │ ├── RPSysWideTextWriter.cpp │ │ ├── RP_DEBUG_STUB_0.cpp │ │ └── RP_DEBUG_STUB_1.cpp │ └── RPSystem │ │ ├── RPSysGameConfig.cpp │ │ ├── RPSysProjectLocal.cpp │ │ └── RPSysTagParms.cpp ├── RVLFaceLib │ ├── RFL_Controller.c │ ├── RFL_DataUtility.c │ ├── RFL_Database.c │ ├── RFL_DefaultDatabase.c │ ├── RFL_Format.c │ ├── RFL_HiddenDatabase.c │ ├── RFL_Icon.c │ ├── RFL_MakeRandomFace.c │ ├── RFL_MakeTex.c │ ├── RFL_MiddleDatabase.c │ ├── RFL_Model.c │ ├── RFL_NANDAccess.c │ ├── RFL_NANDLoader.c │ ├── RFL_NWC24.c │ └── RFL_System.c ├── egg │ ├── audio │ │ ├── eggAudio3DActor.cpp │ │ ├── eggAudioArcPlayerMgr.cpp │ │ ├── eggAudioExpMgr.cpp │ │ ├── eggAudioFxMgr.cpp │ │ ├── eggAudioHeapMgr.cpp │ │ ├── eggAudioMgr.cpp │ │ └── eggAudioSystem.cpp │ ├── core │ │ ├── eggAllocator.cpp │ │ ├── eggArchive.cpp │ │ ├── eggAsyncDisplay.cpp │ │ ├── eggCntFile.cpp │ │ ├── eggColorFader.cpp │ │ ├── eggController.cpp │ │ ├── eggDecomp.cpp │ │ ├── eggDisplay.cpp │ │ ├── eggDisposer.cpp │ │ ├── eggDvdFile.cpp │ │ ├── eggDvdRipper.cpp │ │ ├── eggExpHeap.cpp │ │ ├── eggFrmHeap.cpp │ │ ├── eggGraphicsFifo.cpp │ │ ├── eggHeap.cpp │ │ ├── eggProcessMeter.cpp │ │ ├── eggScene.cpp │ │ ├── eggSceneManager.cpp │ │ ├── eggStream.cpp │ │ ├── eggSystem.cpp │ │ ├── eggTaskThread.cpp │ │ ├── eggThread.cpp │ │ ├── eggVideo.cpp │ │ ├── eggXfb.cpp │ │ └── eggXfbManager.cpp │ ├── gfxe │ │ ├── eggAnalizeDL.cpp │ │ ├── eggCapTexture.cpp │ │ ├── eggCpuTexture.cpp │ │ ├── eggDrawGX.cpp │ │ ├── eggDrawPathBase.cpp │ │ ├── eggDrawPathHDR.cpp │ │ ├── eggFog.cpp │ │ ├── eggFogManager.cpp │ │ ├── eggFrustum.cpp │ │ ├── eggGXUtility.cpp │ │ ├── eggGfxEngine.cpp │ │ ├── eggIDrawGX.cpp │ │ ├── eggIScnProc.cpp │ │ ├── eggLightTextureManager.cpp │ │ ├── eggModelEx.cpp │ │ ├── eggModelSnapshot.cpp │ │ ├── eggPostEffectBase.cpp │ │ ├── eggPostEffectBlur.cpp │ │ ├── eggPostEffectBlurGather.cpp │ │ ├── eggPostEffectHDR.cpp │ │ ├── eggPostEffectSimple.cpp │ │ ├── eggScnRenderer.cpp │ │ ├── eggScnRootEx.cpp │ │ ├── eggScreen.cpp │ │ ├── eggScreenEffectBase.cpp │ │ ├── eggShadowTextureManager.cpp │ │ ├── eggStateGX.cpp │ │ └── eggTextureBuffer.cpp │ ├── math │ │ ├── eggMath.cpp │ │ ├── eggMatrix.cpp │ │ ├── eggQuat.cpp │ │ └── eggVector.cpp │ ├── prim │ │ └── eggAssert.cpp │ └── util │ │ ├── eggEffect.cpp │ │ ├── eggException.cpp │ │ └── eggMsgRes.cpp ├── homebuttonMiniLib │ ├── HBMAnmController.cpp │ ├── HBMBase.cpp │ ├── HBMController.cpp │ ├── HBMFrameController.cpp │ ├── HBMGUIManager.cpp │ └── HBMRemoteSpk.cpp ├── main.cpp ├── nw4r │ ├── ef │ │ ├── drawstrategy │ │ │ ├── ef_drawfreestrategy.cpp │ │ │ ├── ef_drawlinestrategy.cpp │ │ │ ├── ef_drawpointstrategy.cpp │ │ │ ├── ef_drawstrategybuilder.cpp │ │ │ └── ef_drawstrategyimpl.cpp │ │ ├── ef_creationqueue.cpp │ │ ├── ef_draworder.cpp │ │ ├── ef_drawstrategybuilder.cpp │ │ ├── ef_effect.cpp │ │ ├── ef_effectsystem.cpp │ │ ├── ef_emform.cpp │ │ ├── ef_emitter.cpp │ │ ├── ef_emitterform.cpp │ │ ├── ef_handle.cpp │ │ ├── ef_particle.cpp │ │ ├── ef_particlemanager.cpp │ │ ├── ef_resource.cpp │ │ ├── ef_util.cpp │ │ └── emform │ │ │ ├── ef_cube.cpp │ │ │ ├── ef_cylinder.cpp │ │ │ ├── ef_disc.cpp │ │ │ ├── ef_emform.cpp │ │ │ ├── ef_line.cpp │ │ │ ├── ef_point.cpp │ │ │ ├── ef_sphere.cpp │ │ │ └── ef_torus.cpp │ ├── g3d │ │ ├── g3d_3dsmax.cpp │ │ ├── g3d_anmchr.cpp │ │ ├── g3d_anmclr.cpp │ │ ├── g3d_anmobj.cpp │ │ ├── g3d_anmscn.cpp │ │ ├── g3d_anmshp.cpp │ │ ├── g3d_anmtexpat.cpp │ │ ├── g3d_anmtexsrt.cpp │ │ ├── g3d_anmvis.cpp │ │ ├── g3d_basic.cpp │ │ ├── g3d_calcmaterial.cpp │ │ ├── g3d_calcview.cpp │ │ ├── g3d_calcvtx.cpp │ │ ├── g3d_calcworld.cpp │ │ ├── g3d_camera.cpp │ │ ├── g3d_dcc.cpp │ │ ├── g3d_draw.cpp │ │ ├── g3d_draw1mat1shp.cpp │ │ ├── g3d_fog.cpp │ │ ├── g3d_init.cpp │ │ ├── g3d_light.cpp │ │ ├── g3d_maya.cpp │ │ ├── g3d_obj.cpp │ │ ├── g3d_scnmdl.cpp │ │ ├── g3d_scnmdl1mat1shp.cpp │ │ ├── g3d_scnmdlsmpl.cpp │ │ ├── g3d_scnobj.cpp │ │ ├── g3d_scnproc.cpp │ │ ├── g3d_scnrfl.cpp │ │ ├── g3d_scnroot.cpp │ │ ├── g3d_state.cpp │ │ ├── g3d_workmem.cpp │ │ ├── g3d_xsi.cpp │ │ ├── platform │ │ │ ├── g3d_cpu.cpp │ │ │ ├── g3d_gpu.cpp │ │ │ └── g3d_tmem.cpp │ │ └── res │ │ │ ├── g3d_resanm.cpp │ │ │ ├── g3d_resanmamblight.cpp │ │ │ ├── g3d_resanmcamera.cpp │ │ │ ├── g3d_resanmchr.cpp │ │ │ ├── g3d_resanmclr.cpp │ │ │ ├── g3d_resanmfog.cpp │ │ │ ├── g3d_resanmlight.cpp │ │ │ ├── g3d_resanmscn.cpp │ │ │ ├── g3d_resanmshp.cpp │ │ │ ├── g3d_resanmtexpat.cpp │ │ │ ├── g3d_resanmtexsrt.cpp │ │ │ ├── g3d_resanmvis.cpp │ │ │ ├── g3d_rescommon.cpp │ │ │ ├── g3d_resdict.cpp │ │ │ ├── g3d_resfile.cpp │ │ │ ├── g3d_reslightset.cpp │ │ │ ├── g3d_resmat.cpp │ │ │ ├── g3d_resmdl.cpp │ │ │ ├── g3d_resnode.cpp │ │ │ ├── g3d_resshp.cpp │ │ │ ├── g3d_restev.cpp │ │ │ ├── g3d_restex.cpp │ │ │ └── g3d_resvtx.cpp │ ├── lyt │ │ ├── lyt_animation.cpp │ │ ├── lyt_arcResourceAccessor.cpp │ │ ├── lyt_bounding.cpp │ │ ├── lyt_common.cpp │ │ ├── lyt_drawInfo.cpp │ │ ├── lyt_group.cpp │ │ ├── lyt_init.cpp │ │ ├── lyt_layout.cpp │ │ ├── lyt_material.cpp │ │ ├── lyt_pane.cpp │ │ ├── lyt_picture.cpp │ │ ├── lyt_resourceAccessor.cpp │ │ ├── lyt_texMap.cpp │ │ ├── lyt_textBox.cpp │ │ └── lyt_window.cpp │ ├── math │ │ ├── math_arithmetic.cpp │ │ ├── math_geometry.cpp │ │ ├── math_triangular.cpp │ │ └── math_types.cpp │ ├── snd │ │ ├── snd_AnimSound.cpp │ │ ├── snd_AxManager.cpp │ │ ├── snd_AxVoice.cpp │ │ ├── snd_AxVoiceManager.cpp │ │ ├── snd_AxfxImpl.cpp │ │ ├── snd_Bank.cpp │ │ ├── snd_BankFile.cpp │ │ ├── snd_BasicPlayer.cpp │ │ ├── snd_BasicSound.cpp │ │ ├── snd_Channel.cpp │ │ ├── snd_DisposeCallbackManager.cpp │ │ ├── snd_DvdSoundArchive.cpp │ │ ├── snd_EnvGenerator.cpp │ │ ├── snd_ExternalSoundPlayer.cpp │ │ ├── snd_FrameHeap.cpp │ │ ├── snd_FxChorus.cpp │ │ ├── snd_FxDelay.cpp │ │ ├── snd_FxReverbHi.cpp │ │ ├── snd_FxReverbHiDpl2.cpp │ │ ├── snd_InstancePool.cpp │ │ ├── snd_Lfo.cpp │ │ ├── snd_MemorySoundArchive.cpp │ │ ├── snd_MidiSeqPlayer.cpp │ │ ├── snd_MmlParser.cpp │ │ ├── snd_MmlSeqTrack.cpp │ │ ├── snd_MmlSeqTrackAllocator.cpp │ │ ├── snd_NandSoundArchive.cpp │ │ ├── snd_RemoteSpeaker.cpp │ │ ├── snd_RemoteSpeakerManager.cpp │ │ ├── snd_SeqFile.cpp │ │ ├── snd_SeqPlayer.cpp │ │ ├── snd_SeqSound.cpp │ │ ├── snd_SeqSoundHandle.cpp │ │ ├── snd_SeqTrack.cpp │ │ ├── snd_Sound3DActor.cpp │ │ ├── snd_Sound3DListener.cpp │ │ ├── snd_Sound3DManager.cpp │ │ ├── snd_SoundActor.cpp │ │ ├── snd_SoundArchive.cpp │ │ ├── snd_SoundArchiveFile.cpp │ │ ├── snd_SoundArchiveLoader.cpp │ │ ├── snd_SoundArchivePlayer.cpp │ │ ├── snd_SoundHandle.cpp │ │ ├── snd_SoundHeap.cpp │ │ ├── snd_SoundPlayer.cpp │ │ ├── snd_SoundStartable.cpp │ │ ├── snd_SoundSystem.cpp │ │ ├── snd_SoundThread.cpp │ │ ├── snd_StrmChannel.cpp │ │ ├── snd_StrmFile.cpp │ │ ├── snd_StrmPlayer.cpp │ │ ├── snd_StrmSound.cpp │ │ ├── snd_StrmSoundHandle.cpp │ │ ├── snd_Task.cpp │ │ ├── snd_TaskManager.cpp │ │ ├── snd_TaskThread.cpp │ │ ├── snd_Util.cpp │ │ ├── snd_Voice.cpp │ │ ├── snd_VoiceManager.cpp │ │ ├── snd_WaveFile.cpp │ │ ├── snd_WaveSound.cpp │ │ ├── snd_WaveSoundHandle.cpp │ │ ├── snd_WsdFile.cpp │ │ ├── snd_WsdPlayer.cpp │ │ └── snd_adpcm.cpp │ └── ut │ │ ├── ut_CharStrmReader.cpp │ │ ├── ut_CharWriter.cpp │ │ ├── ut_DvdFileStream.cpp │ │ ├── ut_DvdLockedFileStream.cpp │ │ ├── ut_FileStream.cpp │ │ ├── ut_Font.cpp │ │ ├── ut_IOStream.cpp │ │ ├── ut_LinkList.cpp │ │ ├── ut_LockedCache.cpp │ │ ├── ut_NandFileStream.cpp │ │ ├── ut_ResFont.cpp │ │ ├── ut_ResFontBase.cpp │ │ ├── ut_RomFont.cpp │ │ ├── ut_TagProcessorBase.cpp │ │ ├── ut_TextWriterBase.cpp │ │ ├── ut_binaryFileFormat.cpp │ │ └── ut_list.cpp ├── revolution │ ├── AI │ │ └── ai.c │ ├── ARC │ │ └── arc.c │ ├── AX │ │ ├── AX.c │ │ ├── AXAlloc.c │ │ ├── AXAux.c │ │ ├── AXCL.c │ │ ├── AXComp.c │ │ ├── AXOut.c │ │ ├── AXProf.c │ │ ├── AXSPB.c │ │ ├── AXVPB.c │ │ └── DSPCode.c │ ├── AXFX │ │ ├── AXFXChorus.c │ │ ├── AXFXDelay.c │ │ ├── AXFXHooks.c │ │ ├── AXFXLfoTable.c │ │ ├── AXFXReverbHi.c │ │ ├── AXFXReverbHiDpl2.c │ │ └── AXFXSrcCoef.c │ ├── BASE │ │ └── PPCArch.c │ ├── BTE │ │ ├── MODULE_LICENSE_APACHE2 │ │ ├── NOTICE │ │ ├── README │ │ ├── audio_a2dp_hw │ │ │ └── audio_a2dp_hw.c │ │ ├── bta │ │ │ ├── ag │ │ │ │ ├── bta_ag_act.c │ │ │ │ ├── bta_ag_api.c │ │ │ │ ├── bta_ag_at.c │ │ │ │ ├── bta_ag_cfg.c │ │ │ │ ├── bta_ag_ci.c │ │ │ │ ├── bta_ag_cmd.c │ │ │ │ ├── bta_ag_main.c │ │ │ │ ├── bta_ag_rfc.c │ │ │ │ ├── bta_ag_sco.c │ │ │ │ └── bta_ag_sdp.c │ │ │ ├── ar │ │ │ │ └── bta_ar.c │ │ │ ├── av │ │ │ │ ├── bta_av_aact.c │ │ │ │ ├── bta_av_act.c │ │ │ │ ├── bta_av_api.c │ │ │ │ ├── bta_av_cfg.c │ │ │ │ ├── bta_av_ci.c │ │ │ │ ├── bta_av_main.c │ │ │ │ ├── bta_av_sbc.c │ │ │ │ └── bta_av_ssm.c │ │ │ ├── dm │ │ │ │ ├── bta_dm_act.c │ │ │ │ ├── bta_dm_api.c │ │ │ │ ├── bta_dm_cfg.c │ │ │ │ ├── bta_dm_ci.c │ │ │ │ ├── bta_dm_main.c │ │ │ │ ├── bta_dm_pm.c │ │ │ │ └── bta_dm_sco.c │ │ │ ├── fs │ │ │ │ ├── bta_fs_cfg.c │ │ │ │ └── bta_fs_ci.c │ │ │ ├── gatt │ │ │ │ ├── bta_gattc_act.c │ │ │ │ ├── bta_gattc_api.c │ │ │ │ ├── bta_gattc_cache.c │ │ │ │ ├── bta_gattc_ci.c │ │ │ │ ├── bta_gattc_main.c │ │ │ │ ├── bta_gattc_utils.c │ │ │ │ ├── bta_gatts_act.c │ │ │ │ ├── bta_gatts_api.c │ │ │ │ ├── bta_gatts_main.c │ │ │ │ └── bta_gatts_utils.c │ │ │ ├── hh │ │ │ │ ├── bta_hh_act.c │ │ │ │ ├── bta_hh_api.c │ │ │ │ ├── bta_hh_cfg.c │ │ │ │ ├── bta_hh_main.c │ │ │ │ └── bta_hh_utils.c │ │ │ ├── hl │ │ │ │ ├── bta_hl_act.c │ │ │ │ ├── bta_hl_api.c │ │ │ │ ├── bta_hl_ci.c │ │ │ │ ├── bta_hl_main.c │ │ │ │ ├── bta_hl_sdp.c │ │ │ │ └── bta_hl_utils.c │ │ │ ├── jv │ │ │ │ ├── bta_jv_act.c │ │ │ │ ├── bta_jv_api.c │ │ │ │ ├── bta_jv_cfg.c │ │ │ │ └── bta_jv_main.c │ │ │ ├── pan │ │ │ │ ├── bta_pan_act.c │ │ │ │ ├── bta_pan_api.c │ │ │ │ ├── bta_pan_ci.c │ │ │ │ └── bta_pan_main.c │ │ │ ├── pb │ │ │ │ └── bta_pbs_cfg.c │ │ │ └── sys │ │ │ │ ├── bd.c │ │ │ │ ├── bta_sys_cfg.c │ │ │ │ ├── bta_sys_ci.c │ │ │ │ ├── bta_sys_conn.c │ │ │ │ ├── bta_sys_main.c │ │ │ │ ├── ptim.c │ │ │ │ └── utl.c │ │ ├── btif │ │ │ ├── co │ │ │ │ ├── bta_ag_co.c │ │ │ │ ├── bta_av_co.c │ │ │ │ ├── bta_dm_co.c │ │ │ │ ├── bta_fs_co.c │ │ │ │ ├── bta_hh_co.c │ │ │ │ ├── bta_hl_co.c │ │ │ │ ├── bta_pan_co.c │ │ │ │ └── bta_sys_co.c │ │ │ └── src │ │ │ │ ├── bluetooth.c │ │ │ │ ├── btif_av.c │ │ │ │ ├── btif_config.c │ │ │ │ ├── btif_config_util.cpp │ │ │ │ ├── btif_core.c │ │ │ │ ├── btif_dm.c │ │ │ │ ├── btif_hf.c │ │ │ │ ├── btif_hh.c │ │ │ │ ├── btif_hl.c │ │ │ │ ├── btif_media_task.c │ │ │ │ ├── btif_pan.c │ │ │ │ ├── btif_profile_queue.c │ │ │ │ ├── btif_rc.c │ │ │ │ ├── btif_sm.c │ │ │ │ ├── btif_sock.c │ │ │ │ ├── btif_sock_rfc.c │ │ │ │ ├── btif_sock_sdp.c │ │ │ │ ├── btif_sock_thread.c │ │ │ │ ├── btif_sock_util.c │ │ │ │ ├── btif_storage.c │ │ │ │ └── btif_util.c │ │ ├── embdrv │ │ │ └── sbc │ │ │ │ └── encoder │ │ │ │ └── srce │ │ │ │ ├── sbc_analysis.c │ │ │ │ ├── sbc_dct.c │ │ │ │ ├── sbc_dct_coeffs.c │ │ │ │ ├── sbc_enc_bit_alloc_mono.c │ │ │ │ ├── sbc_enc_bit_alloc_ste.c │ │ │ │ ├── sbc_enc_coeffs.c │ │ │ │ ├── sbc_encoder.c │ │ │ │ └── sbc_packing.c │ │ ├── gki │ │ │ ├── common │ │ │ │ ├── gki_buffer.c │ │ │ │ ├── gki_debug.c │ │ │ │ └── gki_time.c │ │ │ └── ulinux │ │ │ │ └── gki_ulinux.c │ │ ├── hci │ │ │ └── src │ │ │ │ ├── bt_hci_bdroid.c │ │ │ │ ├── bt_hw.c │ │ │ │ ├── btsnoop.c │ │ │ │ ├── hci_h4.c │ │ │ │ ├── hci_mct.c │ │ │ │ ├── hcisu_h2.c │ │ │ │ ├── lpm.c │ │ │ │ ├── userial.c │ │ │ │ ├── userial_mct.c │ │ │ │ └── utils.c │ │ ├── main │ │ │ ├── bte_conf.c │ │ │ ├── bte_init.c │ │ │ ├── bte_logmsg.c │ │ │ ├── bte_main.c │ │ │ └── bte_version.c │ │ ├── rvl │ │ │ └── gki_ppc.c │ │ ├── stack │ │ │ ├── a2dp │ │ │ │ ├── a2d_api.c │ │ │ │ └── a2d_sbc.c │ │ │ ├── avct │ │ │ │ ├── avct_api.c │ │ │ │ ├── avct_ccb.c │ │ │ │ ├── avct_l2c.c │ │ │ │ ├── avct_lcb.c │ │ │ │ └── avct_lcb_act.c │ │ │ ├── avdt │ │ │ │ ├── avdt_ad.c │ │ │ │ ├── avdt_api.c │ │ │ │ ├── avdt_ccb.c │ │ │ │ ├── avdt_ccb_act.c │ │ │ │ ├── avdt_l2c.c │ │ │ │ ├── avdt_msg.c │ │ │ │ ├── avdt_scb.c │ │ │ │ └── avdt_scb_act.c │ │ │ ├── avrc │ │ │ │ ├── avrc_api.c │ │ │ │ ├── avrc_opt.c │ │ │ │ └── avrc_sdp.c │ │ │ ├── bnep │ │ │ │ ├── bnep_api.c │ │ │ │ ├── bnep_main.c │ │ │ │ └── bnep_utils.c │ │ │ ├── btm │ │ │ │ ├── btm_acl.c │ │ │ │ ├── btm_ble.c │ │ │ │ ├── btm_ble_addr.c │ │ │ │ ├── btm_ble_bgconn.c │ │ │ │ ├── btm_ble_gap.c │ │ │ │ ├── btm_dev.c │ │ │ │ ├── btm_devctl.c │ │ │ │ ├── btm_inq.c │ │ │ │ ├── btm_main.c │ │ │ │ ├── btm_pm.c │ │ │ │ ├── btm_sco.c │ │ │ │ └── btm_sec.c │ │ │ ├── btu │ │ │ │ ├── btu_hcif.c │ │ │ │ ├── btu_init.c │ │ │ │ └── btu_task.c │ │ │ ├── gatt │ │ │ │ ├── att_protocol.c │ │ │ │ ├── gatt_api.c │ │ │ │ ├── gatt_attr.c │ │ │ │ ├── gatt_auth.c │ │ │ │ ├── gatt_cl.c │ │ │ │ ├── gatt_db.c │ │ │ │ ├── gatt_main.c │ │ │ │ ├── gatt_sr.c │ │ │ │ └── gatt_utils.c │ │ │ ├── hcic │ │ │ │ ├── hciblecmds.c │ │ │ │ └── hcicmds.c │ │ │ ├── hid │ │ │ │ ├── hidh_api.c │ │ │ │ └── hidh_conn.c │ │ │ ├── l2cap │ │ │ │ ├── l2c_api.c │ │ │ │ ├── l2c_ble.c │ │ │ │ ├── l2c_csm.c │ │ │ │ ├── l2c_fcr.c │ │ │ │ ├── l2c_link.c │ │ │ │ ├── l2c_main.c │ │ │ │ ├── l2c_ucd.c │ │ │ │ └── l2c_utils.c │ │ │ ├── mcap │ │ │ │ ├── mca_api.c │ │ │ │ ├── mca_cact.c │ │ │ │ ├── mca_csm.c │ │ │ │ ├── mca_dact.c │ │ │ │ ├── mca_dsm.c │ │ │ │ ├── mca_l2c.c │ │ │ │ └── mca_main.c │ │ │ ├── pan │ │ │ │ ├── pan_api.c │ │ │ │ ├── pan_main.c │ │ │ │ └── pan_utils.c │ │ │ ├── rfcomm │ │ │ │ ├── port_api.c │ │ │ │ ├── port_rfc.c │ │ │ │ ├── port_utils.c │ │ │ │ ├── rfc_l2cap_if.c │ │ │ │ ├── rfc_mx_fsm.c │ │ │ │ ├── rfc_port_fsm.c │ │ │ │ ├── rfc_port_if.c │ │ │ │ ├── rfc_ts_frames.c │ │ │ │ └── rfc_utils.c │ │ │ ├── sdp │ │ │ │ ├── sdp_api.c │ │ │ │ ├── sdp_db.c │ │ │ │ ├── sdp_discovery.c │ │ │ │ ├── sdp_main.c │ │ │ │ ├── sdp_server.c │ │ │ │ └── sdp_utils.c │ │ │ └── smp │ │ │ │ ├── aes.c │ │ │ │ ├── smp_act.c │ │ │ │ ├── smp_api.c │ │ │ │ ├── smp_cmac.c │ │ │ │ ├── smp_keys.c │ │ │ │ ├── smp_l2c.c │ │ │ │ ├── smp_main.c │ │ │ │ └── smp_utils.c │ │ ├── udrv │ │ │ └── ulinux │ │ │ │ └── uipc.c │ │ └── utils │ │ │ └── src │ │ │ └── bt_utils.c │ ├── CNT │ │ └── cnt.c │ ├── DB │ │ └── db.c │ ├── DSP │ │ ├── dsp.c │ │ ├── dsp_debug.c │ │ └── dsp_task.c │ ├── DVD │ │ ├── dvd.c │ │ ├── dvdFatal.c │ │ ├── dvd_broadway.c │ │ ├── dvderror.c │ │ ├── dvdfs.c │ │ ├── dvdidutils.c │ │ └── dvdqueue.c │ ├── ESP │ │ └── esp.c │ ├── EUART │ │ └── euart.c │ ├── EXI │ │ ├── EXIBios.c │ │ ├── EXICommon.c │ │ └── EXIUart.c │ ├── FS │ │ └── fs.c │ ├── GX │ │ ├── GXAttr.c │ │ ├── GXBump.c │ │ ├── GXDisplayList.c │ │ ├── GXDraw.c │ │ ├── GXGeometry.c │ │ ├── GXLight.c │ │ ├── GXPixel.c │ │ └── GXTransform.c │ ├── IPC │ │ ├── ipcMain.c │ │ ├── ipcProfile.c │ │ ├── ipcclt.c │ │ └── memory.c │ ├── MEM │ │ ├── mem_allocator.c │ │ ├── mem_expHeap.c │ │ ├── mem_frameHeap.c │ │ ├── mem_heapCommon.c │ │ └── mem_list.c │ ├── MTX │ │ ├── mtx44.c │ │ ├── mtxvec.c │ │ ├── quat.c │ │ └── vec.c │ ├── NAND │ │ ├── NANDCheck.c │ │ ├── NANDCore.c │ │ ├── NANDOpenClose.c │ │ └── nand.c │ ├── NWC24 │ │ ├── NWC24Config.c │ │ ├── NWC24Download.c │ │ ├── NWC24FileApi.c │ │ ├── NWC24FriendList.c │ │ ├── NWC24Ipc.c │ │ ├── NWC24Manage.c │ │ ├── NWC24MsgObj.c │ │ ├── NWC24Parser.c │ │ ├── NWC24Schedule.c │ │ ├── NWC24SecretFList.c │ │ ├── NWC24System.c │ │ ├── NWC24Time.c │ │ └── NWC24Utils.c │ ├── NdevExi2AD │ │ ├── DebuggerDriver.c │ │ └── exi2.c │ ├── OS │ │ ├── OS.c │ │ ├── OSAlarm.c │ │ ├── OSAlloc.c │ │ ├── OSArena.c │ │ ├── OSAudioSystem.c │ │ ├── OSCache.c │ │ ├── OSContext.c │ │ ├── OSError.c │ │ ├── OSExec.c │ │ ├── OSFatal.c │ │ ├── OSFont.c │ │ ├── OSInterrupt.c │ │ ├── OSIpc.c │ │ ├── OSLink.c │ │ ├── OSMemory.c │ │ ├── OSMessage.c │ │ ├── OSMutex.c │ │ ├── OSNet.c │ │ ├── OSPlayRecord.c │ │ ├── OSReset.c │ │ ├── OSRtc.c │ │ ├── OSStateFlags.c │ │ ├── OSStateTM.c │ │ ├── OSSync.c │ │ ├── OSThread.c │ │ ├── OSTime.c │ │ ├── OSUtf.c │ │ ├── __ppc_eabi_init.c │ │ └── __start.c │ ├── PAD │ │ └── Pad.c │ ├── SC │ │ ├── scapi.c │ │ ├── scapi_prdinfo.c │ │ └── scsystem.c │ ├── SI │ │ ├── SIBios.c │ │ └── SISamplingRate.c │ ├── TPL │ │ └── TPL.c │ ├── USB │ │ └── usb.c │ ├── WENC │ │ └── wenc.c │ ├── WPAD │ │ ├── WPAD.c │ │ └── debug_msg.c │ └── WUD │ │ ├── WUD.c │ │ ├── WUDHidHost.c │ │ └── debug_msg.c └── runtime │ ├── GCN_mem_alloc.c │ ├── Gecko_ExceptionPPC.c │ ├── __init_cpp_exceptions.cpp │ ├── __mem.c │ ├── __va_arg.c │ ├── global_destructor_chain.c │ ├── ptmf.c │ └── runtime.c └── tools ├── __init__.py ├── changes_fmt.py ├── decompctx.py ├── download_tool.py ├── makeregs ├── BPRegisters.json ├── CPRegisters.json ├── XFRegisters.json └── makeregs.py ├── ninja_syntax.py ├── project.py ├── transform_dep.py └── upload_progress.py /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/.clang-format -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/.flake8 -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/README.md -------------------------------------------------------------------------------- /assets/objdiff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/assets/objdiff.png -------------------------------------------------------------------------------- /config/RSPE01_01/build.sha1: -------------------------------------------------------------------------------- 1 | 8bb422971b88b5551a37de98db69557df7b46637 build/RSPE01_01/main.dol 2 | -------------------------------------------------------------------------------- /config/RSPE01_01/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/config/RSPE01_01/config.yml -------------------------------------------------------------------------------- /config/RSPE01_01/splits.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/config/RSPE01_01/splits.txt -------------------------------------------------------------------------------- /config/RSPE01_01/symbols.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/config/RSPE01_01/symbols.txt -------------------------------------------------------------------------------- /configure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/configure.py -------------------------------------------------------------------------------- /docs/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/docs/contributing.md -------------------------------------------------------------------------------- /docs/getting_started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/docs/getting_started.md -------------------------------------------------------------------------------- /docs/splits.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/docs/splits.md -------------------------------------------------------------------------------- /docs/symbols.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/docs/symbols.md -------------------------------------------------------------------------------- /include/MSL/algorithm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/MSL/algorithm -------------------------------------------------------------------------------- /include/MSL/arith.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/MSL/arith.h -------------------------------------------------------------------------------- /include/MSL/cctype: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/MSL/cctype -------------------------------------------------------------------------------- /include/MSL/cerrno: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/MSL/cerrno -------------------------------------------------------------------------------- /include/MSL/climits: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/MSL/climits -------------------------------------------------------------------------------- /include/MSL/clocale: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/MSL/clocale -------------------------------------------------------------------------------- /include/MSL/cmath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/MSL/cmath -------------------------------------------------------------------------------- /include/MSL/cstdarg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/MSL/cstdarg -------------------------------------------------------------------------------- /include/MSL/cstddef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/MSL/cstddef -------------------------------------------------------------------------------- /include/MSL/cstdio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/MSL/cstdio -------------------------------------------------------------------------------- /include/MSL/cstdlib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/MSL/cstdlib -------------------------------------------------------------------------------- /include/MSL/cstring: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/MSL/cstring -------------------------------------------------------------------------------- /include/MSL/ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/MSL/ctype.h -------------------------------------------------------------------------------- /include/MSL/cwchar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/MSL/cwchar -------------------------------------------------------------------------------- /include/MSL/errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/MSL/errno.h -------------------------------------------------------------------------------- /include/MSL/extras.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/MSL/extras.h -------------------------------------------------------------------------------- /include/MSL/internal/FILE_POS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/MSL/internal/FILE_POS.h -------------------------------------------------------------------------------- /include/MSL/internal/fdlibm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/MSL/internal/fdlibm.h -------------------------------------------------------------------------------- /include/MSL/internal/file_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/MSL/internal/file_io.h -------------------------------------------------------------------------------- /include/MSL/internal/float.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/MSL/internal/float.h -------------------------------------------------------------------------------- /include/MSL/internal/math_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/MSL/internal/math_api.h -------------------------------------------------------------------------------- /include/MSL/internal/math_double.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/MSL/internal/math_double.h -------------------------------------------------------------------------------- /include/MSL/internal/math_ppc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/MSL/internal/math_ppc.h -------------------------------------------------------------------------------- /include/MSL/internal/math_sun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/MSL/internal/math_sun.h -------------------------------------------------------------------------------- /include/MSL/internal/mbstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/MSL/internal/mbstring.h -------------------------------------------------------------------------------- /include/MSL/internal/mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/MSL/internal/mem.h -------------------------------------------------------------------------------- /include/MSL/internal/printf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/MSL/internal/printf.h -------------------------------------------------------------------------------- /include/MSL/internal/rand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/MSL/internal/rand.h -------------------------------------------------------------------------------- /include/MSL/internal/scanf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/MSL/internal/scanf.h -------------------------------------------------------------------------------- /include/MSL/internal/strtold.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/MSL/internal/strtold.h -------------------------------------------------------------------------------- /include/MSL/internal/wchar_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/MSL/internal/wchar_io.h -------------------------------------------------------------------------------- /include/MSL/internal/wmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/MSL/internal/wmem.h -------------------------------------------------------------------------------- /include/MSL/internal/wprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/MSL/internal/wprintf.h -------------------------------------------------------------------------------- /include/MSL/internal/wstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/MSL/internal/wstring.h -------------------------------------------------------------------------------- /include/MSL/iterator: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/MSL/iterator -------------------------------------------------------------------------------- /include/MSL/limits: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/MSL/limits -------------------------------------------------------------------------------- /include/MSL/limits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/MSL/limits.h -------------------------------------------------------------------------------- /include/MSL/locale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/MSL/locale.h -------------------------------------------------------------------------------- /include/MSL/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/MSL/math.h -------------------------------------------------------------------------------- /include/MSL/new: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/MSL/new -------------------------------------------------------------------------------- /include/MSL/stdarg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/MSL/stdarg.h -------------------------------------------------------------------------------- /include/MSL/stddef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/MSL/stddef.h -------------------------------------------------------------------------------- /include/MSL/stdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/MSL/stdio.h -------------------------------------------------------------------------------- /include/MSL/stdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/MSL/stdlib.h -------------------------------------------------------------------------------- /include/MSL/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/MSL/string.h -------------------------------------------------------------------------------- /include/MSL/wchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/MSL/wchar.h -------------------------------------------------------------------------------- /include/MetroTRK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/MetroTRK.h -------------------------------------------------------------------------------- /include/Pack/RPAssert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/Pack/RPAssert.h -------------------------------------------------------------------------------- /include/Pack/RPGraphics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/Pack/RPGraphics.h -------------------------------------------------------------------------------- /include/Pack/RPKernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/Pack/RPKernel.h -------------------------------------------------------------------------------- /include/Pack/RPKernel/RPSysAvatar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/Pack/RPKernel/RPSysAvatar.h -------------------------------------------------------------------------------- /include/Pack/RPKernel/RPSysFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/Pack/RPKernel/RPSysFile.h -------------------------------------------------------------------------------- /include/Pack/RPKernel/RPSysLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/Pack/RPKernel/RPSysLayout.h -------------------------------------------------------------------------------- /include/Pack/RPSingleton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/Pack/RPSingleton.h -------------------------------------------------------------------------------- /include/Pack/RPSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/Pack/RPSystem.h -------------------------------------------------------------------------------- /include/Pack/RPSystem/RPSysSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/Pack/RPSystem/RPSysSystem.h -------------------------------------------------------------------------------- /include/Pack/RPUtility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/Pack/RPUtility.h -------------------------------------------------------------------------------- /include/Pack/types_pack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/Pack/types_pack.h -------------------------------------------------------------------------------- /include/RVLFaceLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/RVLFaceLib.h -------------------------------------------------------------------------------- /include/RVLFaceLib/RFL_Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/RVLFaceLib/RFL_Config.h -------------------------------------------------------------------------------- /include/RVLFaceLib/RFL_Controller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/RVLFaceLib/RFL_Controller.h -------------------------------------------------------------------------------- /include/RVLFaceLib/RFL_Database.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/RVLFaceLib/RFL_Database.h -------------------------------------------------------------------------------- /include/RVLFaceLib/RFL_Icon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/RVLFaceLib/RFL_Icon.h -------------------------------------------------------------------------------- /include/RVLFaceLib/RFL_Model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/RVLFaceLib/RFL_Model.h -------------------------------------------------------------------------------- /include/RVLFaceLib/RFL_NANDLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/RVLFaceLib/RFL_NANDLoader.h -------------------------------------------------------------------------------- /include/RVLFaceLib/RFL_NWC24.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/RVLFaceLib/RFL_NWC24.h -------------------------------------------------------------------------------- /include/RVLFaceLib/RFL_System.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/RVLFaceLib/RFL_System.h -------------------------------------------------------------------------------- /include/RVLFaceLib/RFL_Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/RVLFaceLib/RFL_Types.h -------------------------------------------------------------------------------- /include/RVLFaceLib/RFLi_Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/RVLFaceLib/RFLi_Config.h -------------------------------------------------------------------------------- /include/RVLFaceLib/RFLi_Database.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/RVLFaceLib/RFLi_Database.h -------------------------------------------------------------------------------- /include/RVLFaceLib/RFLi_Format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/RVLFaceLib/RFLi_Format.h -------------------------------------------------------------------------------- /include/RVLFaceLib/RFLi_MakeTex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/RVLFaceLib/RFLi_MakeTex.h -------------------------------------------------------------------------------- /include/RVLFaceLib/RFLi_Model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/RVLFaceLib/RFLi_Model.h -------------------------------------------------------------------------------- /include/RVLFaceLib/RFLi_System.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/RVLFaceLib/RFLi_System.h -------------------------------------------------------------------------------- /include/RVLFaceLib/RFLi_Texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/RVLFaceLib/RFLi_Texture.h -------------------------------------------------------------------------------- /include/RVLFaceLib/RFLi_Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/RVLFaceLib/RFLi_Types.h -------------------------------------------------------------------------------- /include/__doxygen.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/__doxygen.hpp -------------------------------------------------------------------------------- /include/compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/compat.h -------------------------------------------------------------------------------- /include/decomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/decomp.h -------------------------------------------------------------------------------- /include/egg/audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/egg/audio.h -------------------------------------------------------------------------------- /include/egg/audio/eggAudio3DActor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/egg/audio/eggAudio3DActor.h -------------------------------------------------------------------------------- /include/egg/audio/eggAudio3DMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/egg/audio/eggAudio3DMgr.h -------------------------------------------------------------------------------- /include/egg/audio/eggAudioExpMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/egg/audio/eggAudioExpMgr.h -------------------------------------------------------------------------------- /include/egg/audio/eggAudioFxMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/egg/audio/eggAudioFxMgr.h -------------------------------------------------------------------------------- /include/egg/audio/eggAudioHeapMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/egg/audio/eggAudioHeapMgr.h -------------------------------------------------------------------------------- /include/egg/audio/eggAudioMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/egg/audio/eggAudioMgr.h -------------------------------------------------------------------------------- /include/egg/audio/eggAudioSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/egg/audio/eggAudioSystem.h -------------------------------------------------------------------------------- /include/egg/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/egg/core.h -------------------------------------------------------------------------------- /include/egg/core/eggAllocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/egg/core/eggAllocator.h -------------------------------------------------------------------------------- /include/egg/core/eggArchive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/egg/core/eggArchive.h -------------------------------------------------------------------------------- /include/egg/core/eggAsyncDisplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/egg/core/eggAsyncDisplay.h -------------------------------------------------------------------------------- /include/egg/core/eggBitFlag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/egg/core/eggBitFlag.h -------------------------------------------------------------------------------- /include/egg/core/eggCntFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/egg/core/eggCntFile.h -------------------------------------------------------------------------------- /include/egg/core/eggColorFader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/egg/core/eggColorFader.h -------------------------------------------------------------------------------- /include/egg/core/eggController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/egg/core/eggController.h -------------------------------------------------------------------------------- /include/egg/core/eggDecomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/egg/core/eggDecomp.h -------------------------------------------------------------------------------- /include/egg/core/eggDisplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/egg/core/eggDisplay.h -------------------------------------------------------------------------------- /include/egg/core/eggDisposer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/egg/core/eggDisposer.h -------------------------------------------------------------------------------- /include/egg/core/eggDvdFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/egg/core/eggDvdFile.h -------------------------------------------------------------------------------- /include/egg/core/eggDvdRipper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/egg/core/eggDvdRipper.h -------------------------------------------------------------------------------- /include/egg/core/eggExpHeap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/egg/core/eggExpHeap.h -------------------------------------------------------------------------------- /include/egg/core/eggFader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/egg/core/eggFader.h -------------------------------------------------------------------------------- /include/egg/core/eggFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/egg/core/eggFile.h -------------------------------------------------------------------------------- /include/egg/core/eggFrmHeap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/egg/core/eggFrmHeap.h -------------------------------------------------------------------------------- /include/egg/core/eggGraphicsFifo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/egg/core/eggGraphicsFifo.h -------------------------------------------------------------------------------- /include/egg/core/eggHeap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/egg/core/eggHeap.h -------------------------------------------------------------------------------- /include/egg/core/eggIBinary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/egg/core/eggIBinary.h -------------------------------------------------------------------------------- /include/egg/core/eggProcessMeter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/egg/core/eggProcessMeter.h -------------------------------------------------------------------------------- /include/egg/core/eggScene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/egg/core/eggScene.h -------------------------------------------------------------------------------- /include/egg/core/eggSceneCreator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/egg/core/eggSceneCreator.h -------------------------------------------------------------------------------- /include/egg/core/eggSceneManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/egg/core/eggSceneManager.h -------------------------------------------------------------------------------- /include/egg/core/eggSingleton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/egg/core/eggSingleton.h -------------------------------------------------------------------------------- /include/egg/core/eggStopWatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/egg/core/eggStopWatch.h -------------------------------------------------------------------------------- /include/egg/core/eggStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/egg/core/eggStream.h -------------------------------------------------------------------------------- /include/egg/core/eggSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/egg/core/eggSystem.h -------------------------------------------------------------------------------- /include/egg/core/eggTaskThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/egg/core/eggTaskThread.h -------------------------------------------------------------------------------- /include/egg/core/eggThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/egg/core/eggThread.h -------------------------------------------------------------------------------- /include/egg/core/eggVideo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/egg/core/eggVideo.h -------------------------------------------------------------------------------- /include/egg/core/eggWatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/egg/core/eggWatch.h -------------------------------------------------------------------------------- /include/egg/core/eggXfb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/egg/core/eggXfb.h -------------------------------------------------------------------------------- /include/egg/core/eggXfbManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/egg/core/eggXfbManager.h -------------------------------------------------------------------------------- /include/egg/gfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/egg/gfx.h -------------------------------------------------------------------------------- /include/egg/gfx/eggResTIMG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/egg/gfx/eggResTIMG.h -------------------------------------------------------------------------------- /include/egg/gfxe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/egg/gfxe.h -------------------------------------------------------------------------------- /include/egg/gfxe/eggAnalizeDL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/egg/gfxe/eggAnalizeDL.h -------------------------------------------------------------------------------- /include/egg/gfxe/eggCapTexture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/egg/gfxe/eggCapTexture.h -------------------------------------------------------------------------------- /include/egg/gfxe/eggCpuTexture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/egg/gfxe/eggCpuTexture.h -------------------------------------------------------------------------------- /include/egg/gfxe/eggDrawGX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/egg/gfxe/eggDrawGX.h -------------------------------------------------------------------------------- /include/egg/gfxe/eggDrawPathBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/egg/gfxe/eggDrawPathBase.h -------------------------------------------------------------------------------- /include/egg/gfxe/eggDrawPathBloom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/egg/gfxe/eggDrawPathBloom.h -------------------------------------------------------------------------------- /include/egg/gfxe/eggDrawPathDOF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/egg/gfxe/eggDrawPathDOF.h -------------------------------------------------------------------------------- /include/egg/gfxe/eggDrawPathHDR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/egg/gfxe/eggDrawPathHDR.h -------------------------------------------------------------------------------- /include/egg/gfxe/eggFog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/egg/gfxe/eggFog.h -------------------------------------------------------------------------------- /include/egg/gfxe/eggFogManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/egg/gfxe/eggFogManager.h -------------------------------------------------------------------------------- /include/egg/gfxe/eggFrustum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/egg/gfxe/eggFrustum.h -------------------------------------------------------------------------------- /include/egg/gfxe/eggG3DUtility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/egg/gfxe/eggG3DUtility.h -------------------------------------------------------------------------------- /include/egg/gfxe/eggGXUtility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/egg/gfxe/eggGXUtility.h -------------------------------------------------------------------------------- /include/egg/gfxe/eggGfxEngine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/egg/gfxe/eggGfxEngine.h -------------------------------------------------------------------------------- /include/egg/gfxe/eggIDrawGX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/egg/gfxe/eggIDrawGX.h -------------------------------------------------------------------------------- /include/egg/gfxe/eggIScnProc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/egg/gfxe/eggIScnProc.h -------------------------------------------------------------------------------- /include/egg/gfxe/eggIScnProcModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/egg/gfxe/eggIScnProcModel.h -------------------------------------------------------------------------------- /include/egg/gfxe/eggLightManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/egg/gfxe/eggLightManager.h -------------------------------------------------------------------------------- /include/egg/gfxe/eggLightObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/egg/gfxe/eggLightObject.h -------------------------------------------------------------------------------- /include/egg/gfxe/eggLightTexture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/egg/gfxe/eggLightTexture.h -------------------------------------------------------------------------------- /include/egg/gfxe/eggModelEx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/egg/gfxe/eggModelEx.h -------------------------------------------------------------------------------- /include/egg/gfxe/eggModelSnapshot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/egg/gfxe/eggModelSnapshot.h -------------------------------------------------------------------------------- /include/egg/gfxe/eggPostEffectHDR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/egg/gfxe/eggPostEffectHDR.h -------------------------------------------------------------------------------- /include/egg/gfxe/eggScnRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/egg/gfxe/eggScnRenderer.h -------------------------------------------------------------------------------- /include/egg/gfxe/eggScnRootEx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/egg/gfxe/eggScnRootEx.h -------------------------------------------------------------------------------- /include/egg/gfxe/eggScreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/egg/gfxe/eggScreen.h -------------------------------------------------------------------------------- /include/egg/gfxe/eggShadowTexture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/egg/gfxe/eggShadowTexture.h -------------------------------------------------------------------------------- /include/egg/gfxe/eggStateGX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/egg/gfxe/eggStateGX.h -------------------------------------------------------------------------------- /include/egg/gfxe/eggTextureBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/egg/gfxe/eggTextureBuffer.h -------------------------------------------------------------------------------- /include/egg/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/egg/math.h -------------------------------------------------------------------------------- /include/egg/math/eggMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/egg/math/eggMath.h -------------------------------------------------------------------------------- /include/egg/math/eggMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/egg/math/eggMatrix.h -------------------------------------------------------------------------------- /include/egg/math/eggQuat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/egg/math/eggQuat.h -------------------------------------------------------------------------------- /include/egg/math/eggVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/egg/math/eggVector.h -------------------------------------------------------------------------------- /include/egg/prim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/egg/prim.h -------------------------------------------------------------------------------- /include/egg/prim/eggAssert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/egg/prim/eggAssert.h -------------------------------------------------------------------------------- /include/egg/prim/eggBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/egg/prim/eggBuffer.h -------------------------------------------------------------------------------- /include/egg/prim/eggNw4rList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/egg/prim/eggNw4rList.h -------------------------------------------------------------------------------- /include/egg/types_egg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/egg/types_egg.h -------------------------------------------------------------------------------- /include/egg/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/egg/util.h -------------------------------------------------------------------------------- /include/egg/util/eggException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/egg/util/eggException.h -------------------------------------------------------------------------------- /include/egg/util/eggMsgRes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/egg/util/eggMsgRes.h -------------------------------------------------------------------------------- /include/homebuttonMiniLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/homebuttonMiniLib.h -------------------------------------------------------------------------------- /include/homebuttonMiniLib/HBMApi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/homebuttonMiniLib/HBMApi.h -------------------------------------------------------------------------------- /include/homebuttonMiniLib/HBMBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/homebuttonMiniLib/HBMBase.h -------------------------------------------------------------------------------- /include/homebuttonMiniLib/HBMRes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/homebuttonMiniLib/HBMRes.h -------------------------------------------------------------------------------- /include/lang.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/lang.h -------------------------------------------------------------------------------- /include/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/macros.h -------------------------------------------------------------------------------- /include/macros.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/macros.inc -------------------------------------------------------------------------------- /include/nw4r/ef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/ef.h -------------------------------------------------------------------------------- /include/nw4r/ef/ef_activitylist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/ef/ef_activitylist.h -------------------------------------------------------------------------------- /include/nw4r/ef/ef_animcurve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/ef/ef_animcurve.h -------------------------------------------------------------------------------- /include/nw4r/ef/ef_creationqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/ef/ef_creationqueue.h -------------------------------------------------------------------------------- /include/nw4r/ef/ef_drawinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/ef/ef_drawinfo.h -------------------------------------------------------------------------------- /include/nw4r/ef/ef_draworder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/ef/ef_draworder.h -------------------------------------------------------------------------------- /include/nw4r/ef/ef_drawstrategy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/ef/ef_drawstrategy.h -------------------------------------------------------------------------------- /include/nw4r/ef/ef_effect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/ef/ef_effect.h -------------------------------------------------------------------------------- /include/nw4r/ef/ef_effectsystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/ef/ef_effectsystem.h -------------------------------------------------------------------------------- /include/nw4r/ef/ef_emitter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/ef/ef_emitter.h -------------------------------------------------------------------------------- /include/nw4r/ef/ef_emitterform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/ef/ef_emitterform.h -------------------------------------------------------------------------------- /include/nw4r/ef/ef_handle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/ef/ef_handle.h -------------------------------------------------------------------------------- /include/nw4r/ef/ef_linkedobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/ef/ef_linkedobject.h -------------------------------------------------------------------------------- /include/nw4r/ef/ef_memorymanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/ef/ef_memorymanager.h -------------------------------------------------------------------------------- /include/nw4r/ef/ef_particle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/ef/ef_particle.h -------------------------------------------------------------------------------- /include/nw4r/ef/ef_random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/ef/ef_random.h -------------------------------------------------------------------------------- /include/nw4r/ef/ef_res_animcurve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/ef/ef_res_animcurve.h -------------------------------------------------------------------------------- /include/nw4r/ef/ef_res_emitter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/ef/ef_res_emitter.h -------------------------------------------------------------------------------- /include/nw4r/ef/ef_res_texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/ef/ef_res_texture.h -------------------------------------------------------------------------------- /include/nw4r/ef/ef_resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/ef/ef_resource.h -------------------------------------------------------------------------------- /include/nw4r/ef/ef_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/ef/ef_types.h -------------------------------------------------------------------------------- /include/nw4r/ef/ef_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/ef/ef_util.h -------------------------------------------------------------------------------- /include/nw4r/ef/emform/ef_cube.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/ef/emform/ef_cube.h -------------------------------------------------------------------------------- /include/nw4r/ef/emform/ef_disc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/ef/emform/ef_disc.h -------------------------------------------------------------------------------- /include/nw4r/ef/emform/ef_emform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/ef/emform/ef_emform.h -------------------------------------------------------------------------------- /include/nw4r/ef/emform/ef_line.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/ef/emform/ef_line.h -------------------------------------------------------------------------------- /include/nw4r/ef/emform/ef_point.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/ef/emform/ef_point.h -------------------------------------------------------------------------------- /include/nw4r/ef/emform/ef_sphere.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/ef/emform/ef_sphere.h -------------------------------------------------------------------------------- /include/nw4r/ef/emform/ef_torus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/ef/emform/ef_torus.h -------------------------------------------------------------------------------- /include/nw4r/g3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/g3d.h -------------------------------------------------------------------------------- /include/nw4r/g3d/g3d_3dsmax.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/g3d/g3d_3dsmax.h -------------------------------------------------------------------------------- /include/nw4r/g3d/g3d_anmchr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/g3d/g3d_anmchr.h -------------------------------------------------------------------------------- /include/nw4r/g3d/g3d_anmclr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/g3d/g3d_anmclr.h -------------------------------------------------------------------------------- /include/nw4r/g3d/g3d_anmobj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/g3d/g3d_anmobj.h -------------------------------------------------------------------------------- /include/nw4r/g3d/g3d_anmscn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/g3d/g3d_anmscn.h -------------------------------------------------------------------------------- /include/nw4r/g3d/g3d_anmshp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/g3d/g3d_anmshp.h -------------------------------------------------------------------------------- /include/nw4r/g3d/g3d_anmtexpat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/g3d/g3d_anmtexpat.h -------------------------------------------------------------------------------- /include/nw4r/g3d/g3d_anmtexsrt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/g3d/g3d_anmtexsrt.h -------------------------------------------------------------------------------- /include/nw4r/g3d/g3d_anmvis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/g3d/g3d_anmvis.h -------------------------------------------------------------------------------- /include/nw4r/g3d/g3d_basic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/g3d/g3d_basic.h -------------------------------------------------------------------------------- /include/nw4r/g3d/g3d_calcmaterial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/g3d/g3d_calcmaterial.h -------------------------------------------------------------------------------- /include/nw4r/g3d/g3d_calcview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/g3d/g3d_calcview.h -------------------------------------------------------------------------------- /include/nw4r/g3d/g3d_calcvtx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/g3d/g3d_calcvtx.h -------------------------------------------------------------------------------- /include/nw4r/g3d/g3d_calcworld.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/g3d/g3d_calcworld.h -------------------------------------------------------------------------------- /include/nw4r/g3d/g3d_camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/g3d/g3d_camera.h -------------------------------------------------------------------------------- /include/nw4r/g3d/g3d_dcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/g3d/g3d_dcc.h -------------------------------------------------------------------------------- /include/nw4r/g3d/g3d_draw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/g3d/g3d_draw.h -------------------------------------------------------------------------------- /include/nw4r/g3d/g3d_draw1mat1shp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/g3d/g3d_draw1mat1shp.h -------------------------------------------------------------------------------- /include/nw4r/g3d/g3d_fog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/g3d/g3d_fog.h -------------------------------------------------------------------------------- /include/nw4r/g3d/g3d_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/g3d/g3d_init.h -------------------------------------------------------------------------------- /include/nw4r/g3d/g3d_light.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/g3d/g3d_light.h -------------------------------------------------------------------------------- /include/nw4r/g3d/g3d_maya.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/g3d/g3d_maya.h -------------------------------------------------------------------------------- /include/nw4r/g3d/g3d_obj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/g3d/g3d_obj.h -------------------------------------------------------------------------------- /include/nw4r/g3d/g3d_rtti.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/g3d/g3d_rtti.h -------------------------------------------------------------------------------- /include/nw4r/g3d/g3d_scnmdl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/g3d/g3d_scnmdl.h -------------------------------------------------------------------------------- /include/nw4r/g3d/g3d_scnmdlsmpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/g3d/g3d_scnmdlsmpl.h -------------------------------------------------------------------------------- /include/nw4r/g3d/g3d_scnobj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/g3d/g3d_scnobj.h -------------------------------------------------------------------------------- /include/nw4r/g3d/g3d_scnproc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/g3d/g3d_scnproc.h -------------------------------------------------------------------------------- /include/nw4r/g3d/g3d_scnrfl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/g3d/g3d_scnrfl.h -------------------------------------------------------------------------------- /include/nw4r/g3d/g3d_scnroot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/g3d/g3d_scnroot.h -------------------------------------------------------------------------------- /include/nw4r/g3d/g3d_state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/g3d/g3d_state.h -------------------------------------------------------------------------------- /include/nw4r/g3d/g3d_workmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/g3d/g3d_workmem.h -------------------------------------------------------------------------------- /include/nw4r/g3d/g3d_xsi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/g3d/g3d_xsi.h -------------------------------------------------------------------------------- /include/nw4r/g3d/platform/g3d_cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/g3d/platform/g3d_cpu.h -------------------------------------------------------------------------------- /include/nw4r/g3d/platform/g3d_gpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/g3d/platform/g3d_gpu.h -------------------------------------------------------------------------------- /include/nw4r/g3d/res/g3d_resanm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/g3d/res/g3d_resanm.h -------------------------------------------------------------------------------- /include/nw4r/g3d/res/g3d_resdict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/g3d/res/g3d_resdict.h -------------------------------------------------------------------------------- /include/nw4r/g3d/res/g3d_resfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/g3d/res/g3d_resfile.h -------------------------------------------------------------------------------- /include/nw4r/g3d/res/g3d_resmat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/g3d/res/g3d_resmat.h -------------------------------------------------------------------------------- /include/nw4r/g3d/res/g3d_resmdl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/g3d/res/g3d_resmdl.h -------------------------------------------------------------------------------- /include/nw4r/g3d/res/g3d_resnode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/g3d/res/g3d_resnode.h -------------------------------------------------------------------------------- /include/nw4r/g3d/res/g3d_respltt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/g3d/res/g3d_respltt.h -------------------------------------------------------------------------------- /include/nw4r/g3d/res/g3d_resshp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/g3d/res/g3d_resshp.h -------------------------------------------------------------------------------- /include/nw4r/g3d/res/g3d_restev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/g3d/res/g3d_restev.h -------------------------------------------------------------------------------- /include/nw4r/g3d/res/g3d_restex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/g3d/res/g3d_restex.h -------------------------------------------------------------------------------- /include/nw4r/g3d/res/g3d_resvtx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/g3d/res/g3d_resvtx.h -------------------------------------------------------------------------------- /include/nw4r/lyt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/lyt.h -------------------------------------------------------------------------------- /include/nw4r/lyt/lyt_animation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/lyt/lyt_animation.h -------------------------------------------------------------------------------- /include/nw4r/lyt/lyt_bounding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/lyt/lyt_bounding.h -------------------------------------------------------------------------------- /include/nw4r/lyt/lyt_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/lyt/lyt_common.h -------------------------------------------------------------------------------- /include/nw4r/lyt/lyt_drawInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/lyt/lyt_drawInfo.h -------------------------------------------------------------------------------- /include/nw4r/lyt/lyt_group.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/lyt/lyt_group.h -------------------------------------------------------------------------------- /include/nw4r/lyt/lyt_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/lyt/lyt_init.h -------------------------------------------------------------------------------- /include/nw4r/lyt/lyt_layout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/lyt/lyt_layout.h -------------------------------------------------------------------------------- /include/nw4r/lyt/lyt_material.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/lyt/lyt_material.h -------------------------------------------------------------------------------- /include/nw4r/lyt/lyt_pane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/lyt/lyt_pane.h -------------------------------------------------------------------------------- /include/nw4r/lyt/lyt_picture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/lyt/lyt_picture.h -------------------------------------------------------------------------------- /include/nw4r/lyt/lyt_resources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/lyt/lyt_resources.h -------------------------------------------------------------------------------- /include/nw4r/lyt/lyt_texMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/lyt/lyt_texMap.h -------------------------------------------------------------------------------- /include/nw4r/lyt/lyt_textBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/lyt/lyt_textBox.h -------------------------------------------------------------------------------- /include/nw4r/lyt/lyt_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/lyt/lyt_types.h -------------------------------------------------------------------------------- /include/nw4r/lyt/lyt_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/lyt/lyt_window.h -------------------------------------------------------------------------------- /include/nw4r/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/math.h -------------------------------------------------------------------------------- /include/nw4r/math/math_arithmetic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/math/math_arithmetic.h -------------------------------------------------------------------------------- /include/nw4r/math/math_constant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/math/math_constant.h -------------------------------------------------------------------------------- /include/nw4r/math/math_geometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/math/math_geometry.h -------------------------------------------------------------------------------- /include/nw4r/math/math_triangular.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/math/math_triangular.h -------------------------------------------------------------------------------- /include/nw4r/math/math_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/math/math_types.h -------------------------------------------------------------------------------- /include/nw4r/snd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/snd.h -------------------------------------------------------------------------------- /include/nw4r/snd/snd_AxManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/snd/snd_AxManager.h -------------------------------------------------------------------------------- /include/nw4r/snd/snd_AxVoice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/snd/snd_AxVoice.h -------------------------------------------------------------------------------- /include/nw4r/snd/snd_AxfxImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/snd/snd_AxfxImpl.h -------------------------------------------------------------------------------- /include/nw4r/snd/snd_Bank.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/snd/snd_Bank.h -------------------------------------------------------------------------------- /include/nw4r/snd/snd_BankFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/snd/snd_BankFile.h -------------------------------------------------------------------------------- /include/nw4r/snd/snd_BasicPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/snd/snd_BasicPlayer.h -------------------------------------------------------------------------------- /include/nw4r/snd/snd_BasicSound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/snd/snd_BasicSound.h -------------------------------------------------------------------------------- /include/nw4r/snd/snd_Channel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/snd/snd_Channel.h -------------------------------------------------------------------------------- /include/nw4r/snd/snd_EnvGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/snd/snd_EnvGenerator.h -------------------------------------------------------------------------------- /include/nw4r/snd/snd_FrameHeap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/snd/snd_FrameHeap.h -------------------------------------------------------------------------------- /include/nw4r/snd/snd_FxBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/snd/snd_FxBase.h -------------------------------------------------------------------------------- /include/nw4r/snd/snd_FxChorus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/snd/snd_FxChorus.h -------------------------------------------------------------------------------- /include/nw4r/snd/snd_FxDelay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/snd/snd_FxDelay.h -------------------------------------------------------------------------------- /include/nw4r/snd/snd_FxReverbHi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/snd/snd_FxReverbHi.h -------------------------------------------------------------------------------- /include/nw4r/snd/snd_InstancePool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/snd/snd_InstancePool.h -------------------------------------------------------------------------------- /include/nw4r/snd/snd_Lfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/snd/snd_Lfo.h -------------------------------------------------------------------------------- /include/nw4r/snd/snd_MmlParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/snd/snd_MmlParser.h -------------------------------------------------------------------------------- /include/nw4r/snd/snd_MmlSeqTrack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/snd/snd_MmlSeqTrack.h -------------------------------------------------------------------------------- /include/nw4r/snd/snd_MoveValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/snd/snd_MoveValue.h -------------------------------------------------------------------------------- /include/nw4r/snd/snd_PlayerHeap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/snd/snd_PlayerHeap.h -------------------------------------------------------------------------------- /include/nw4r/snd/snd_SeqFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/snd/snd_SeqFile.h -------------------------------------------------------------------------------- /include/nw4r/snd/snd_SeqPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/snd/snd_SeqPlayer.h -------------------------------------------------------------------------------- /include/nw4r/snd/snd_SeqSound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/snd/snd_SeqSound.h -------------------------------------------------------------------------------- /include/nw4r/snd/snd_SeqTrack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/snd/snd_SeqTrack.h -------------------------------------------------------------------------------- /include/nw4r/snd/snd_Sound3DActor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/snd/snd_Sound3DActor.h -------------------------------------------------------------------------------- /include/nw4r/snd/snd_SoundActor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/snd/snd_SoundActor.h -------------------------------------------------------------------------------- /include/nw4r/snd/snd_SoundArchive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/snd/snd_SoundArchive.h -------------------------------------------------------------------------------- /include/nw4r/snd/snd_SoundHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/snd/snd_SoundHandle.h -------------------------------------------------------------------------------- /include/nw4r/snd/snd_SoundHeap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/snd/snd_SoundHeap.h -------------------------------------------------------------------------------- /include/nw4r/snd/snd_SoundPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/snd/snd_SoundPlayer.h -------------------------------------------------------------------------------- /include/nw4r/snd/snd_SoundSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/snd/snd_SoundSystem.h -------------------------------------------------------------------------------- /include/nw4r/snd/snd_SoundThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/snd/snd_SoundThread.h -------------------------------------------------------------------------------- /include/nw4r/snd/snd_StrmChannel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/snd/snd_StrmChannel.h -------------------------------------------------------------------------------- /include/nw4r/snd/snd_StrmFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/snd/snd_StrmFile.h -------------------------------------------------------------------------------- /include/nw4r/snd/snd_StrmPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/snd/snd_StrmPlayer.h -------------------------------------------------------------------------------- /include/nw4r/snd/snd_StrmSound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/snd/snd_StrmSound.h -------------------------------------------------------------------------------- /include/nw4r/snd/snd_Task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/snd/snd_Task.h -------------------------------------------------------------------------------- /include/nw4r/snd/snd_TaskManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/snd/snd_TaskManager.h -------------------------------------------------------------------------------- /include/nw4r/snd/snd_TaskThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/snd/snd_TaskThread.h -------------------------------------------------------------------------------- /include/nw4r/snd/snd_Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/snd/snd_Types.h -------------------------------------------------------------------------------- /include/nw4r/snd/snd_Util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/snd/snd_Util.h -------------------------------------------------------------------------------- /include/nw4r/snd/snd_Voice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/snd/snd_Voice.h -------------------------------------------------------------------------------- /include/nw4r/snd/snd_VoiceManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/snd/snd_VoiceManager.h -------------------------------------------------------------------------------- /include/nw4r/snd/snd_WaveFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/snd/snd_WaveFile.h -------------------------------------------------------------------------------- /include/nw4r/snd/snd_WaveSound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/snd/snd_WaveSound.h -------------------------------------------------------------------------------- /include/nw4r/snd/snd_WsdFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/snd/snd_WsdFile.h -------------------------------------------------------------------------------- /include/nw4r/snd/snd_WsdPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/snd/snd_WsdPlayer.h -------------------------------------------------------------------------------- /include/nw4r/snd/snd_adpcm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/snd/snd_adpcm.h -------------------------------------------------------------------------------- /include/nw4r/types_nw4r.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/types_nw4r.h -------------------------------------------------------------------------------- /include/nw4r/ut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/ut.h -------------------------------------------------------------------------------- /include/nw4r/ut/ut_CharStrmReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/ut/ut_CharStrmReader.h -------------------------------------------------------------------------------- /include/nw4r/ut/ut_CharWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/ut/ut_CharWriter.h -------------------------------------------------------------------------------- /include/nw4r/ut/ut_Color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/ut/ut_Color.h -------------------------------------------------------------------------------- /include/nw4r/ut/ut_DvdFileStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/ut/ut_DvdFileStream.h -------------------------------------------------------------------------------- /include/nw4r/ut/ut_FileStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/ut/ut_FileStream.h -------------------------------------------------------------------------------- /include/nw4r/ut/ut_Font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/ut/ut_Font.h -------------------------------------------------------------------------------- /include/nw4r/ut/ut_IOStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/ut/ut_IOStream.h -------------------------------------------------------------------------------- /include/nw4r/ut/ut_LinkList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/ut/ut_LinkList.h -------------------------------------------------------------------------------- /include/nw4r/ut/ut_LockedCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/ut/ut_LockedCache.h -------------------------------------------------------------------------------- /include/nw4r/ut/ut_NandFileStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/ut/ut_NandFileStream.h -------------------------------------------------------------------------------- /include/nw4r/ut/ut_NonCopyable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/ut/ut_NonCopyable.h -------------------------------------------------------------------------------- /include/nw4r/ut/ut_Rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/ut/ut_Rect.h -------------------------------------------------------------------------------- /include/nw4r/ut/ut_ResFont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/ut/ut_ResFont.h -------------------------------------------------------------------------------- /include/nw4r/ut/ut_ResFontBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/ut/ut_ResFontBase.h -------------------------------------------------------------------------------- /include/nw4r/ut/ut_RomFont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/ut/ut_RomFont.h -------------------------------------------------------------------------------- /include/nw4r/ut/ut_TagProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/ut/ut_TagProcessor.h -------------------------------------------------------------------------------- /include/nw4r/ut/ut_TextWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/ut/ut_TextWriter.h -------------------------------------------------------------------------------- /include/nw4r/ut/ut_TextWriterBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/ut/ut_TextWriterBase.h -------------------------------------------------------------------------------- /include/nw4r/ut/ut_WideTextWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/ut/ut_WideTextWriter.h -------------------------------------------------------------------------------- /include/nw4r/ut/ut_algorithm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/ut/ut_algorithm.h -------------------------------------------------------------------------------- /include/nw4r/ut/ut_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/ut/ut_list.h -------------------------------------------------------------------------------- /include/nw4r/ut/ut_lock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/nw4r/ut/ut_lock.h -------------------------------------------------------------------------------- /include/revolution/AI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/AI.h -------------------------------------------------------------------------------- /include/revolution/AI/ai.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/AI/ai.h -------------------------------------------------------------------------------- /include/revolution/AI/ai_hardware.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/AI/ai_hardware.h -------------------------------------------------------------------------------- /include/revolution/ARC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/ARC.h -------------------------------------------------------------------------------- /include/revolution/ARC/arc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/ARC/arc.h -------------------------------------------------------------------------------- /include/revolution/AX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/AX.h -------------------------------------------------------------------------------- /include/revolution/AX/AX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/AX/AX.h -------------------------------------------------------------------------------- /include/revolution/AX/AXAlloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/AX/AXAlloc.h -------------------------------------------------------------------------------- /include/revolution/AX/AXAux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/AX/AXAux.h -------------------------------------------------------------------------------- /include/revolution/AX/AXCL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/AX/AXCL.h -------------------------------------------------------------------------------- /include/revolution/AX/AXComp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/AX/AXComp.h -------------------------------------------------------------------------------- /include/revolution/AX/AXOut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/AX/AXOut.h -------------------------------------------------------------------------------- /include/revolution/AX/AXPB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/AX/AXPB.h -------------------------------------------------------------------------------- /include/revolution/AX/AXProf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/AX/AXProf.h -------------------------------------------------------------------------------- /include/revolution/AX/AXSPB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/AX/AXSPB.h -------------------------------------------------------------------------------- /include/revolution/AX/AXVPB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/AX/AXVPB.h -------------------------------------------------------------------------------- /include/revolution/AX/DSPCode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/AX/DSPCode.h -------------------------------------------------------------------------------- /include/revolution/AXFX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/AXFX.h -------------------------------------------------------------------------------- /include/revolution/AXFX/AXFXDelay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/AXFX/AXFXDelay.h -------------------------------------------------------------------------------- /include/revolution/AXFX/AXFXHooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/AXFX/AXFXHooks.h -------------------------------------------------------------------------------- /include/revolution/BASE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/BASE.h -------------------------------------------------------------------------------- /include/revolution/BASE/PPCArch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/BASE/PPCArch.h -------------------------------------------------------------------------------- /include/revolution/BTE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/BTE.h -------------------------------------------------------------------------------- /include/revolution/BTE/MODULE_LICENSE_APACHE2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /include/revolution/BTE/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/BTE/NOTICE -------------------------------------------------------------------------------- /include/revolution/BTE/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/BTE/README -------------------------------------------------------------------------------- /include/revolution/CARD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/CARD.h -------------------------------------------------------------------------------- /include/revolution/CARD/CARD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/CARD/CARD.h -------------------------------------------------------------------------------- /include/revolution/CNT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/CNT.h -------------------------------------------------------------------------------- /include/revolution/CNT/cnt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/CNT/cnt.h -------------------------------------------------------------------------------- /include/revolution/DB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/DB.h -------------------------------------------------------------------------------- /include/revolution/DB/db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/DB/db.h -------------------------------------------------------------------------------- /include/revolution/DSP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/DSP.h -------------------------------------------------------------------------------- /include/revolution/DSP/dsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/DSP/dsp.h -------------------------------------------------------------------------------- /include/revolution/DSP/dsp_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/DSP/dsp_debug.h -------------------------------------------------------------------------------- /include/revolution/DSP/dsp_task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/DSP/dsp_task.h -------------------------------------------------------------------------------- /include/revolution/DVD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/DVD.h -------------------------------------------------------------------------------- /include/revolution/DVD/dvd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/DVD/dvd.h -------------------------------------------------------------------------------- /include/revolution/DVD/dvderror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/DVD/dvderror.h -------------------------------------------------------------------------------- /include/revolution/DVD/dvdfatal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/DVD/dvdfatal.h -------------------------------------------------------------------------------- /include/revolution/DVD/dvdfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/DVD/dvdfs.h -------------------------------------------------------------------------------- /include/revolution/DVD/dvdidutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/DVD/dvdidutils.h -------------------------------------------------------------------------------- /include/revolution/DVD/dvdqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/DVD/dvdqueue.h -------------------------------------------------------------------------------- /include/revolution/ESP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/ESP.h -------------------------------------------------------------------------------- /include/revolution/ESP/esp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/ESP/esp.h -------------------------------------------------------------------------------- /include/revolution/EUART.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/EUART.h -------------------------------------------------------------------------------- /include/revolution/EUART/euart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/EUART/euart.h -------------------------------------------------------------------------------- /include/revolution/EXI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/EXI.h -------------------------------------------------------------------------------- /include/revolution/EXI/EXIBios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/EXI/EXIBios.h -------------------------------------------------------------------------------- /include/revolution/EXI/EXICommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/EXI/EXICommon.h -------------------------------------------------------------------------------- /include/revolution/EXI/EXIUart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/EXI/EXIUart.h -------------------------------------------------------------------------------- /include/revolution/FS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/FS.h -------------------------------------------------------------------------------- /include/revolution/FS/fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/FS/fs.h -------------------------------------------------------------------------------- /include/revolution/GX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/GX.h -------------------------------------------------------------------------------- /include/revolution/GX/GXAttr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/GX/GXAttr.h -------------------------------------------------------------------------------- /include/revolution/GX/GXBump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/GX/GXBump.h -------------------------------------------------------------------------------- /include/revolution/GX/GXDraw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/GX/GXDraw.h -------------------------------------------------------------------------------- /include/revolution/GX/GXFifo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/GX/GXFifo.h -------------------------------------------------------------------------------- /include/revolution/GX/GXFrameBuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/GX/GXFrameBuf.h -------------------------------------------------------------------------------- /include/revolution/GX/GXGeometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/GX/GXGeometry.h -------------------------------------------------------------------------------- /include/revolution/GX/GXHardware.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/GX/GXHardware.h -------------------------------------------------------------------------------- /include/revolution/GX/GXInit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/GX/GXInit.h -------------------------------------------------------------------------------- /include/revolution/GX/GXInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/GX/GXInternal.h -------------------------------------------------------------------------------- /include/revolution/GX/GXLight.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/GX/GXLight.h -------------------------------------------------------------------------------- /include/revolution/GX/GXMisc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/GX/GXMisc.h -------------------------------------------------------------------------------- /include/revolution/GX/GXPixel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/GX/GXPixel.h -------------------------------------------------------------------------------- /include/revolution/GX/GXTev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/GX/GXTev.h -------------------------------------------------------------------------------- /include/revolution/GX/GXTexture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/GX/GXTexture.h -------------------------------------------------------------------------------- /include/revolution/GX/GXTransform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/GX/GXTransform.h -------------------------------------------------------------------------------- /include/revolution/GX/GXTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/GX/GXTypes.h -------------------------------------------------------------------------------- /include/revolution/GX/GXVert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/GX/GXVert.h -------------------------------------------------------------------------------- /include/revolution/IPC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/IPC.h -------------------------------------------------------------------------------- /include/revolution/IPC/ipcMain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/IPC/ipcMain.h -------------------------------------------------------------------------------- /include/revolution/IPC/ipcProfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/IPC/ipcProfile.h -------------------------------------------------------------------------------- /include/revolution/IPC/ipcclt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/IPC/ipcclt.h -------------------------------------------------------------------------------- /include/revolution/IPC/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/IPC/memory.h -------------------------------------------------------------------------------- /include/revolution/KPAD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/KPAD.h -------------------------------------------------------------------------------- /include/revolution/KPAD/KPAD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/KPAD/KPAD.h -------------------------------------------------------------------------------- /include/revolution/MEM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/MEM.h -------------------------------------------------------------------------------- /include/revolution/MEM/mem_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/MEM/mem_list.h -------------------------------------------------------------------------------- /include/revolution/MTX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/MTX.h -------------------------------------------------------------------------------- /include/revolution/MTX/mtx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/MTX/mtx.h -------------------------------------------------------------------------------- /include/revolution/MTX/mtx44.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/MTX/mtx44.h -------------------------------------------------------------------------------- /include/revolution/MTX/mtxtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/MTX/mtxtypes.h -------------------------------------------------------------------------------- /include/revolution/MTX/mtxvec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/MTX/mtxvec.h -------------------------------------------------------------------------------- /include/revolution/MTX/quat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/MTX/quat.h -------------------------------------------------------------------------------- /include/revolution/MTX/vec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/MTX/vec.h -------------------------------------------------------------------------------- /include/revolution/NAND.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/NAND.h -------------------------------------------------------------------------------- /include/revolution/NAND/NANDCheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/NAND/NANDCheck.h -------------------------------------------------------------------------------- /include/revolution/NAND/NANDCore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/NAND/NANDCore.h -------------------------------------------------------------------------------- /include/revolution/NAND/nand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/NAND/nand.h -------------------------------------------------------------------------------- /include/revolution/NWC24.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/NWC24.h -------------------------------------------------------------------------------- /include/revolution/NWC24/NWC24Ipc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/NWC24/NWC24Ipc.h -------------------------------------------------------------------------------- /include/revolution/NdevExi2AD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/NdevExi2AD.h -------------------------------------------------------------------------------- /include/revolution/OS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/OS.h -------------------------------------------------------------------------------- /include/revolution/OS/OS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/OS/OS.h -------------------------------------------------------------------------------- /include/revolution/OS/OSAddress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/OS/OSAddress.h -------------------------------------------------------------------------------- /include/revolution/OS/OSAlarm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/OS/OSAlarm.h -------------------------------------------------------------------------------- /include/revolution/OS/OSAlloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/OS/OSAlloc.h -------------------------------------------------------------------------------- /include/revolution/OS/OSArena.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/OS/OSArena.h -------------------------------------------------------------------------------- /include/revolution/OS/OSCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/OS/OSCache.h -------------------------------------------------------------------------------- /include/revolution/OS/OSContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/OS/OSContext.h -------------------------------------------------------------------------------- /include/revolution/OS/OSError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/OS/OSError.h -------------------------------------------------------------------------------- /include/revolution/OS/OSExec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/OS/OSExec.h -------------------------------------------------------------------------------- /include/revolution/OS/OSFastCast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/OS/OSFastCast.h -------------------------------------------------------------------------------- /include/revolution/OS/OSFatal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/OS/OSFatal.h -------------------------------------------------------------------------------- /include/revolution/OS/OSFont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/OS/OSFont.h -------------------------------------------------------------------------------- /include/revolution/OS/OSHardware.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/OS/OSHardware.h -------------------------------------------------------------------------------- /include/revolution/OS/OSInterrupt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/OS/OSInterrupt.h -------------------------------------------------------------------------------- /include/revolution/OS/OSIpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/OS/OSIpc.h -------------------------------------------------------------------------------- /include/revolution/OS/OSLink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/OS/OSLink.h -------------------------------------------------------------------------------- /include/revolution/OS/OSMemory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/OS/OSMemory.h -------------------------------------------------------------------------------- /include/revolution/OS/OSMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/OS/OSMessage.h -------------------------------------------------------------------------------- /include/revolution/OS/OSMutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/OS/OSMutex.h -------------------------------------------------------------------------------- /include/revolution/OS/OSNet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/OS/OSNet.h -------------------------------------------------------------------------------- /include/revolution/OS/OSReset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/OS/OSReset.h -------------------------------------------------------------------------------- /include/revolution/OS/OSRtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/OS/OSRtc.h -------------------------------------------------------------------------------- /include/revolution/OS/OSStateTM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/OS/OSStateTM.h -------------------------------------------------------------------------------- /include/revolution/OS/OSSync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/OS/OSSync.h -------------------------------------------------------------------------------- /include/revolution/OS/OSThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/OS/OSThread.h -------------------------------------------------------------------------------- /include/revolution/OS/OSTime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/OS/OSTime.h -------------------------------------------------------------------------------- /include/revolution/OS/OSUtf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/OS/OSUtf.h -------------------------------------------------------------------------------- /include/revolution/PAD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/PAD.h -------------------------------------------------------------------------------- /include/revolution/PAD/Pad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/PAD/Pad.h -------------------------------------------------------------------------------- /include/revolution/SC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/SC.h -------------------------------------------------------------------------------- /include/revolution/SC/scapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/SC/scapi.h -------------------------------------------------------------------------------- /include/revolution/SC/scsystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/SC/scsystem.h -------------------------------------------------------------------------------- /include/revolution/SI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/SI.h -------------------------------------------------------------------------------- /include/revolution/SI/SIBios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/SI/SIBios.h -------------------------------------------------------------------------------- /include/revolution/SI/SIHardware.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/SI/SIHardware.h -------------------------------------------------------------------------------- /include/revolution/TPL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/TPL.h -------------------------------------------------------------------------------- /include/revolution/TPL/TPL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/TPL/TPL.h -------------------------------------------------------------------------------- /include/revolution/USB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/USB.h -------------------------------------------------------------------------------- /include/revolution/USB/usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/USB/usb.h -------------------------------------------------------------------------------- /include/revolution/VF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/VF.h -------------------------------------------------------------------------------- /include/revolution/VF/d_vf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/VF/d_vf.h -------------------------------------------------------------------------------- /include/revolution/VI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/VI.h -------------------------------------------------------------------------------- /include/revolution/VI/vi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/VI/vi.h -------------------------------------------------------------------------------- /include/revolution/VI/vi3in1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/VI/vi3in1.h -------------------------------------------------------------------------------- /include/revolution/VI/vihardware.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/VI/vihardware.h -------------------------------------------------------------------------------- /include/revolution/WENC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/WENC.h -------------------------------------------------------------------------------- /include/revolution/WENC/wenc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/WENC/wenc.h -------------------------------------------------------------------------------- /include/revolution/WPAD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/WPAD.h -------------------------------------------------------------------------------- /include/revolution/WPAD/WPAD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/WPAD/WPAD.h -------------------------------------------------------------------------------- /include/revolution/WPAD/WPADMem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/WPAD/WPADMem.h -------------------------------------------------------------------------------- /include/revolution/WPAD/debug_msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/WPAD/debug_msg.h -------------------------------------------------------------------------------- /include/revolution/WUD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/WUD.h -------------------------------------------------------------------------------- /include/revolution/WUD/WUD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/WUD/WUD.h -------------------------------------------------------------------------------- /include/revolution/WUD/WUDHidHost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/WUD/WUDHidHost.h -------------------------------------------------------------------------------- /include/revolution/WUD/debug_msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/WUD/debug_msg.h -------------------------------------------------------------------------------- /include/revolution/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/revolution/version.h -------------------------------------------------------------------------------- /include/runtime/GCN_mem_alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/runtime/GCN_mem_alloc.h -------------------------------------------------------------------------------- /include/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/include/types.h -------------------------------------------------------------------------------- /orig/RSPE01_01/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/MSL/e_acos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/MSL/e_acos.c -------------------------------------------------------------------------------- /src/MSL/e_asin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/MSL/e_asin.c -------------------------------------------------------------------------------- /src/MSL/e_atan2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/MSL/e_atan2.c -------------------------------------------------------------------------------- /src/MSL/e_fmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/MSL/e_fmod.c -------------------------------------------------------------------------------- /src/MSL/e_pow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/MSL/e_pow.c -------------------------------------------------------------------------------- /src/MSL/e_rem_pio2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/MSL/e_rem_pio2.c -------------------------------------------------------------------------------- /src/MSL/e_sqrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/MSL/e_sqrt.c -------------------------------------------------------------------------------- /src/MSL/float.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/MSL/float.c -------------------------------------------------------------------------------- /src/MSL/k_cos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/MSL/k_cos.c -------------------------------------------------------------------------------- /src/MSL/k_rem_pio2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/MSL/k_rem_pio2.c -------------------------------------------------------------------------------- /src/MSL/k_sin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/MSL/k_sin.c -------------------------------------------------------------------------------- /src/MSL/k_tan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/MSL/k_tan.c -------------------------------------------------------------------------------- /src/MSL/math_ppc.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | double nan(const char* arg) { 4 | #pragma unused(arg) 5 | } -------------------------------------------------------------------------------- /src/MSL/s_atan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/MSL/s_atan.c -------------------------------------------------------------------------------- /src/MSL/s_ceil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/MSL/s_ceil.c -------------------------------------------------------------------------------- /src/MSL/s_copysign.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/MSL/s_copysign.c -------------------------------------------------------------------------------- /src/MSL/s_cos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/MSL/s_cos.c -------------------------------------------------------------------------------- /src/MSL/s_floor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/MSL/s_floor.c -------------------------------------------------------------------------------- /src/MSL/s_frexp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/MSL/s_frexp.c -------------------------------------------------------------------------------- /src/MSL/s_ldexp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/MSL/s_ldexp.c -------------------------------------------------------------------------------- /src/MSL/s_modf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/MSL/s_modf.c -------------------------------------------------------------------------------- /src/MSL/s_sin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/MSL/s_sin.c -------------------------------------------------------------------------------- /src/MSL/s_tan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/MSL/s_tan.c -------------------------------------------------------------------------------- /src/MSL/w_acos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/MSL/w_acos.c -------------------------------------------------------------------------------- /src/MSL/w_asin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/MSL/w_asin.c -------------------------------------------------------------------------------- /src/MSL/w_atan2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/MSL/w_atan2.c -------------------------------------------------------------------------------- /src/MSL/w_fmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/MSL/w_fmod.c -------------------------------------------------------------------------------- /src/MSL/w_pow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/MSL/w_pow.c -------------------------------------------------------------------------------- /src/MSL/w_sqrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/MSL/w_sqrt.c -------------------------------------------------------------------------------- /src/Pack/RPKernel/RPSysAvatar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/Pack/RPKernel/RPSysAvatar.cpp -------------------------------------------------------------------------------- /src/Pack/RPKernel/RPSysFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/Pack/RPKernel/RPSysFile.cpp -------------------------------------------------------------------------------- /src/Pack/RPKernel/RPSysKokeshi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/Pack/RPKernel/RPSysKokeshi.cpp -------------------------------------------------------------------------------- /src/Pack/RPKernel/RPSysLayout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/Pack/RPKernel/RPSysLayout.cpp -------------------------------------------------------------------------------- /src/Pack/RPKernel/RPSysMessage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/Pack/RPKernel/RPSysMessage.cpp -------------------------------------------------------------------------------- /src/Pack/RPKernel/RPSysMiddleDB.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/Pack/RPKernel/RPSysMiddleDB.cpp -------------------------------------------------------------------------------- /src/Pack/RPSystem/RPSysTagParms.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/Pack/RPSystem/RPSysTagParms.cpp -------------------------------------------------------------------------------- /src/RVLFaceLib/RFL_Controller.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/RVLFaceLib/RFL_Controller.c -------------------------------------------------------------------------------- /src/RVLFaceLib/RFL_DataUtility.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/RVLFaceLib/RFL_DataUtility.c -------------------------------------------------------------------------------- /src/RVLFaceLib/RFL_Database.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/RVLFaceLib/RFL_Database.c -------------------------------------------------------------------------------- /src/RVLFaceLib/RFL_Format.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/RVLFaceLib/RFL_Format.c -------------------------------------------------------------------------------- /src/RVLFaceLib/RFL_HiddenDatabase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/RVLFaceLib/RFL_HiddenDatabase.c -------------------------------------------------------------------------------- /src/RVLFaceLib/RFL_Icon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/RVLFaceLib/RFL_Icon.c -------------------------------------------------------------------------------- /src/RVLFaceLib/RFL_MakeRandomFace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/RVLFaceLib/RFL_MakeRandomFace.c -------------------------------------------------------------------------------- /src/RVLFaceLib/RFL_MakeTex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/RVLFaceLib/RFL_MakeTex.c -------------------------------------------------------------------------------- /src/RVLFaceLib/RFL_MiddleDatabase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/RVLFaceLib/RFL_MiddleDatabase.c -------------------------------------------------------------------------------- /src/RVLFaceLib/RFL_Model.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/RVLFaceLib/RFL_Model.c -------------------------------------------------------------------------------- /src/RVLFaceLib/RFL_NANDAccess.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/RVLFaceLib/RFL_NANDAccess.c -------------------------------------------------------------------------------- /src/RVLFaceLib/RFL_NANDLoader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/RVLFaceLib/RFL_NANDLoader.c -------------------------------------------------------------------------------- /src/RVLFaceLib/RFL_NWC24.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/RVLFaceLib/RFL_NWC24.c -------------------------------------------------------------------------------- /src/RVLFaceLib/RFL_System.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/RVLFaceLib/RFL_System.c -------------------------------------------------------------------------------- /src/egg/audio/eggAudio3DActor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/egg/audio/eggAudio3DActor.cpp -------------------------------------------------------------------------------- /src/egg/audio/eggAudioExpMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/egg/audio/eggAudioExpMgr.cpp -------------------------------------------------------------------------------- /src/egg/audio/eggAudioFxMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/egg/audio/eggAudioFxMgr.cpp -------------------------------------------------------------------------------- /src/egg/audio/eggAudioHeapMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/egg/audio/eggAudioHeapMgr.cpp -------------------------------------------------------------------------------- /src/egg/audio/eggAudioMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/egg/audio/eggAudioMgr.cpp -------------------------------------------------------------------------------- /src/egg/audio/eggAudioSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/egg/audio/eggAudioSystem.cpp -------------------------------------------------------------------------------- /src/egg/core/eggAllocator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/egg/core/eggAllocator.cpp -------------------------------------------------------------------------------- /src/egg/core/eggArchive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/egg/core/eggArchive.cpp -------------------------------------------------------------------------------- /src/egg/core/eggAsyncDisplay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/egg/core/eggAsyncDisplay.cpp -------------------------------------------------------------------------------- /src/egg/core/eggCntFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/egg/core/eggCntFile.cpp -------------------------------------------------------------------------------- /src/egg/core/eggColorFader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/egg/core/eggColorFader.cpp -------------------------------------------------------------------------------- /src/egg/core/eggController.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/egg/core/eggController.cpp -------------------------------------------------------------------------------- /src/egg/core/eggDecomp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/egg/core/eggDecomp.cpp -------------------------------------------------------------------------------- /src/egg/core/eggDisplay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/egg/core/eggDisplay.cpp -------------------------------------------------------------------------------- /src/egg/core/eggDisposer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/egg/core/eggDisposer.cpp -------------------------------------------------------------------------------- /src/egg/core/eggDvdFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/egg/core/eggDvdFile.cpp -------------------------------------------------------------------------------- /src/egg/core/eggDvdRipper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/egg/core/eggDvdRipper.cpp -------------------------------------------------------------------------------- /src/egg/core/eggExpHeap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/egg/core/eggExpHeap.cpp -------------------------------------------------------------------------------- /src/egg/core/eggFrmHeap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/egg/core/eggFrmHeap.cpp -------------------------------------------------------------------------------- /src/egg/core/eggGraphicsFifo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/egg/core/eggGraphicsFifo.cpp -------------------------------------------------------------------------------- /src/egg/core/eggHeap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/egg/core/eggHeap.cpp -------------------------------------------------------------------------------- /src/egg/core/eggProcessMeter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/egg/core/eggProcessMeter.cpp -------------------------------------------------------------------------------- /src/egg/core/eggScene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/egg/core/eggScene.cpp -------------------------------------------------------------------------------- /src/egg/core/eggSceneManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/egg/core/eggSceneManager.cpp -------------------------------------------------------------------------------- /src/egg/core/eggStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/egg/core/eggStream.cpp -------------------------------------------------------------------------------- /src/egg/core/eggSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/egg/core/eggSystem.cpp -------------------------------------------------------------------------------- /src/egg/core/eggTaskThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/egg/core/eggTaskThread.cpp -------------------------------------------------------------------------------- /src/egg/core/eggThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/egg/core/eggThread.cpp -------------------------------------------------------------------------------- /src/egg/core/eggVideo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/egg/core/eggVideo.cpp -------------------------------------------------------------------------------- /src/egg/core/eggXfb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/egg/core/eggXfb.cpp -------------------------------------------------------------------------------- /src/egg/core/eggXfbManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/egg/core/eggXfbManager.cpp -------------------------------------------------------------------------------- /src/egg/gfxe/eggAnalizeDL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/egg/gfxe/eggAnalizeDL.cpp -------------------------------------------------------------------------------- /src/egg/gfxe/eggCapTexture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/egg/gfxe/eggCapTexture.cpp -------------------------------------------------------------------------------- /src/egg/gfxe/eggCpuTexture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/egg/gfxe/eggCpuTexture.cpp -------------------------------------------------------------------------------- /src/egg/gfxe/eggDrawGX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/egg/gfxe/eggDrawGX.cpp -------------------------------------------------------------------------------- /src/egg/gfxe/eggDrawPathBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/egg/gfxe/eggDrawPathBase.cpp -------------------------------------------------------------------------------- /src/egg/gfxe/eggDrawPathHDR.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/egg/gfxe/eggDrawPathHDR.cpp -------------------------------------------------------------------------------- /src/egg/gfxe/eggFog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/egg/gfxe/eggFog.cpp -------------------------------------------------------------------------------- /src/egg/gfxe/eggFogManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/egg/gfxe/eggFogManager.cpp -------------------------------------------------------------------------------- /src/egg/gfxe/eggFrustum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/egg/gfxe/eggFrustum.cpp -------------------------------------------------------------------------------- /src/egg/gfxe/eggGXUtility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/egg/gfxe/eggGXUtility.cpp -------------------------------------------------------------------------------- /src/egg/gfxe/eggGfxEngine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/egg/gfxe/eggGfxEngine.cpp -------------------------------------------------------------------------------- /src/egg/gfxe/eggIDrawGX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/egg/gfxe/eggIDrawGX.cpp -------------------------------------------------------------------------------- /src/egg/gfxe/eggIScnProc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/egg/gfxe/eggIScnProc.cpp -------------------------------------------------------------------------------- /src/egg/gfxe/eggModelEx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/egg/gfxe/eggModelEx.cpp -------------------------------------------------------------------------------- /src/egg/gfxe/eggModelSnapshot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/egg/gfxe/eggModelSnapshot.cpp -------------------------------------------------------------------------------- /src/egg/gfxe/eggPostEffectBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/egg/gfxe/eggPostEffectBase.cpp -------------------------------------------------------------------------------- /src/egg/gfxe/eggPostEffectBlur.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/egg/gfxe/eggPostEffectBlur.cpp -------------------------------------------------------------------------------- /src/egg/gfxe/eggPostEffectHDR.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/egg/gfxe/eggPostEffectHDR.cpp -------------------------------------------------------------------------------- /src/egg/gfxe/eggScnRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/egg/gfxe/eggScnRenderer.cpp -------------------------------------------------------------------------------- /src/egg/gfxe/eggScnRootEx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/egg/gfxe/eggScnRootEx.cpp -------------------------------------------------------------------------------- /src/egg/gfxe/eggScreen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/egg/gfxe/eggScreen.cpp -------------------------------------------------------------------------------- /src/egg/gfxe/eggStateGX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/egg/gfxe/eggStateGX.cpp -------------------------------------------------------------------------------- /src/egg/gfxe/eggTextureBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/egg/gfxe/eggTextureBuffer.cpp -------------------------------------------------------------------------------- /src/egg/math/eggMath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/egg/math/eggMath.cpp -------------------------------------------------------------------------------- /src/egg/math/eggMatrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/egg/math/eggMatrix.cpp -------------------------------------------------------------------------------- /src/egg/math/eggQuat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/egg/math/eggQuat.cpp -------------------------------------------------------------------------------- /src/egg/math/eggVector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/egg/math/eggVector.cpp -------------------------------------------------------------------------------- /src/egg/prim/eggAssert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/egg/prim/eggAssert.cpp -------------------------------------------------------------------------------- /src/egg/util/eggEffect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/egg/util/eggEffect.cpp -------------------------------------------------------------------------------- /src/egg/util/eggException.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/egg/util/eggException.cpp -------------------------------------------------------------------------------- /src/egg/util/eggMsgRes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/egg/util/eggMsgRes.cpp -------------------------------------------------------------------------------- /src/homebuttonMiniLib/HBMBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/homebuttonMiniLib/HBMBase.cpp -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/nw4r/ef/ef_creationqueue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/nw4r/ef/ef_creationqueue.cpp -------------------------------------------------------------------------------- /src/nw4r/ef/ef_draworder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/nw4r/ef/ef_draworder.cpp -------------------------------------------------------------------------------- /src/nw4r/ef/ef_effect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/nw4r/ef/ef_effect.cpp -------------------------------------------------------------------------------- /src/nw4r/ef/ef_effectsystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/nw4r/ef/ef_effectsystem.cpp -------------------------------------------------------------------------------- /src/nw4r/ef/ef_emform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/nw4r/ef/ef_emform.cpp -------------------------------------------------------------------------------- /src/nw4r/ef/ef_emitter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/nw4r/ef/ef_emitter.cpp -------------------------------------------------------------------------------- /src/nw4r/ef/ef_emitterform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/nw4r/ef/ef_emitterform.cpp -------------------------------------------------------------------------------- /src/nw4r/ef/ef_handle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/nw4r/ef/ef_handle.cpp -------------------------------------------------------------------------------- /src/nw4r/ef/ef_particle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/nw4r/ef/ef_particle.cpp -------------------------------------------------------------------------------- /src/nw4r/ef/ef_particlemanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/nw4r/ef/ef_particlemanager.cpp -------------------------------------------------------------------------------- /src/nw4r/ef/ef_resource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/nw4r/ef/ef_resource.cpp -------------------------------------------------------------------------------- /src/nw4r/ef/ef_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/nw4r/ef/ef_util.cpp -------------------------------------------------------------------------------- /src/nw4r/ef/emform/ef_cube.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/nw4r/ef/emform/ef_cube.cpp -------------------------------------------------------------------------------- /src/nw4r/ef/emform/ef_cylinder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/nw4r/ef/emform/ef_cylinder.cpp -------------------------------------------------------------------------------- /src/nw4r/ef/emform/ef_disc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/nw4r/ef/emform/ef_disc.cpp -------------------------------------------------------------------------------- /src/nw4r/ef/emform/ef_emform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/nw4r/ef/emform/ef_emform.cpp -------------------------------------------------------------------------------- /src/nw4r/ef/emform/ef_line.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/nw4r/ef/emform/ef_line.cpp -------------------------------------------------------------------------------- /src/nw4r/ef/emform/ef_point.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/nw4r/ef/emform/ef_point.cpp -------------------------------------------------------------------------------- /src/nw4r/ef/emform/ef_sphere.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/nw4r/ef/emform/ef_sphere.cpp -------------------------------------------------------------------------------- /src/nw4r/ef/emform/ef_torus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/nw4r/ef/emform/ef_torus.cpp -------------------------------------------------------------------------------- /src/nw4r/g3d/g3d_3dsmax.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/nw4r/g3d/g3d_3dsmax.cpp -------------------------------------------------------------------------------- /src/nw4r/g3d/g3d_anmchr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/nw4r/g3d/g3d_anmchr.cpp -------------------------------------------------------------------------------- /src/nw4r/g3d/g3d_anmclr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/nw4r/g3d/g3d_anmclr.cpp -------------------------------------------------------------------------------- /src/nw4r/g3d/g3d_anmobj.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/nw4r/g3d/g3d_anmobj.cpp -------------------------------------------------------------------------------- /src/nw4r/g3d/g3d_anmscn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/nw4r/g3d/g3d_anmscn.cpp -------------------------------------------------------------------------------- /src/nw4r/g3d/g3d_anmshp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/nw4r/g3d/g3d_anmshp.cpp -------------------------------------------------------------------------------- /src/nw4r/g3d/g3d_anmtexpat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/nw4r/g3d/g3d_anmtexpat.cpp -------------------------------------------------------------------------------- /src/nw4r/g3d/g3d_anmtexsrt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/nw4r/g3d/g3d_anmtexsrt.cpp -------------------------------------------------------------------------------- /src/nw4r/g3d/g3d_anmvis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/nw4r/g3d/g3d_anmvis.cpp -------------------------------------------------------------------------------- /src/nw4r/g3d/g3d_basic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/nw4r/g3d/g3d_basic.cpp -------------------------------------------------------------------------------- /src/nw4r/g3d/g3d_calcmaterial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/nw4r/g3d/g3d_calcmaterial.cpp -------------------------------------------------------------------------------- /src/nw4r/g3d/g3d_calcview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/nw4r/g3d/g3d_calcview.cpp -------------------------------------------------------------------------------- /src/nw4r/g3d/g3d_calcvtx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/nw4r/g3d/g3d_calcvtx.cpp -------------------------------------------------------------------------------- /src/nw4r/g3d/g3d_calcworld.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/nw4r/g3d/g3d_calcworld.cpp -------------------------------------------------------------------------------- /src/nw4r/g3d/g3d_camera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/nw4r/g3d/g3d_camera.cpp -------------------------------------------------------------------------------- /src/nw4r/g3d/g3d_dcc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/nw4r/g3d/g3d_dcc.cpp -------------------------------------------------------------------------------- /src/nw4r/g3d/g3d_draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/nw4r/g3d/g3d_draw.cpp -------------------------------------------------------------------------------- /src/nw4r/g3d/g3d_draw1mat1shp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/nw4r/g3d/g3d_draw1mat1shp.cpp -------------------------------------------------------------------------------- /src/nw4r/g3d/g3d_fog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/nw4r/g3d/g3d_fog.cpp -------------------------------------------------------------------------------- /src/nw4r/g3d/g3d_init.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/nw4r/g3d/g3d_init.cpp -------------------------------------------------------------------------------- /src/nw4r/g3d/g3d_light.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/nw4r/g3d/g3d_light.cpp -------------------------------------------------------------------------------- /src/nw4r/g3d/g3d_maya.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/nw4r/g3d/g3d_maya.cpp -------------------------------------------------------------------------------- /src/nw4r/g3d/g3d_obj.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/nw4r/g3d/g3d_obj.cpp -------------------------------------------------------------------------------- /src/nw4r/g3d/g3d_scnmdl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/nw4r/g3d/g3d_scnmdl.cpp -------------------------------------------------------------------------------- /src/nw4r/g3d/g3d_scnmdl1mat1shp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/nw4r/g3d/g3d_scnmdl1mat1shp.cpp -------------------------------------------------------------------------------- /src/nw4r/g3d/g3d_scnmdlsmpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/nw4r/g3d/g3d_scnmdlsmpl.cpp -------------------------------------------------------------------------------- /src/nw4r/g3d/g3d_scnobj.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/nw4r/g3d/g3d_scnobj.cpp -------------------------------------------------------------------------------- /src/nw4r/g3d/g3d_scnproc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/nw4r/g3d/g3d_scnproc.cpp -------------------------------------------------------------------------------- /src/nw4r/g3d/g3d_scnrfl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/nw4r/g3d/g3d_scnrfl.cpp -------------------------------------------------------------------------------- /src/nw4r/g3d/g3d_scnroot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/nw4r/g3d/g3d_scnroot.cpp -------------------------------------------------------------------------------- /src/nw4r/g3d/g3d_state.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/nw4r/g3d/g3d_state.cpp -------------------------------------------------------------------------------- /src/nw4r/g3d/g3d_workmem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/nw4r/g3d/g3d_workmem.cpp -------------------------------------------------------------------------------- /src/nw4r/g3d/g3d_xsi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/nw4r/g3d/g3d_xsi.cpp -------------------------------------------------------------------------------- /src/nw4r/g3d/platform/g3d_cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/nw4r/g3d/platform/g3d_cpu.cpp -------------------------------------------------------------------------------- /src/nw4r/g3d/platform/g3d_gpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/nw4r/g3d/platform/g3d_gpu.cpp -------------------------------------------------------------------------------- /src/nw4r/g3d/platform/g3d_tmem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/nw4r/g3d/platform/g3d_tmem.cpp -------------------------------------------------------------------------------- /src/nw4r/g3d/res/g3d_resanm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/nw4r/g3d/res/g3d_resanm.cpp -------------------------------------------------------------------------------- /src/nw4r/g3d/res/g3d_resanmchr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/nw4r/g3d/res/g3d_resanmchr.cpp -------------------------------------------------------------------------------- /src/nw4r/g3d/res/g3d_resanmclr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/nw4r/g3d/res/g3d_resanmclr.cpp -------------------------------------------------------------------------------- /src/nw4r/g3d/res/g3d_resanmfog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/nw4r/g3d/res/g3d_resanmfog.cpp -------------------------------------------------------------------------------- /src/nw4r/g3d/res/g3d_resanmscn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/nw4r/g3d/res/g3d_resanmscn.cpp -------------------------------------------------------------------------------- /src/nw4r/g3d/res/g3d_resanmshp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/nw4r/g3d/res/g3d_resanmshp.cpp -------------------------------------------------------------------------------- /src/nw4r/g3d/res/g3d_resanmvis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/nw4r/g3d/res/g3d_resanmvis.cpp -------------------------------------------------------------------------------- /src/nw4r/g3d/res/g3d_rescommon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/nw4r/g3d/res/g3d_rescommon.cpp -------------------------------------------------------------------------------- /src/nw4r/g3d/res/g3d_resdict.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/nw4r/g3d/res/g3d_resdict.cpp -------------------------------------------------------------------------------- /src/nw4r/g3d/res/g3d_resfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/nw4r/g3d/res/g3d_resfile.cpp -------------------------------------------------------------------------------- /src/nw4r/g3d/res/g3d_resmat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/nw4r/g3d/res/g3d_resmat.cpp -------------------------------------------------------------------------------- /src/nw4r/g3d/res/g3d_resmdl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/nw4r/g3d/res/g3d_resmdl.cpp -------------------------------------------------------------------------------- /src/nw4r/g3d/res/g3d_resnode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/nw4r/g3d/res/g3d_resnode.cpp -------------------------------------------------------------------------------- /src/nw4r/g3d/res/g3d_resshp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/nw4r/g3d/res/g3d_resshp.cpp -------------------------------------------------------------------------------- /src/nw4r/g3d/res/g3d_restev.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/nw4r/g3d/res/g3d_restev.cpp -------------------------------------------------------------------------------- /src/nw4r/g3d/res/g3d_restex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/nw4r/g3d/res/g3d_restex.cpp -------------------------------------------------------------------------------- /src/nw4r/g3d/res/g3d_resvtx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/nw4r/g3d/res/g3d_resvtx.cpp -------------------------------------------------------------------------------- /src/nw4r/lyt/lyt_animation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/nw4r/lyt/lyt_animation.cpp -------------------------------------------------------------------------------- /src/nw4r/lyt/lyt_bounding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/nw4r/lyt/lyt_bounding.cpp -------------------------------------------------------------------------------- /src/nw4r/lyt/lyt_common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/nw4r/lyt/lyt_common.cpp -------------------------------------------------------------------------------- /src/nw4r/lyt/lyt_drawInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/nw4r/lyt/lyt_drawInfo.cpp -------------------------------------------------------------------------------- /src/nw4r/lyt/lyt_group.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/nw4r/lyt/lyt_group.cpp -------------------------------------------------------------------------------- /src/nw4r/lyt/lyt_init.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/nw4r/lyt/lyt_init.cpp -------------------------------------------------------------------------------- /src/nw4r/lyt/lyt_layout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/nw4r/lyt/lyt_layout.cpp -------------------------------------------------------------------------------- /src/nw4r/lyt/lyt_material.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/nw4r/lyt/lyt_material.cpp -------------------------------------------------------------------------------- /src/nw4r/lyt/lyt_pane.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/nw4r/lyt/lyt_pane.cpp -------------------------------------------------------------------------------- /src/nw4r/lyt/lyt_picture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/nw4r/lyt/lyt_picture.cpp -------------------------------------------------------------------------------- /src/nw4r/lyt/lyt_texMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/nw4r/lyt/lyt_texMap.cpp -------------------------------------------------------------------------------- /src/nw4r/lyt/lyt_textBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/nw4r/lyt/lyt_textBox.cpp -------------------------------------------------------------------------------- /src/nw4r/lyt/lyt_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/nw4r/lyt/lyt_window.cpp -------------------------------------------------------------------------------- /src/nw4r/math/math_arithmetic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/nw4r/math/math_arithmetic.cpp -------------------------------------------------------------------------------- /src/nw4r/math/math_geometry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/nw4r/math/math_geometry.cpp -------------------------------------------------------------------------------- /src/nw4r/math/math_triangular.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/nw4r/math/math_triangular.cpp -------------------------------------------------------------------------------- /src/nw4r/math/math_types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/nw4r/math/math_types.cpp -------------------------------------------------------------------------------- /src/nw4r/snd/snd_AnimSound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/nw4r/snd/snd_AnimSound.cpp -------------------------------------------------------------------------------- /src/nw4r/snd/snd_AxManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/nw4r/snd/snd_AxManager.cpp -------------------------------------------------------------------------------- /src/nw4r/snd/snd_AxVoice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/nw4r/snd/snd_AxVoice.cpp -------------------------------------------------------------------------------- /src/nw4r/snd/snd_AxVoiceManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/nw4r/snd/snd_AxVoiceManager.cpp -------------------------------------------------------------------------------- /src/nw4r/snd/snd_AxfxImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/nw4r/snd/snd_AxfxImpl.cpp -------------------------------------------------------------------------------- /src/nw4r/snd/snd_Bank.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/nw4r/snd/snd_Bank.cpp -------------------------------------------------------------------------------- /src/nw4r/snd/snd_BankFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/nw4r/snd/snd_BankFile.cpp -------------------------------------------------------------------------------- /src/nw4r/snd/snd_BasicPlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/nw4r/snd/snd_BasicPlayer.cpp -------------------------------------------------------------------------------- /src/nw4r/snd/snd_BasicSound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/nw4r/snd/snd_BasicSound.cpp -------------------------------------------------------------------------------- /src/nw4r/snd/snd_Channel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/nw4r/snd/snd_Channel.cpp -------------------------------------------------------------------------------- /src/nw4r/snd/snd_EnvGenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/nw4r/snd/snd_EnvGenerator.cpp -------------------------------------------------------------------------------- /src/nw4r/snd/snd_FrameHeap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/nw4r/snd/snd_FrameHeap.cpp -------------------------------------------------------------------------------- /src/nw4r/snd/snd_FxChorus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/nw4r/snd/snd_FxChorus.cpp -------------------------------------------------------------------------------- /src/nw4r/snd/snd_FxDelay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/nw4r/snd/snd_FxDelay.cpp -------------------------------------------------------------------------------- /src/nw4r/snd/snd_FxReverbHi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/nw4r/snd/snd_FxReverbHi.cpp -------------------------------------------------------------------------------- /src/nw4r/snd/snd_FxReverbHiDpl2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/nw4r/snd/snd_FxReverbHiDpl2.cpp -------------------------------------------------------------------------------- /src/nw4r/snd/snd_InstancePool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/nw4r/snd/snd_InstancePool.cpp -------------------------------------------------------------------------------- /src/nw4r/snd/snd_Lfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/nw4r/snd/snd_Lfo.cpp -------------------------------------------------------------------------------- /src/nw4r/snd/snd_MidiSeqPlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/nw4r/snd/snd_MidiSeqPlayer.cpp -------------------------------------------------------------------------------- /src/nw4r/snd/snd_MmlParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/nw4r/snd/snd_MmlParser.cpp -------------------------------------------------------------------------------- /src/nw4r/snd/snd_MmlSeqTrack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/nw4r/snd/snd_MmlSeqTrack.cpp -------------------------------------------------------------------------------- /src/nw4r/snd/snd_SeqFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/nw4r/snd/snd_SeqFile.cpp -------------------------------------------------------------------------------- /src/nw4r/snd/snd_SeqPlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/nw4r/snd/snd_SeqPlayer.cpp -------------------------------------------------------------------------------- /src/nw4r/snd/snd_SeqSound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/nw4r/snd/snd_SeqSound.cpp -------------------------------------------------------------------------------- /src/nw4r/snd/snd_SeqTrack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/nw4r/snd/snd_SeqTrack.cpp -------------------------------------------------------------------------------- /src/nw4r/snd/snd_SoundActor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/nw4r/snd/snd_SoundActor.cpp -------------------------------------------------------------------------------- /src/nw4r/snd/snd_SoundHandle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/nw4r/snd/snd_SoundHandle.cpp -------------------------------------------------------------------------------- /src/nw4r/snd/snd_SoundHeap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/nw4r/snd/snd_SoundHeap.cpp -------------------------------------------------------------------------------- /src/nw4r/snd/snd_SoundPlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/nw4r/snd/snd_SoundPlayer.cpp -------------------------------------------------------------------------------- /src/nw4r/snd/snd_SoundSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/nw4r/snd/snd_SoundSystem.cpp -------------------------------------------------------------------------------- /src/nw4r/snd/snd_SoundThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/nw4r/snd/snd_SoundThread.cpp -------------------------------------------------------------------------------- /src/nw4r/snd/snd_StrmChannel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/nw4r/snd/snd_StrmChannel.cpp -------------------------------------------------------------------------------- /src/nw4r/snd/snd_StrmFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/nw4r/snd/snd_StrmFile.cpp -------------------------------------------------------------------------------- /src/nw4r/snd/snd_StrmPlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/nw4r/snd/snd_StrmPlayer.cpp -------------------------------------------------------------------------------- /src/nw4r/snd/snd_StrmSound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/nw4r/snd/snd_StrmSound.cpp -------------------------------------------------------------------------------- /src/nw4r/snd/snd_Task.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/nw4r/snd/snd_Task.cpp -------------------------------------------------------------------------------- /src/nw4r/snd/snd_TaskManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/nw4r/snd/snd_TaskManager.cpp -------------------------------------------------------------------------------- /src/nw4r/snd/snd_TaskThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/nw4r/snd/snd_TaskThread.cpp -------------------------------------------------------------------------------- /src/nw4r/snd/snd_Util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/nw4r/snd/snd_Util.cpp -------------------------------------------------------------------------------- /src/nw4r/snd/snd_Voice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/nw4r/snd/snd_Voice.cpp -------------------------------------------------------------------------------- /src/nw4r/snd/snd_WaveFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/nw4r/snd/snd_WaveFile.cpp -------------------------------------------------------------------------------- /src/nw4r/snd/snd_WaveSound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/nw4r/snd/snd_WaveSound.cpp -------------------------------------------------------------------------------- /src/nw4r/snd/snd_WsdFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/nw4r/snd/snd_WsdFile.cpp -------------------------------------------------------------------------------- /src/nw4r/snd/snd_WsdPlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/nw4r/snd/snd_WsdPlayer.cpp -------------------------------------------------------------------------------- /src/nw4r/snd/snd_adpcm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/nw4r/snd/snd_adpcm.cpp -------------------------------------------------------------------------------- /src/nw4r/ut/ut_CharWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/nw4r/ut/ut_CharWriter.cpp -------------------------------------------------------------------------------- /src/nw4r/ut/ut_DvdFileStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/nw4r/ut/ut_DvdFileStream.cpp -------------------------------------------------------------------------------- /src/nw4r/ut/ut_FileStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/nw4r/ut/ut_FileStream.cpp -------------------------------------------------------------------------------- /src/nw4r/ut/ut_Font.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/nw4r/ut/ut_Font.cpp -------------------------------------------------------------------------------- /src/nw4r/ut/ut_IOStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/nw4r/ut/ut_IOStream.cpp -------------------------------------------------------------------------------- /src/nw4r/ut/ut_LinkList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/nw4r/ut/ut_LinkList.cpp -------------------------------------------------------------------------------- /src/nw4r/ut/ut_LockedCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/nw4r/ut/ut_LockedCache.cpp -------------------------------------------------------------------------------- /src/nw4r/ut/ut_ResFont.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/nw4r/ut/ut_ResFont.cpp -------------------------------------------------------------------------------- /src/nw4r/ut/ut_ResFontBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/nw4r/ut/ut_ResFontBase.cpp -------------------------------------------------------------------------------- /src/nw4r/ut/ut_RomFont.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/nw4r/ut/ut_RomFont.cpp -------------------------------------------------------------------------------- /src/nw4r/ut/ut_list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/nw4r/ut/ut_list.cpp -------------------------------------------------------------------------------- /src/revolution/AI/ai.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/revolution/AI/ai.c -------------------------------------------------------------------------------- /src/revolution/ARC/arc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/revolution/ARC/arc.c -------------------------------------------------------------------------------- /src/revolution/AX/AX.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/revolution/AX/AX.c -------------------------------------------------------------------------------- /src/revolution/AX/AXAlloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/revolution/AX/AXAlloc.c -------------------------------------------------------------------------------- /src/revolution/AX/AXAux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/revolution/AX/AXAux.c -------------------------------------------------------------------------------- /src/revolution/AX/AXCL.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/revolution/AX/AXCL.c -------------------------------------------------------------------------------- /src/revolution/AX/AXComp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/revolution/AX/AXComp.c -------------------------------------------------------------------------------- /src/revolution/AX/AXOut.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/revolution/AX/AXOut.c -------------------------------------------------------------------------------- /src/revolution/AX/AXProf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/revolution/AX/AXProf.c -------------------------------------------------------------------------------- /src/revolution/AX/AXSPB.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/revolution/AX/AXSPB.c -------------------------------------------------------------------------------- /src/revolution/AX/AXVPB.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/revolution/AX/AXVPB.c -------------------------------------------------------------------------------- /src/revolution/AX/DSPCode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/revolution/AX/DSPCode.c -------------------------------------------------------------------------------- /src/revolution/AXFX/AXFXChorus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/revolution/AXFX/AXFXChorus.c -------------------------------------------------------------------------------- /src/revolution/AXFX/AXFXDelay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/revolution/AXFX/AXFXDelay.c -------------------------------------------------------------------------------- /src/revolution/AXFX/AXFXHooks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/revolution/AXFX/AXFXHooks.c -------------------------------------------------------------------------------- /src/revolution/BASE/PPCArch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/revolution/BASE/PPCArch.c -------------------------------------------------------------------------------- /src/revolution/BTE/MODULE_LICENSE_APACHE2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/revolution/BTE/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/revolution/BTE/NOTICE -------------------------------------------------------------------------------- /src/revolution/BTE/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/revolution/BTE/README -------------------------------------------------------------------------------- /src/revolution/BTE/bta/sys/bd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/revolution/BTE/bta/sys/bd.c -------------------------------------------------------------------------------- /src/revolution/BTE/bta/sys/utl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/revolution/BTE/bta/sys/utl.c -------------------------------------------------------------------------------- /src/revolution/BTE/hci/src/hcisu_h2.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/revolution/BTE/hci/src/lpm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/revolution/BTE/hci/src/lpm.c -------------------------------------------------------------------------------- /src/revolution/BTE/rvl/gki_ppc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/revolution/BTE/rvl/gki_ppc.c -------------------------------------------------------------------------------- /src/revolution/CNT/cnt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/revolution/CNT/cnt.c -------------------------------------------------------------------------------- /src/revolution/DB/db.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/revolution/DB/db.c -------------------------------------------------------------------------------- /src/revolution/DSP/dsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/revolution/DSP/dsp.c -------------------------------------------------------------------------------- /src/revolution/DSP/dsp_debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/revolution/DSP/dsp_debug.c -------------------------------------------------------------------------------- /src/revolution/DSP/dsp_task.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/revolution/DSP/dsp_task.c -------------------------------------------------------------------------------- /src/revolution/DVD/dvd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/revolution/DVD/dvd.c -------------------------------------------------------------------------------- /src/revolution/DVD/dvdFatal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/revolution/DVD/dvdFatal.c -------------------------------------------------------------------------------- /src/revolution/DVD/dvderror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/revolution/DVD/dvderror.c -------------------------------------------------------------------------------- /src/revolution/DVD/dvdfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/revolution/DVD/dvdfs.c -------------------------------------------------------------------------------- /src/revolution/DVD/dvdidutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/revolution/DVD/dvdidutils.c -------------------------------------------------------------------------------- /src/revolution/DVD/dvdqueue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/revolution/DVD/dvdqueue.c -------------------------------------------------------------------------------- /src/revolution/ESP/esp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/revolution/ESP/esp.c -------------------------------------------------------------------------------- /src/revolution/EUART/euart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/revolution/EUART/euart.c -------------------------------------------------------------------------------- /src/revolution/EXI/EXIBios.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/revolution/EXI/EXIBios.c -------------------------------------------------------------------------------- /src/revolution/EXI/EXICommon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/revolution/EXI/EXICommon.c -------------------------------------------------------------------------------- /src/revolution/EXI/EXIUart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/revolution/EXI/EXIUart.c -------------------------------------------------------------------------------- /src/revolution/FS/fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/revolution/FS/fs.c -------------------------------------------------------------------------------- /src/revolution/GX/GXAttr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/revolution/GX/GXAttr.c -------------------------------------------------------------------------------- /src/revolution/GX/GXBump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/revolution/GX/GXBump.c -------------------------------------------------------------------------------- /src/revolution/GX/GXDraw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/revolution/GX/GXDraw.c -------------------------------------------------------------------------------- /src/revolution/GX/GXGeometry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/revolution/GX/GXGeometry.c -------------------------------------------------------------------------------- /src/revolution/GX/GXLight.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/revolution/GX/GXLight.c -------------------------------------------------------------------------------- /src/revolution/GX/GXPixel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/revolution/GX/GXPixel.c -------------------------------------------------------------------------------- /src/revolution/GX/GXTransform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/revolution/GX/GXTransform.c -------------------------------------------------------------------------------- /src/revolution/IPC/ipcMain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/revolution/IPC/ipcMain.c -------------------------------------------------------------------------------- /src/revolution/IPC/ipcProfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/revolution/IPC/ipcProfile.c -------------------------------------------------------------------------------- /src/revolution/IPC/ipcclt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/revolution/IPC/ipcclt.c -------------------------------------------------------------------------------- /src/revolution/IPC/memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/revolution/IPC/memory.c -------------------------------------------------------------------------------- /src/revolution/MEM/mem_expHeap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/revolution/MEM/mem_expHeap.c -------------------------------------------------------------------------------- /src/revolution/MEM/mem_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/revolution/MEM/mem_list.c -------------------------------------------------------------------------------- /src/revolution/MTX/mtx44.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/revolution/MTX/mtx44.c -------------------------------------------------------------------------------- /src/revolution/MTX/mtxvec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/revolution/MTX/mtxvec.c -------------------------------------------------------------------------------- /src/revolution/MTX/quat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/revolution/MTX/quat.c -------------------------------------------------------------------------------- /src/revolution/MTX/vec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/revolution/MTX/vec.c -------------------------------------------------------------------------------- /src/revolution/NAND/NANDCheck.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/revolution/NAND/NANDCheck.c -------------------------------------------------------------------------------- /src/revolution/NAND/NANDCore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/revolution/NAND/NANDCore.c -------------------------------------------------------------------------------- /src/revolution/NAND/nand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/revolution/NAND/nand.c -------------------------------------------------------------------------------- /src/revolution/NWC24/NWC24Ipc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/revolution/NWC24/NWC24Ipc.c -------------------------------------------------------------------------------- /src/revolution/NWC24/NWC24Time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/revolution/NWC24/NWC24Time.c -------------------------------------------------------------------------------- /src/revolution/NdevExi2AD/exi2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/revolution/NdevExi2AD/exi2.c -------------------------------------------------------------------------------- /src/revolution/OS/OS.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/revolution/OS/OS.c -------------------------------------------------------------------------------- /src/revolution/OS/OSAlarm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/revolution/OS/OSAlarm.c -------------------------------------------------------------------------------- /src/revolution/OS/OSAlloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/revolution/OS/OSAlloc.c -------------------------------------------------------------------------------- /src/revolution/OS/OSArena.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/revolution/OS/OSArena.c -------------------------------------------------------------------------------- /src/revolution/OS/OSCache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/revolution/OS/OSCache.c -------------------------------------------------------------------------------- /src/revolution/OS/OSContext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/revolution/OS/OSContext.c -------------------------------------------------------------------------------- /src/revolution/OS/OSError.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/revolution/OS/OSError.c -------------------------------------------------------------------------------- /src/revolution/OS/OSExec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/revolution/OS/OSExec.c -------------------------------------------------------------------------------- /src/revolution/OS/OSFatal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/revolution/OS/OSFatal.c -------------------------------------------------------------------------------- /src/revolution/OS/OSFont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/revolution/OS/OSFont.c -------------------------------------------------------------------------------- /src/revolution/OS/OSInterrupt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/revolution/OS/OSInterrupt.c -------------------------------------------------------------------------------- /src/revolution/OS/OSIpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/revolution/OS/OSIpc.c -------------------------------------------------------------------------------- /src/revolution/OS/OSLink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/revolution/OS/OSLink.c -------------------------------------------------------------------------------- /src/revolution/OS/OSMemory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/revolution/OS/OSMemory.c -------------------------------------------------------------------------------- /src/revolution/OS/OSMessage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/revolution/OS/OSMessage.c -------------------------------------------------------------------------------- /src/revolution/OS/OSMutex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/revolution/OS/OSMutex.c -------------------------------------------------------------------------------- /src/revolution/OS/OSNet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/revolution/OS/OSNet.c -------------------------------------------------------------------------------- /src/revolution/OS/OSPlayRecord.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/revolution/OS/OSPlayRecord.c -------------------------------------------------------------------------------- /src/revolution/OS/OSReset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/revolution/OS/OSReset.c -------------------------------------------------------------------------------- /src/revolution/OS/OSRtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/revolution/OS/OSRtc.c -------------------------------------------------------------------------------- /src/revolution/OS/OSStateFlags.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/revolution/OS/OSStateFlags.c -------------------------------------------------------------------------------- /src/revolution/OS/OSStateTM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/revolution/OS/OSStateTM.c -------------------------------------------------------------------------------- /src/revolution/OS/OSSync.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/revolution/OS/OSSync.c -------------------------------------------------------------------------------- /src/revolution/OS/OSThread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/revolution/OS/OSThread.c -------------------------------------------------------------------------------- /src/revolution/OS/OSTime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/revolution/OS/OSTime.c -------------------------------------------------------------------------------- /src/revolution/OS/OSUtf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/revolution/OS/OSUtf.c -------------------------------------------------------------------------------- /src/revolution/OS/__start.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/revolution/OS/__start.c -------------------------------------------------------------------------------- /src/revolution/PAD/Pad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/revolution/PAD/Pad.c -------------------------------------------------------------------------------- /src/revolution/SC/scapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/revolution/SC/scapi.c -------------------------------------------------------------------------------- /src/revolution/SC/scsystem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/revolution/SC/scsystem.c -------------------------------------------------------------------------------- /src/revolution/SI/SIBios.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/revolution/SI/SIBios.c -------------------------------------------------------------------------------- /src/revolution/TPL/TPL.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/revolution/TPL/TPL.c -------------------------------------------------------------------------------- /src/revolution/USB/usb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/revolution/USB/usb.c -------------------------------------------------------------------------------- /src/revolution/WENC/wenc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/revolution/WENC/wenc.c -------------------------------------------------------------------------------- /src/revolution/WPAD/WPAD.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/revolution/WPAD/WPAD.c -------------------------------------------------------------------------------- /src/revolution/WPAD/debug_msg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/revolution/WPAD/debug_msg.c -------------------------------------------------------------------------------- /src/revolution/WUD/WUD.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/revolution/WUD/WUD.c -------------------------------------------------------------------------------- /src/revolution/WUD/WUDHidHost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/revolution/WUD/WUDHidHost.c -------------------------------------------------------------------------------- /src/revolution/WUD/debug_msg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/revolution/WUD/debug_msg.c -------------------------------------------------------------------------------- /src/runtime/GCN_mem_alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/runtime/GCN_mem_alloc.c -------------------------------------------------------------------------------- /src/runtime/Gecko_ExceptionPPC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/runtime/Gecko_ExceptionPPC.c -------------------------------------------------------------------------------- /src/runtime/__mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/runtime/__mem.c -------------------------------------------------------------------------------- /src/runtime/__va_arg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/runtime/__va_arg.c -------------------------------------------------------------------------------- /src/runtime/ptmf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/runtime/ptmf.c -------------------------------------------------------------------------------- /src/runtime/runtime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/src/runtime/runtime.c -------------------------------------------------------------------------------- /tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/changes_fmt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/tools/changes_fmt.py -------------------------------------------------------------------------------- /tools/decompctx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/tools/decompctx.py -------------------------------------------------------------------------------- /tools/download_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/tools/download_tool.py -------------------------------------------------------------------------------- /tools/makeregs/BPRegisters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/tools/makeregs/BPRegisters.json -------------------------------------------------------------------------------- /tools/makeregs/CPRegisters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/tools/makeregs/CPRegisters.json -------------------------------------------------------------------------------- /tools/makeregs/XFRegisters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/tools/makeregs/XFRegisters.json -------------------------------------------------------------------------------- /tools/makeregs/makeregs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/tools/makeregs/makeregs.py -------------------------------------------------------------------------------- /tools/ninja_syntax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/tools/ninja_syntax.py -------------------------------------------------------------------------------- /tools/project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/tools/project.py -------------------------------------------------------------------------------- /tools/transform_dep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/tools/transform_dep.py -------------------------------------------------------------------------------- /tools/upload_progress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi515/ogws/HEAD/tools/upload_progress.py --------------------------------------------------------------------------------