├── .clang-format ├── .clang-format-ignore ├── .github └── workflows │ ├── build.yml │ ├── release_notify.yml │ ├── remArtifacst.yml │ └── upwiki.yml ├── .gitignore ├── .gitmodules ├── .vscode ├── extensions.json ├── launch.json ├── settings.json └── tasks.json ├── CMakeLists.txt ├── LICENSE ├── asm ├── CMakeLists.txt ├── entry.asm └── helper.h ├── core ├── CMakeLists.txt ├── dmem │ ├── CMakeLists.txt │ ├── imemory.h │ ├── memoryManager.cpp │ ├── memoryManager.h │ └── types │ │ ├── directmem.cpp │ │ ├── flexiblemem.cpp │ │ └── memory.h ├── fileManager │ ├── CMakeLists.txt │ ├── fileManager.cpp │ ├── fileManager.h │ ├── ifile.h │ ├── readme.md │ └── types │ │ ├── type_file.cpp │ │ ├── type_file.h │ │ ├── type_in.cpp │ │ ├── type_in.h │ │ ├── type_lib.cpp │ │ ├── type_lib.h │ │ ├── type_null.cpp │ │ ├── type_null.h │ │ ├── type_out.cpp │ │ ├── type_out.h │ │ ├── type_random.cpp │ │ ├── type_random.h │ │ ├── type_rng.cpp │ │ ├── type_rng.h │ │ ├── type_zero.cpp │ │ └── type_zero.h ├── hotkeys │ ├── CMakeLists.txt │ ├── hotkeys.cpp │ └── hotkeys.h ├── imports │ └── exports │ │ ├── pm4_custom.h │ │ └── readme.md ├── initParams │ ├── CMakeLists.txt │ ├── initParams.cpp │ └── initParams.h ├── kernel │ ├── CMakeLists.txt │ ├── errors.cpp │ ├── errors.h │ ├── eventflag.cpp │ ├── eventflag.h │ ├── eventqueue.cpp │ ├── eventqueue.h │ ├── eventqueue_types.h │ ├── filesystem.cpp │ ├── filesystem.h │ ├── pthread.cpp │ ├── pthread.h │ ├── pthread_intern.h │ ├── pthread_types.h │ ├── semaphore.h │ └── semaphore_fifo.cpp ├── memory │ ├── CMakeLists.txt │ ├── memory.cpp │ └── memory.h ├── networking │ ├── CMakeLists.txt │ ├── networking.cpp │ ├── networking.h │ └── states │ │ ├── offline.cpp │ │ ├── offline.h │ │ ├── online.h │ │ └── online │ │ ├── epoll.cpp │ │ ├── http.cpp │ │ ├── netctl.cpp │ │ ├── resolver.cpp │ │ └── socket.cpp ├── readme.md ├── runtime │ ├── CMakeLists.txt │ ├── exports │ │ ├── intern.cpp │ │ ├── intern.h │ │ └── macro.h │ ├── formats │ │ ├── IFormat.h │ │ ├── ISymbols.h │ │ ├── elf64.cpp │ │ └── elf64.h │ ├── memoryLayout.h │ ├── procParam.h │ ├── program.h │ ├── runtimeExport.h │ ├── runtimeLinker.cpp │ ├── runtimeLinker.h │ └── util │ │ ├── exceptionHandler.cpp │ │ ├── exceptionHandler.h │ │ ├── moduleLoader.cpp │ │ ├── moduleLoader.h │ │ ├── plt.h │ │ ├── virtualmemory.cpp │ │ └── virtualmemory.h ├── systemContent │ ├── CMakeLists.txt │ ├── systemContent.cpp │ └── systemContent.h ├── tests │ ├── CMakeLists.txt │ └── core │ │ ├── CMakeLists.txt │ │ └── semaphore │ │ ├── CMakeLists.txt │ │ └── entry.cpp ├── timer │ ├── CMakeLists.txt │ ├── SysWindowsTimer.h │ ├── timer.cpp │ └── timer.h ├── trophies │ ├── CMakeLists.txt │ ├── trophies.cpp │ └── trophies.h ├── unwinding │ ├── CMakeLists.txt │ ├── unwind.asm │ └── unwind.h └── videoout │ ├── CMakeLists.txt │ ├── imageHandler.cpp │ ├── imageHandler.h │ ├── overlay │ ├── gamemenu │ │ ├── gamemenu.cpp │ │ └── gamemenu.h │ ├── imhelper.h │ ├── overlay.cpp │ ├── overlay.h │ └── overtrophy │ │ ├── overtrophy.cpp │ │ └── overtrophy.h │ ├── readme.md │ ├── videoout.cpp │ ├── videoout.h │ └── vulkan │ ├── vulkanHelper.cpp │ ├── vulkanHelper.h │ ├── vulkanSetup.cpp │ ├── vulkanSetup.h │ └── vulkanTypes.h ├── docs ├── README.md ├── json │ ├── audio.json │ ├── controls.json │ ├── general.json │ ├── graphics.json │ └── logging.json ├── resource │ ├── AMD_Southern_Islands_Instruction_Set_Architecture.pdf │ ├── GLSLangSpec.4.60.pdf │ ├── R6xx_R7xx_3D.pdf │ ├── Vega_Shader_ISA_28July2017.pdf │ └── si_programming_guide_v2.pdf ├── uml │ └── modules │ │ ├── coreDeps.puml │ │ ├── fileManager.puml │ │ ├── videoout_class.puml │ │ └── videout_swapchain.puml └── wiki │ ├── images │ └── vsbuild │ │ ├── cmake_build.png │ │ ├── cmake_configure.png │ │ ├── cmake_pins.png │ │ ├── debug_warning.png │ │ ├── default_compiler.png │ │ ├── default_compiler_popup.png │ │ ├── default_compiler_sure.png │ │ ├── optimizations.png │ │ ├── recomends_btn.png │ │ ├── recomends_help.png │ │ └── recomends_install.png │ └── markdown │ ├── Building-psOff-VSCode.md │ ├── Building-psOff-from-scratch.md │ ├── Config-files.md │ └── Home.md ├── main.cpp ├── misc ├── discordNotify │ ├── .gitignore │ ├── main.js │ └── package.json └── testRunner │ ├── main.js │ ├── package.json │ └── summary │ ├── .gitignore │ └── .gitkeep ├── modules ├── CMakeLists.txt ├── libSceAjm │ ├── CMakeLists.txt │ ├── codes.h │ ├── entry.cpp │ └── types.h ├── libSceAppContent │ ├── CMakeLists.txt │ ├── codes.h │ ├── entry.cpp │ └── types.h ├── libSceAudio3d │ ├── CMakeLists.txt │ ├── codes.h │ ├── entry.cpp │ └── types.h ├── libSceAudioIn │ ├── CMakeLists.txt │ ├── codes.h │ ├── entry.cpp │ └── types.h ├── libSceAudioOut │ ├── CMakeLists.txt │ ├── codes.h │ ├── entry.cpp │ ├── mastering.h │ └── types.h ├── libSceAudiodec │ ├── CMakeLists.txt │ ├── codes.h │ ├── entry.cpp │ └── types.h ├── libSceAudiodecCpu │ ├── CMakeLists.txt │ ├── codes.h │ ├── entry.cpp │ └── types.h ├── libSceAvPlayer │ ├── CMakeLists.txt │ ├── avplayer.cpp │ ├── avplayer.h │ ├── codes.h │ ├── entry.cpp │ ├── entryEx.cpp │ ├── types.h │ └── typesEx.h ├── libSceCamera │ ├── CMakeLists.txt │ ├── codes.h │ ├── entry.cpp │ └── types.h ├── libSceCes │ ├── CMakeLists.txt │ ├── codes.h │ ├── entry.cpp │ └── types.h ├── libSceCommonDialog │ ├── CMakeLists.txt │ ├── codes.h │ ├── entry.cpp │ └── types.h ├── libSceContentExport │ ├── CMakeLists.txt │ ├── codes.h │ ├── entry.cpp │ └── types.h ├── libSceCoredump │ ├── CMakeLists.txt │ ├── codes.h │ ├── entry.cpp │ └── types.h ├── libSceDepth │ ├── CMakeLists.txt │ ├── codes.h │ ├── entry.cpp │ └── types.h ├── libSceDiscMap │ ├── CMakeLists.txt │ ├── codes.h │ ├── entry.cpp │ └── types.h ├── libSceErrorDialog │ ├── CMakeLists.txt │ ├── codes.h │ ├── entry.cpp │ └── types.h ├── libSceFace │ ├── CMakeLists.txt │ ├── codes.h │ ├── entry.cpp │ └── types.h ├── libSceFaceTracker │ ├── CMakeLists.txt │ ├── codes.h │ ├── entry.cpp │ └── types.h ├── libSceGameLiveStreaming │ ├── CMakeLists.txt │ ├── codes.h │ ├── entry.cpp │ └── types.h ├── libSceGraphicsDriver │ ├── CMakeLists.txt │ ├── codes.h │ ├── entry.cpp │ └── types.h ├── libSceHmd │ ├── CMakeLists.txt │ ├── codes.h │ ├── entry.cpp │ └── types.h ├── libSceHttp │ ├── CMakeLists.txt │ ├── codes.h │ ├── entry.cpp │ ├── httpsTypes.h │ └── types.h ├── libSceHttp2 │ ├── CMakeLists.txt │ ├── codes.h │ ├── entry.cpp │ └── types.h ├── libSceIme │ ├── CMakeLists.txt │ ├── codes.h │ ├── entry.cpp │ └── types.h ├── libSceImeDialog │ ├── CMakeLists.txt │ ├── codes.h │ ├── entry.cpp │ └── types.h ├── libSceInvitationDialog │ ├── CMakeLists.txt │ ├── codes.h │ ├── entry.cpp │ └── types.h ├── libSceJson2 │ ├── CMakeLists.txt │ ├── codes.h │ ├── entry.cpp │ └── types.h ├── libSceLibcInternal │ ├── CMakeLists.txt │ ├── codes.h │ ├── entry.cpp │ ├── mspace.cpp │ └── types.h ├── libSceLibcInternalExt │ ├── CMakeLists.txt │ ├── codes.h │ ├── entry.cpp │ └── types.h ├── libSceMouse │ ├── CMakeLists.txt │ ├── codes.h │ ├── entry.cpp │ └── types.h ├── libSceMove │ ├── CMakeLists.txt │ ├── codes.h │ ├── entry.cpp │ └── types.h ├── libSceMoveTracker │ ├── CMakeLists.txt │ ├── codes.h │ ├── entry.cpp │ └── types.h ├── libSceMsgDialog │ ├── CMakeLists.txt │ ├── codes.h │ ├── entry.cpp │ └── types.h ├── libSceNet │ ├── CMakeLists.txt │ ├── README.md │ ├── codes.h │ ├── entry.cpp │ ├── epoll.cpp │ ├── resolver.cpp │ ├── resolverTypes.h │ ├── socket.cpp │ ├── socketTypes.h │ └── types.h ├── libSceNetCtl │ ├── CMakeLists.txt │ ├── codes.h │ ├── entry.cpp │ └── types.h ├── libSceNetCtlForNpToolkit │ ├── CMakeLists.txt │ ├── codes.h │ ├── entry.cpp │ └── types.h ├── libSceNgs2 │ ├── CMakeLists.txt │ ├── README.md │ ├── codes.h │ ├── entry.cpp │ ├── readFuncs.cpp │ ├── readFuncs.h │ ├── reader.cpp │ ├── reader.h │ ├── riffTypes.h │ └── types.h ├── libSceNpAuth │ ├── CMakeLists.txt │ ├── codes.h │ ├── entry.cpp │ └── types.h ├── libSceNpCommerce │ ├── CMakeLists.txt │ ├── codes.h │ ├── entry.cpp │ └── types.h ├── libSceNpCommon │ ├── CMakeLists.txt │ ├── codes.h │ ├── entry.cpp │ └── types.h ├── libSceNpGameIntent │ ├── CMakeLists.txt │ ├── codes.h │ └── entry.cpp ├── libSceNpManager │ ├── CMakeLists.txt │ ├── codes.h │ ├── entry.cpp │ ├── onlineId.h │ └── types.h ├── libSceNpManagerForToolkit │ ├── CMakeLists.txt │ ├── codes.h │ ├── entry.cpp │ └── types.h ├── libSceNpMatching2 │ ├── CMakeLists.txt │ ├── codes.h │ ├── entry.cpp │ └── types.h ├── libSceNpParty │ ├── CMakeLists.txt │ ├── codes.h │ ├── entry.cpp │ └── types.h ├── libSceNpProfileDialog │ ├── CMakeLists.txt │ ├── codes.h │ ├── entry.cpp │ └── types.h ├── libSceNpScore │ ├── CMakeLists.txt │ ├── codes.h │ ├── entry.cpp │ └── types.h ├── libSceNpSignaling │ ├── CMakeLists.txt │ ├── codes.h │ ├── entry.cpp │ └── types.h ├── libSceNpSnsFacebookDialog │ ├── CMakeLists.txt │ ├── codes.h │ ├── entry.cpp │ └── types.h ├── libSceNpToolkit2 │ ├── CMakeLists.txt │ ├── codes.h │ └── entry.cpp ├── libSceNpTrophy │ ├── CMakeLists.txt │ ├── codes.h │ ├── entry.cpp │ └── types.h ├── libSceNpTus │ ├── CMakeLists.txt │ ├── codes.h │ ├── entry.cpp │ └── types.h ├── libSceNpWebApi │ ├── CMakeLists.txt │ ├── codes.h │ ├── entry.cpp │ └── types.h ├── libSceNpWebApi2 │ ├── CMakeLists.txt │ ├── codes.h │ ├── entry.cpp │ └── types.h ├── libScePad │ ├── CMakeLists.txt │ ├── codes.h │ ├── entry.cpp │ ├── icontroller.h │ ├── interfaces │ │ ├── ikbd.cpp │ │ ├── ikbd.h │ │ ├── isdl.cpp │ │ ├── isdl.h │ │ ├── ixip.cpp │ │ └── ixip.h │ └── types.h ├── libScePadTracker │ ├── CMakeLists.txt │ ├── codes.h │ ├── entry.cpp │ └── types.h ├── libScePlayGo │ ├── CMakeLists.txt │ ├── codes.h │ ├── entry.cpp │ └── types.h ├── libScePngDec │ ├── CMakeLists.txt │ ├── codes.h │ ├── entry.cpp │ └── types.h ├── libScePngEnc │ ├── CMakeLists.txt │ ├── codes.h │ ├── entry.cpp │ └── types.h ├── libScePosix │ ├── CMakeLists.txt │ ├── codes.h │ ├── entry.cpp │ ├── fs.cpp │ ├── mman.cpp │ ├── pthread.cpp │ └── types.h ├── libSceRandom │ ├── CMakeLists.txt │ ├── codes.h │ ├── entry.cpp │ └── types.h ├── libSceRemoteplay │ ├── CMakeLists.txt │ ├── codes.h │ ├── entry.cpp │ └── types.h ├── libSceRtc │ ├── CMakeLists.txt │ ├── codes.h │ ├── entry.cpp │ └── types.h ├── libSceRudp │ ├── CMakeLists.txt │ ├── codes.h │ ├── entry.cpp │ └── types.h ├── libSceSaveData │ ├── CMakeLists.txt │ ├── codes.h │ ├── entry.cpp │ └── types.h ├── libSceSaveDataDialog │ ├── CMakeLists.txt │ ├── codes.h │ ├── entry.cpp │ └── types.h ├── libSceScreenShot │ ├── CMakeLists.txt │ ├── codes.h │ ├── entry.cpp │ └── types.h ├── libSceSharePlay │ ├── CMakeLists.txt │ ├── codes.h │ ├── entry.cpp │ └── types.h ├── libSceShareUtility │ ├── CMakeLists.txt │ ├── codes.h │ ├── entry.cpp │ └── types.h ├── libSceSigninDialog │ ├── CMakeLists.txt │ ├── codes.h │ ├── entry.cpp │ └── types.h ├── libSceSocialScreen │ ├── CMakeLists.txt │ ├── codes.h │ ├── entry.cpp │ └── types.h ├── libSceSsl │ ├── CMakeLists.txt │ ├── codes.h │ ├── entry.cpp │ └── types.h ├── libSceSysmodule │ ├── CMakeLists.txt │ ├── codes.h │ ├── entry.cpp │ └── types.h ├── libSceSystemGesture │ ├── CMakeLists.txt │ ├── codes.h │ └── entry.cpp ├── libSceSystemService │ ├── CMakeLists.txt │ ├── codes.h │ ├── entry.cpp │ └── types.h ├── libSceSystemServicePs2Emu │ ├── CMakeLists.txt │ ├── codes.h │ ├── entry.cpp │ └── types.h ├── libSceUlt │ ├── CMakeLists.txt │ ├── codes.h │ ├── entry.cpp │ └── types.h ├── libSceUsbd │ ├── CMakeLists.txt │ ├── codes.h │ ├── entry.cpp │ └── types.h ├── libSceUserService │ ├── CMakeLists.txt │ ├── codes.h │ └── entry.cpp ├── libSceUserServiceForNpToolkit │ ├── CMakeLists.txt │ ├── codes.h │ ├── entry.cpp │ └── types.h ├── libSceVideoOut │ ├── CMakeLists.txt │ ├── codes.h │ ├── entry.cpp │ └── types.h ├── libSceVideoRecording │ ├── CMakeLists.txt │ ├── codes.h │ ├── entry.cpp │ └── types.h ├── libSceVoice │ ├── CMakeLists.txt │ ├── codes.h │ ├── entry.cpp │ └── types.h ├── libSceVoiceQoS │ ├── CMakeLists.txt │ ├── codes.h │ ├── entry.cpp │ └── types.h ├── libSceVrTracker │ ├── CMakeLists.txt │ ├── codes.h │ ├── entry.cpp │ └── types.h ├── libSceZlib │ ├── CMakeLists.txt │ ├── codes.h │ ├── entry.cpp │ └── types.h ├── libkernel │ ├── CMakeLists.txt │ ├── aio.cpp │ ├── codes.h │ ├── dmem.cpp │ ├── dmem.h │ ├── entry.cpp │ ├── equeue.cpp │ ├── eventflag.cpp │ ├── fs.cpp │ ├── pthread.cpp │ ├── semaphore.cpp │ └── types.h ├── libkernel_cpumode_platform │ ├── CMakeLists.txt │ ├── codes.h │ ├── entry.cpp │ └── types.h ├── libkernel_ps2emu │ ├── CMakeLists.txt │ ├── codes.h │ ├── entry.cpp │ └── types.h ├── libkernel_unity │ ├── CMakeLists.txt │ ├── codes.h │ ├── entry.cpp │ └── types.h ├── readme.md ├── setupModule.cmake └── template │ ├── CMakeLists.txt │ ├── codes.h │ ├── entry.cpp │ └── types.h ├── modules_include ├── common.h ├── sceTypes.h └── system_param.h ├── out └── docs │ └── uml │ └── modules │ ├── coreDeps.svg │ ├── fileManager.svg │ ├── videoout_class.svg │ └── videout_swapchain.svg ├── readme.md ├── tests ├── CMakeLists.txt └── core │ ├── CMakeLists.txt │ └── semaphore │ ├── CMakeLists.txt │ └── entry.cpp ├── tools ├── config_emu │ ├── CmakeLists.txt │ ├── config_emu.cpp │ └── config_emu.h ├── dll2nids │ ├── CMakeLists.txt │ └── main.cpp ├── gamereport │ ├── CMakeLists.txt │ ├── entry.cpp │ ├── gamereport.h │ ├── git_ver.cpp.in │ ├── git_ver.h │ └── git_watcher.cmake ├── logging │ ├── CMakeLists.txt │ ├── logging.cpp │ ├── logging.h │ ├── logging_dummy.cpp │ ├── logging_dummy.h │ └── logging_stub.cpp └── matchers │ ├── cmake.json │ └── compilers.json └── utility ├── CMakeLists.txt ├── progloc.h ├── utility.cpp └── utility.h /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/.clang-format -------------------------------------------------------------------------------- /.clang-format-ignore: -------------------------------------------------------------------------------- 1 | **/wepoll.* 2 | -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/release_notify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/.github/workflows/release_notify.yml -------------------------------------------------------------------------------- /.github/workflows/remArtifacst.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/.github/workflows/remArtifacst.yml -------------------------------------------------------------------------------- /.github/workflows/upwiki.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/.github/workflows/upwiki.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/LICENSE -------------------------------------------------------------------------------- /asm/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/asm/CMakeLists.txt -------------------------------------------------------------------------------- /asm/entry.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/asm/entry.asm -------------------------------------------------------------------------------- /asm/helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/asm/helper.h -------------------------------------------------------------------------------- /core/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/core/CMakeLists.txt -------------------------------------------------------------------------------- /core/dmem/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/core/dmem/CMakeLists.txt -------------------------------------------------------------------------------- /core/dmem/imemory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/core/dmem/imemory.h -------------------------------------------------------------------------------- /core/dmem/memoryManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/core/dmem/memoryManager.cpp -------------------------------------------------------------------------------- /core/dmem/memoryManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/core/dmem/memoryManager.h -------------------------------------------------------------------------------- /core/dmem/types/directmem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/core/dmem/types/directmem.cpp -------------------------------------------------------------------------------- /core/dmem/types/flexiblemem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/core/dmem/types/flexiblemem.cpp -------------------------------------------------------------------------------- /core/dmem/types/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/core/dmem/types/memory.h -------------------------------------------------------------------------------- /core/fileManager/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/core/fileManager/CMakeLists.txt -------------------------------------------------------------------------------- /core/fileManager/fileManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/core/fileManager/fileManager.cpp -------------------------------------------------------------------------------- /core/fileManager/fileManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/core/fileManager/fileManager.h -------------------------------------------------------------------------------- /core/fileManager/ifile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/core/fileManager/ifile.h -------------------------------------------------------------------------------- /core/fileManager/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/core/fileManager/readme.md -------------------------------------------------------------------------------- /core/fileManager/types/type_file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/core/fileManager/types/type_file.cpp -------------------------------------------------------------------------------- /core/fileManager/types/type_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/core/fileManager/types/type_file.h -------------------------------------------------------------------------------- /core/fileManager/types/type_in.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/core/fileManager/types/type_in.cpp -------------------------------------------------------------------------------- /core/fileManager/types/type_in.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/core/fileManager/types/type_in.h -------------------------------------------------------------------------------- /core/fileManager/types/type_lib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/core/fileManager/types/type_lib.cpp -------------------------------------------------------------------------------- /core/fileManager/types/type_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/core/fileManager/types/type_lib.h -------------------------------------------------------------------------------- /core/fileManager/types/type_null.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/core/fileManager/types/type_null.cpp -------------------------------------------------------------------------------- /core/fileManager/types/type_null.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/core/fileManager/types/type_null.h -------------------------------------------------------------------------------- /core/fileManager/types/type_out.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/core/fileManager/types/type_out.cpp -------------------------------------------------------------------------------- /core/fileManager/types/type_out.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/core/fileManager/types/type_out.h -------------------------------------------------------------------------------- /core/fileManager/types/type_random.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/core/fileManager/types/type_random.cpp -------------------------------------------------------------------------------- /core/fileManager/types/type_random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/core/fileManager/types/type_random.h -------------------------------------------------------------------------------- /core/fileManager/types/type_rng.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/core/fileManager/types/type_rng.cpp -------------------------------------------------------------------------------- /core/fileManager/types/type_rng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/core/fileManager/types/type_rng.h -------------------------------------------------------------------------------- /core/fileManager/types/type_zero.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/core/fileManager/types/type_zero.cpp -------------------------------------------------------------------------------- /core/fileManager/types/type_zero.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/core/fileManager/types/type_zero.h -------------------------------------------------------------------------------- /core/hotkeys/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/core/hotkeys/CMakeLists.txt -------------------------------------------------------------------------------- /core/hotkeys/hotkeys.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/core/hotkeys/hotkeys.cpp -------------------------------------------------------------------------------- /core/hotkeys/hotkeys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/core/hotkeys/hotkeys.h -------------------------------------------------------------------------------- /core/imports/exports/pm4_custom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/core/imports/exports/pm4_custom.h -------------------------------------------------------------------------------- /core/imports/exports/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/core/imports/exports/readme.md -------------------------------------------------------------------------------- /core/initParams/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/core/initParams/CMakeLists.txt -------------------------------------------------------------------------------- /core/initParams/initParams.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/core/initParams/initParams.cpp -------------------------------------------------------------------------------- /core/initParams/initParams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/core/initParams/initParams.h -------------------------------------------------------------------------------- /core/kernel/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/core/kernel/CMakeLists.txt -------------------------------------------------------------------------------- /core/kernel/errors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/core/kernel/errors.cpp -------------------------------------------------------------------------------- /core/kernel/errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/core/kernel/errors.h -------------------------------------------------------------------------------- /core/kernel/eventflag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/core/kernel/eventflag.cpp -------------------------------------------------------------------------------- /core/kernel/eventflag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/core/kernel/eventflag.h -------------------------------------------------------------------------------- /core/kernel/eventqueue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/core/kernel/eventqueue.cpp -------------------------------------------------------------------------------- /core/kernel/eventqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/core/kernel/eventqueue.h -------------------------------------------------------------------------------- /core/kernel/eventqueue_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/core/kernel/eventqueue_types.h -------------------------------------------------------------------------------- /core/kernel/filesystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/core/kernel/filesystem.cpp -------------------------------------------------------------------------------- /core/kernel/filesystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/core/kernel/filesystem.h -------------------------------------------------------------------------------- /core/kernel/pthread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/core/kernel/pthread.cpp -------------------------------------------------------------------------------- /core/kernel/pthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/core/kernel/pthread.h -------------------------------------------------------------------------------- /core/kernel/pthread_intern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/core/kernel/pthread_intern.h -------------------------------------------------------------------------------- /core/kernel/pthread_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/core/kernel/pthread_types.h -------------------------------------------------------------------------------- /core/kernel/semaphore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/core/kernel/semaphore.h -------------------------------------------------------------------------------- /core/kernel/semaphore_fifo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/core/kernel/semaphore_fifo.cpp -------------------------------------------------------------------------------- /core/memory/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/core/memory/CMakeLists.txt -------------------------------------------------------------------------------- /core/memory/memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/core/memory/memory.cpp -------------------------------------------------------------------------------- /core/memory/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/core/memory/memory.h -------------------------------------------------------------------------------- /core/networking/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/core/networking/CMakeLists.txt -------------------------------------------------------------------------------- /core/networking/networking.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/core/networking/networking.cpp -------------------------------------------------------------------------------- /core/networking/networking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/core/networking/networking.h -------------------------------------------------------------------------------- /core/networking/states/offline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/core/networking/states/offline.cpp -------------------------------------------------------------------------------- /core/networking/states/offline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/core/networking/states/offline.h -------------------------------------------------------------------------------- /core/networking/states/online.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/core/networking/states/online.h -------------------------------------------------------------------------------- /core/networking/states/online/epoll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/core/networking/states/online/epoll.cpp -------------------------------------------------------------------------------- /core/networking/states/online/http.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/core/networking/states/online/http.cpp -------------------------------------------------------------------------------- /core/networking/states/online/netctl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/core/networking/states/online/netctl.cpp -------------------------------------------------------------------------------- /core/networking/states/online/resolver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/core/networking/states/online/resolver.cpp -------------------------------------------------------------------------------- /core/networking/states/online/socket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/core/networking/states/online/socket.cpp -------------------------------------------------------------------------------- /core/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/core/readme.md -------------------------------------------------------------------------------- /core/runtime/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/core/runtime/CMakeLists.txt -------------------------------------------------------------------------------- /core/runtime/exports/intern.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/core/runtime/exports/intern.cpp -------------------------------------------------------------------------------- /core/runtime/exports/intern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/core/runtime/exports/intern.h -------------------------------------------------------------------------------- /core/runtime/exports/macro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/core/runtime/exports/macro.h -------------------------------------------------------------------------------- /core/runtime/formats/IFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/core/runtime/formats/IFormat.h -------------------------------------------------------------------------------- /core/runtime/formats/ISymbols.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/core/runtime/formats/ISymbols.h -------------------------------------------------------------------------------- /core/runtime/formats/elf64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/core/runtime/formats/elf64.cpp -------------------------------------------------------------------------------- /core/runtime/formats/elf64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/core/runtime/formats/elf64.h -------------------------------------------------------------------------------- /core/runtime/memoryLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/core/runtime/memoryLayout.h -------------------------------------------------------------------------------- /core/runtime/procParam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/core/runtime/procParam.h -------------------------------------------------------------------------------- /core/runtime/program.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/core/runtime/program.h -------------------------------------------------------------------------------- /core/runtime/runtimeExport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/core/runtime/runtimeExport.h -------------------------------------------------------------------------------- /core/runtime/runtimeLinker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/core/runtime/runtimeLinker.cpp -------------------------------------------------------------------------------- /core/runtime/runtimeLinker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/core/runtime/runtimeLinker.h -------------------------------------------------------------------------------- /core/runtime/util/exceptionHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/core/runtime/util/exceptionHandler.cpp -------------------------------------------------------------------------------- /core/runtime/util/exceptionHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/core/runtime/util/exceptionHandler.h -------------------------------------------------------------------------------- /core/runtime/util/moduleLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/core/runtime/util/moduleLoader.cpp -------------------------------------------------------------------------------- /core/runtime/util/moduleLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/core/runtime/util/moduleLoader.h -------------------------------------------------------------------------------- /core/runtime/util/plt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/core/runtime/util/plt.h -------------------------------------------------------------------------------- /core/runtime/util/virtualmemory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/core/runtime/util/virtualmemory.cpp -------------------------------------------------------------------------------- /core/runtime/util/virtualmemory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/core/runtime/util/virtualmemory.h -------------------------------------------------------------------------------- /core/systemContent/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/core/systemContent/CMakeLists.txt -------------------------------------------------------------------------------- /core/systemContent/systemContent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/core/systemContent/systemContent.cpp -------------------------------------------------------------------------------- /core/systemContent/systemContent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/core/systemContent/systemContent.h -------------------------------------------------------------------------------- /core/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/core/tests/CMakeLists.txt -------------------------------------------------------------------------------- /core/tests/core/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(semaphore) -------------------------------------------------------------------------------- /core/tests/core/semaphore/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/core/tests/core/semaphore/CMakeLists.txt -------------------------------------------------------------------------------- /core/tests/core/semaphore/entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/core/tests/core/semaphore/entry.cpp -------------------------------------------------------------------------------- /core/timer/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/core/timer/CMakeLists.txt -------------------------------------------------------------------------------- /core/timer/SysWindowsTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/core/timer/SysWindowsTimer.h -------------------------------------------------------------------------------- /core/timer/timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/core/timer/timer.cpp -------------------------------------------------------------------------------- /core/timer/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/core/timer/timer.h -------------------------------------------------------------------------------- /core/trophies/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/core/trophies/CMakeLists.txt -------------------------------------------------------------------------------- /core/trophies/trophies.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/core/trophies/trophies.cpp -------------------------------------------------------------------------------- /core/trophies/trophies.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/core/trophies/trophies.h -------------------------------------------------------------------------------- /core/unwinding/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/core/unwinding/CMakeLists.txt -------------------------------------------------------------------------------- /core/unwinding/unwind.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/core/unwinding/unwind.asm -------------------------------------------------------------------------------- /core/unwinding/unwind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/core/unwinding/unwind.h -------------------------------------------------------------------------------- /core/videoout/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/core/videoout/CMakeLists.txt -------------------------------------------------------------------------------- /core/videoout/imageHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/core/videoout/imageHandler.cpp -------------------------------------------------------------------------------- /core/videoout/imageHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/core/videoout/imageHandler.h -------------------------------------------------------------------------------- /core/videoout/overlay/gamemenu/gamemenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/core/videoout/overlay/gamemenu/gamemenu.cpp -------------------------------------------------------------------------------- /core/videoout/overlay/gamemenu/gamemenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/core/videoout/overlay/gamemenu/gamemenu.h -------------------------------------------------------------------------------- /core/videoout/overlay/imhelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/core/videoout/overlay/imhelper.h -------------------------------------------------------------------------------- /core/videoout/overlay/overlay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/core/videoout/overlay/overlay.cpp -------------------------------------------------------------------------------- /core/videoout/overlay/overlay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/core/videoout/overlay/overlay.h -------------------------------------------------------------------------------- /core/videoout/overlay/overtrophy/overtrophy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/core/videoout/overlay/overtrophy/overtrophy.cpp -------------------------------------------------------------------------------- /core/videoout/overlay/overtrophy/overtrophy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/core/videoout/overlay/overtrophy/overtrophy.h -------------------------------------------------------------------------------- /core/videoout/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/core/videoout/readme.md -------------------------------------------------------------------------------- /core/videoout/videoout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/core/videoout/videoout.cpp -------------------------------------------------------------------------------- /core/videoout/videoout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/core/videoout/videoout.h -------------------------------------------------------------------------------- /core/videoout/vulkan/vulkanHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/core/videoout/vulkan/vulkanHelper.cpp -------------------------------------------------------------------------------- /core/videoout/vulkan/vulkanHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/core/videoout/vulkan/vulkanHelper.h -------------------------------------------------------------------------------- /core/videoout/vulkan/vulkanSetup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/core/videoout/vulkan/vulkanSetup.cpp -------------------------------------------------------------------------------- /core/videoout/vulkan/vulkanSetup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/core/videoout/vulkan/vulkanSetup.h -------------------------------------------------------------------------------- /core/videoout/vulkan/vulkanTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/core/videoout/vulkan/vulkanTypes.h -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/json/audio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/docs/json/audio.json -------------------------------------------------------------------------------- /docs/json/controls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/docs/json/controls.json -------------------------------------------------------------------------------- /docs/json/general.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/docs/json/general.json -------------------------------------------------------------------------------- /docs/json/graphics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/docs/json/graphics.json -------------------------------------------------------------------------------- /docs/json/logging.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/docs/json/logging.json -------------------------------------------------------------------------------- /docs/resource/AMD_Southern_Islands_Instruction_Set_Architecture.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/docs/resource/AMD_Southern_Islands_Instruction_Set_Architecture.pdf -------------------------------------------------------------------------------- /docs/resource/GLSLangSpec.4.60.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/docs/resource/GLSLangSpec.4.60.pdf -------------------------------------------------------------------------------- /docs/resource/R6xx_R7xx_3D.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/docs/resource/R6xx_R7xx_3D.pdf -------------------------------------------------------------------------------- /docs/resource/Vega_Shader_ISA_28July2017.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/docs/resource/Vega_Shader_ISA_28July2017.pdf -------------------------------------------------------------------------------- /docs/resource/si_programming_guide_v2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/docs/resource/si_programming_guide_v2.pdf -------------------------------------------------------------------------------- /docs/uml/modules/coreDeps.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/docs/uml/modules/coreDeps.puml -------------------------------------------------------------------------------- /docs/uml/modules/fileManager.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/docs/uml/modules/fileManager.puml -------------------------------------------------------------------------------- /docs/uml/modules/videoout_class.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/docs/uml/modules/videoout_class.puml -------------------------------------------------------------------------------- /docs/uml/modules/videout_swapchain.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/docs/uml/modules/videout_swapchain.puml -------------------------------------------------------------------------------- /docs/wiki/images/vsbuild/cmake_build.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/docs/wiki/images/vsbuild/cmake_build.png -------------------------------------------------------------------------------- /docs/wiki/images/vsbuild/cmake_configure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/docs/wiki/images/vsbuild/cmake_configure.png -------------------------------------------------------------------------------- /docs/wiki/images/vsbuild/cmake_pins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/docs/wiki/images/vsbuild/cmake_pins.png -------------------------------------------------------------------------------- /docs/wiki/images/vsbuild/debug_warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/docs/wiki/images/vsbuild/debug_warning.png -------------------------------------------------------------------------------- /docs/wiki/images/vsbuild/default_compiler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/docs/wiki/images/vsbuild/default_compiler.png -------------------------------------------------------------------------------- /docs/wiki/images/vsbuild/default_compiler_popup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/docs/wiki/images/vsbuild/default_compiler_popup.png -------------------------------------------------------------------------------- /docs/wiki/images/vsbuild/default_compiler_sure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/docs/wiki/images/vsbuild/default_compiler_sure.png -------------------------------------------------------------------------------- /docs/wiki/images/vsbuild/optimizations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/docs/wiki/images/vsbuild/optimizations.png -------------------------------------------------------------------------------- /docs/wiki/images/vsbuild/recomends_btn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/docs/wiki/images/vsbuild/recomends_btn.png -------------------------------------------------------------------------------- /docs/wiki/images/vsbuild/recomends_help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/docs/wiki/images/vsbuild/recomends_help.png -------------------------------------------------------------------------------- /docs/wiki/images/vsbuild/recomends_install.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/docs/wiki/images/vsbuild/recomends_install.png -------------------------------------------------------------------------------- /docs/wiki/markdown/Building-psOff-VSCode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/docs/wiki/markdown/Building-psOff-VSCode.md -------------------------------------------------------------------------------- /docs/wiki/markdown/Building-psOff-from-scratch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/docs/wiki/markdown/Building-psOff-from-scratch.md -------------------------------------------------------------------------------- /docs/wiki/markdown/Config-files.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/docs/wiki/markdown/Config-files.md -------------------------------------------------------------------------------- /docs/wiki/markdown/Home.md: -------------------------------------------------------------------------------- 1 | Welcome to the psOff_public wiki! 2 | -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/main.cpp -------------------------------------------------------------------------------- /misc/discordNotify/.gitignore: -------------------------------------------------------------------------------- 1 | package-lock.json 2 | node_modules 3 | -------------------------------------------------------------------------------- /misc/discordNotify/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/misc/discordNotify/main.js -------------------------------------------------------------------------------- /misc/discordNotify/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/misc/discordNotify/package.json -------------------------------------------------------------------------------- /misc/testRunner/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/misc/testRunner/main.js -------------------------------------------------------------------------------- /misc/testRunner/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/misc/testRunner/package.json -------------------------------------------------------------------------------- /misc/testRunner/summary/.gitignore: -------------------------------------------------------------------------------- 1 | *.json 2 | -------------------------------------------------------------------------------- /misc/testRunner/summary/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/CMakeLists.txt -------------------------------------------------------------------------------- /modules/libSceAjm/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceAjm/CMakeLists.txt -------------------------------------------------------------------------------- /modules/libSceAjm/codes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceAjm/codes.h -------------------------------------------------------------------------------- /modules/libSceAjm/entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceAjm/entry.cpp -------------------------------------------------------------------------------- /modules/libSceAjm/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceAjm/types.h -------------------------------------------------------------------------------- /modules/libSceAppContent/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceAppContent/CMakeLists.txt -------------------------------------------------------------------------------- /modules/libSceAppContent/codes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceAppContent/codes.h -------------------------------------------------------------------------------- /modules/libSceAppContent/entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceAppContent/entry.cpp -------------------------------------------------------------------------------- /modules/libSceAppContent/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceAppContent/types.h -------------------------------------------------------------------------------- /modules/libSceAudio3d/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceAudio3d/CMakeLists.txt -------------------------------------------------------------------------------- /modules/libSceAudio3d/codes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceAudio3d/codes.h -------------------------------------------------------------------------------- /modules/libSceAudio3d/entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceAudio3d/entry.cpp -------------------------------------------------------------------------------- /modules/libSceAudio3d/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceAudio3d/types.h -------------------------------------------------------------------------------- /modules/libSceAudioIn/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceAudioIn/CMakeLists.txt -------------------------------------------------------------------------------- /modules/libSceAudioIn/codes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceAudioIn/codes.h -------------------------------------------------------------------------------- /modules/libSceAudioIn/entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceAudioIn/entry.cpp -------------------------------------------------------------------------------- /modules/libSceAudioIn/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceAudioIn/types.h -------------------------------------------------------------------------------- /modules/libSceAudioOut/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceAudioOut/CMakeLists.txt -------------------------------------------------------------------------------- /modules/libSceAudioOut/codes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceAudioOut/codes.h -------------------------------------------------------------------------------- /modules/libSceAudioOut/entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceAudioOut/entry.cpp -------------------------------------------------------------------------------- /modules/libSceAudioOut/mastering.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceAudioOut/mastering.h -------------------------------------------------------------------------------- /modules/libSceAudioOut/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceAudioOut/types.h -------------------------------------------------------------------------------- /modules/libSceAudiodec/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceAudiodec/CMakeLists.txt -------------------------------------------------------------------------------- /modules/libSceAudiodec/codes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceAudiodec/codes.h -------------------------------------------------------------------------------- /modules/libSceAudiodec/entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceAudiodec/entry.cpp -------------------------------------------------------------------------------- /modules/libSceAudiodec/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceAudiodec/types.h -------------------------------------------------------------------------------- /modules/libSceAudiodecCpu/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceAudiodecCpu/CMakeLists.txt -------------------------------------------------------------------------------- /modules/libSceAudiodecCpu/codes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceAudiodecCpu/codes.h -------------------------------------------------------------------------------- /modules/libSceAudiodecCpu/entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceAudiodecCpu/entry.cpp -------------------------------------------------------------------------------- /modules/libSceAudiodecCpu/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceAudiodecCpu/types.h -------------------------------------------------------------------------------- /modules/libSceAvPlayer/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceAvPlayer/CMakeLists.txt -------------------------------------------------------------------------------- /modules/libSceAvPlayer/avplayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceAvPlayer/avplayer.cpp -------------------------------------------------------------------------------- /modules/libSceAvPlayer/avplayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceAvPlayer/avplayer.h -------------------------------------------------------------------------------- /modules/libSceAvPlayer/codes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceAvPlayer/codes.h -------------------------------------------------------------------------------- /modules/libSceAvPlayer/entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceAvPlayer/entry.cpp -------------------------------------------------------------------------------- /modules/libSceAvPlayer/entryEx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceAvPlayer/entryEx.cpp -------------------------------------------------------------------------------- /modules/libSceAvPlayer/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceAvPlayer/types.h -------------------------------------------------------------------------------- /modules/libSceAvPlayer/typesEx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceAvPlayer/typesEx.h -------------------------------------------------------------------------------- /modules/libSceCamera/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceCamera/CMakeLists.txt -------------------------------------------------------------------------------- /modules/libSceCamera/codes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceCamera/codes.h -------------------------------------------------------------------------------- /modules/libSceCamera/entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceCamera/entry.cpp -------------------------------------------------------------------------------- /modules/libSceCamera/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceCamera/types.h -------------------------------------------------------------------------------- /modules/libSceCes/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceCes/CMakeLists.txt -------------------------------------------------------------------------------- /modules/libSceCes/codes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceCes/codes.h -------------------------------------------------------------------------------- /modules/libSceCes/entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceCes/entry.cpp -------------------------------------------------------------------------------- /modules/libSceCes/types.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #include "codes.h" 3 | -------------------------------------------------------------------------------- /modules/libSceCommonDialog/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceCommonDialog/CMakeLists.txt -------------------------------------------------------------------------------- /modules/libSceCommonDialog/codes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceCommonDialog/codes.h -------------------------------------------------------------------------------- /modules/libSceCommonDialog/entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceCommonDialog/entry.cpp -------------------------------------------------------------------------------- /modules/libSceCommonDialog/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceCommonDialog/types.h -------------------------------------------------------------------------------- /modules/libSceContentExport/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceContentExport/CMakeLists.txt -------------------------------------------------------------------------------- /modules/libSceContentExport/codes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceContentExport/codes.h -------------------------------------------------------------------------------- /modules/libSceContentExport/entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceContentExport/entry.cpp -------------------------------------------------------------------------------- /modules/libSceContentExport/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceContentExport/types.h -------------------------------------------------------------------------------- /modules/libSceCoredump/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceCoredump/CMakeLists.txt -------------------------------------------------------------------------------- /modules/libSceCoredump/codes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceCoredump/codes.h -------------------------------------------------------------------------------- /modules/libSceCoredump/entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceCoredump/entry.cpp -------------------------------------------------------------------------------- /modules/libSceCoredump/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceCoredump/types.h -------------------------------------------------------------------------------- /modules/libSceDepth/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceDepth/CMakeLists.txt -------------------------------------------------------------------------------- /modules/libSceDepth/codes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceDepth/codes.h -------------------------------------------------------------------------------- /modules/libSceDepth/entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceDepth/entry.cpp -------------------------------------------------------------------------------- /modules/libSceDepth/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceDepth/types.h -------------------------------------------------------------------------------- /modules/libSceDiscMap/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceDiscMap/CMakeLists.txt -------------------------------------------------------------------------------- /modules/libSceDiscMap/codes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceDiscMap/codes.h -------------------------------------------------------------------------------- /modules/libSceDiscMap/entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceDiscMap/entry.cpp -------------------------------------------------------------------------------- /modules/libSceDiscMap/types.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #include "codes.h" 3 | -------------------------------------------------------------------------------- /modules/libSceErrorDialog/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceErrorDialog/CMakeLists.txt -------------------------------------------------------------------------------- /modules/libSceErrorDialog/codes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceErrorDialog/codes.h -------------------------------------------------------------------------------- /modules/libSceErrorDialog/entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceErrorDialog/entry.cpp -------------------------------------------------------------------------------- /modules/libSceErrorDialog/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceErrorDialog/types.h -------------------------------------------------------------------------------- /modules/libSceFace/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceFace/CMakeLists.txt -------------------------------------------------------------------------------- /modules/libSceFace/codes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceFace/codes.h -------------------------------------------------------------------------------- /modules/libSceFace/entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceFace/entry.cpp -------------------------------------------------------------------------------- /modules/libSceFace/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceFace/types.h -------------------------------------------------------------------------------- /modules/libSceFaceTracker/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceFaceTracker/CMakeLists.txt -------------------------------------------------------------------------------- /modules/libSceFaceTracker/codes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceFaceTracker/codes.h -------------------------------------------------------------------------------- /modules/libSceFaceTracker/entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceFaceTracker/entry.cpp -------------------------------------------------------------------------------- /modules/libSceFaceTracker/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceFaceTracker/types.h -------------------------------------------------------------------------------- /modules/libSceGameLiveStreaming/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceGameLiveStreaming/CMakeLists.txt -------------------------------------------------------------------------------- /modules/libSceGameLiveStreaming/codes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceGameLiveStreaming/codes.h -------------------------------------------------------------------------------- /modules/libSceGameLiveStreaming/entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceGameLiveStreaming/entry.cpp -------------------------------------------------------------------------------- /modules/libSceGameLiveStreaming/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceGameLiveStreaming/types.h -------------------------------------------------------------------------------- /modules/libSceGraphicsDriver/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceGraphicsDriver/CMakeLists.txt -------------------------------------------------------------------------------- /modules/libSceGraphicsDriver/codes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceGraphicsDriver/codes.h -------------------------------------------------------------------------------- /modules/libSceGraphicsDriver/entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceGraphicsDriver/entry.cpp -------------------------------------------------------------------------------- /modules/libSceGraphicsDriver/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceGraphicsDriver/types.h -------------------------------------------------------------------------------- /modules/libSceHmd/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceHmd/CMakeLists.txt -------------------------------------------------------------------------------- /modules/libSceHmd/codes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceHmd/codes.h -------------------------------------------------------------------------------- /modules/libSceHmd/entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceHmd/entry.cpp -------------------------------------------------------------------------------- /modules/libSceHmd/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceHmd/types.h -------------------------------------------------------------------------------- /modules/libSceHttp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceHttp/CMakeLists.txt -------------------------------------------------------------------------------- /modules/libSceHttp/codes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceHttp/codes.h -------------------------------------------------------------------------------- /modules/libSceHttp/entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceHttp/entry.cpp -------------------------------------------------------------------------------- /modules/libSceHttp/httpsTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceHttp/httpsTypes.h -------------------------------------------------------------------------------- /modules/libSceHttp/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceHttp/types.h -------------------------------------------------------------------------------- /modules/libSceHttp2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceHttp2/CMakeLists.txt -------------------------------------------------------------------------------- /modules/libSceHttp2/codes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceHttp2/codes.h -------------------------------------------------------------------------------- /modules/libSceHttp2/entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceHttp2/entry.cpp -------------------------------------------------------------------------------- /modules/libSceHttp2/types.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #include "codes.h" 3 | -------------------------------------------------------------------------------- /modules/libSceIme/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceIme/CMakeLists.txt -------------------------------------------------------------------------------- /modules/libSceIme/codes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceIme/codes.h -------------------------------------------------------------------------------- /modules/libSceIme/entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceIme/entry.cpp -------------------------------------------------------------------------------- /modules/libSceIme/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceIme/types.h -------------------------------------------------------------------------------- /modules/libSceImeDialog/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceImeDialog/CMakeLists.txt -------------------------------------------------------------------------------- /modules/libSceImeDialog/codes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceImeDialog/codes.h -------------------------------------------------------------------------------- /modules/libSceImeDialog/entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceImeDialog/entry.cpp -------------------------------------------------------------------------------- /modules/libSceImeDialog/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceImeDialog/types.h -------------------------------------------------------------------------------- /modules/libSceInvitationDialog/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceInvitationDialog/CMakeLists.txt -------------------------------------------------------------------------------- /modules/libSceInvitationDialog/codes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceInvitationDialog/codes.h -------------------------------------------------------------------------------- /modules/libSceInvitationDialog/entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceInvitationDialog/entry.cpp -------------------------------------------------------------------------------- /modules/libSceInvitationDialog/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceInvitationDialog/types.h -------------------------------------------------------------------------------- /modules/libSceJson2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceJson2/CMakeLists.txt -------------------------------------------------------------------------------- /modules/libSceJson2/codes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceJson2/codes.h -------------------------------------------------------------------------------- /modules/libSceJson2/entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceJson2/entry.cpp -------------------------------------------------------------------------------- /modules/libSceJson2/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceJson2/types.h -------------------------------------------------------------------------------- /modules/libSceLibcInternal/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceLibcInternal/CMakeLists.txt -------------------------------------------------------------------------------- /modules/libSceLibcInternal/codes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceLibcInternal/codes.h -------------------------------------------------------------------------------- /modules/libSceLibcInternal/entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceLibcInternal/entry.cpp -------------------------------------------------------------------------------- /modules/libSceLibcInternal/mspace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceLibcInternal/mspace.cpp -------------------------------------------------------------------------------- /modules/libSceLibcInternal/types.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #include "codes.h" 3 | -------------------------------------------------------------------------------- /modules/libSceLibcInternalExt/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceLibcInternalExt/CMakeLists.txt -------------------------------------------------------------------------------- /modules/libSceLibcInternalExt/codes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceLibcInternalExt/codes.h -------------------------------------------------------------------------------- /modules/libSceLibcInternalExt/entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceLibcInternalExt/entry.cpp -------------------------------------------------------------------------------- /modules/libSceLibcInternalExt/types.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #include "codes.h" 3 | -------------------------------------------------------------------------------- /modules/libSceMouse/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceMouse/CMakeLists.txt -------------------------------------------------------------------------------- /modules/libSceMouse/codes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceMouse/codes.h -------------------------------------------------------------------------------- /modules/libSceMouse/entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceMouse/entry.cpp -------------------------------------------------------------------------------- /modules/libSceMouse/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceMouse/types.h -------------------------------------------------------------------------------- /modules/libSceMove/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceMove/CMakeLists.txt -------------------------------------------------------------------------------- /modules/libSceMove/codes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceMove/codes.h -------------------------------------------------------------------------------- /modules/libSceMove/entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceMove/entry.cpp -------------------------------------------------------------------------------- /modules/libSceMove/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceMove/types.h -------------------------------------------------------------------------------- /modules/libSceMoveTracker/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceMoveTracker/CMakeLists.txt -------------------------------------------------------------------------------- /modules/libSceMoveTracker/codes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceMoveTracker/codes.h -------------------------------------------------------------------------------- /modules/libSceMoveTracker/entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceMoveTracker/entry.cpp -------------------------------------------------------------------------------- /modules/libSceMoveTracker/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceMoveTracker/types.h -------------------------------------------------------------------------------- /modules/libSceMsgDialog/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceMsgDialog/CMakeLists.txt -------------------------------------------------------------------------------- /modules/libSceMsgDialog/codes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceMsgDialog/codes.h -------------------------------------------------------------------------------- /modules/libSceMsgDialog/entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceMsgDialog/entry.cpp -------------------------------------------------------------------------------- /modules/libSceMsgDialog/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceMsgDialog/types.h -------------------------------------------------------------------------------- /modules/libSceNet/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceNet/CMakeLists.txt -------------------------------------------------------------------------------- /modules/libSceNet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceNet/README.md -------------------------------------------------------------------------------- /modules/libSceNet/codes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceNet/codes.h -------------------------------------------------------------------------------- /modules/libSceNet/entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceNet/entry.cpp -------------------------------------------------------------------------------- /modules/libSceNet/epoll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceNet/epoll.cpp -------------------------------------------------------------------------------- /modules/libSceNet/resolver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceNet/resolver.cpp -------------------------------------------------------------------------------- /modules/libSceNet/resolverTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceNet/resolverTypes.h -------------------------------------------------------------------------------- /modules/libSceNet/socket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceNet/socket.cpp -------------------------------------------------------------------------------- /modules/libSceNet/socketTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceNet/socketTypes.h -------------------------------------------------------------------------------- /modules/libSceNet/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceNet/types.h -------------------------------------------------------------------------------- /modules/libSceNetCtl/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceNetCtl/CMakeLists.txt -------------------------------------------------------------------------------- /modules/libSceNetCtl/codes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceNetCtl/codes.h -------------------------------------------------------------------------------- /modules/libSceNetCtl/entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceNetCtl/entry.cpp -------------------------------------------------------------------------------- /modules/libSceNetCtl/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceNetCtl/types.h -------------------------------------------------------------------------------- /modules/libSceNetCtlForNpToolkit/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceNetCtlForNpToolkit/CMakeLists.txt -------------------------------------------------------------------------------- /modules/libSceNetCtlForNpToolkit/codes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceNetCtlForNpToolkit/codes.h -------------------------------------------------------------------------------- /modules/libSceNetCtlForNpToolkit/entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceNetCtlForNpToolkit/entry.cpp -------------------------------------------------------------------------------- /modules/libSceNetCtlForNpToolkit/types.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #include "codes.h" 3 | -------------------------------------------------------------------------------- /modules/libSceNgs2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceNgs2/CMakeLists.txt -------------------------------------------------------------------------------- /modules/libSceNgs2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceNgs2/README.md -------------------------------------------------------------------------------- /modules/libSceNgs2/codes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceNgs2/codes.h -------------------------------------------------------------------------------- /modules/libSceNgs2/entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceNgs2/entry.cpp -------------------------------------------------------------------------------- /modules/libSceNgs2/readFuncs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceNgs2/readFuncs.cpp -------------------------------------------------------------------------------- /modules/libSceNgs2/readFuncs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceNgs2/readFuncs.h -------------------------------------------------------------------------------- /modules/libSceNgs2/reader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceNgs2/reader.cpp -------------------------------------------------------------------------------- /modules/libSceNgs2/reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceNgs2/reader.h -------------------------------------------------------------------------------- /modules/libSceNgs2/riffTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceNgs2/riffTypes.h -------------------------------------------------------------------------------- /modules/libSceNgs2/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceNgs2/types.h -------------------------------------------------------------------------------- /modules/libSceNpAuth/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceNpAuth/CMakeLists.txt -------------------------------------------------------------------------------- /modules/libSceNpAuth/codes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceNpAuth/codes.h -------------------------------------------------------------------------------- /modules/libSceNpAuth/entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceNpAuth/entry.cpp -------------------------------------------------------------------------------- /modules/libSceNpAuth/types.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #include "codes.h" 3 | -------------------------------------------------------------------------------- /modules/libSceNpCommerce/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceNpCommerce/CMakeLists.txt -------------------------------------------------------------------------------- /modules/libSceNpCommerce/codes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceNpCommerce/codes.h -------------------------------------------------------------------------------- /modules/libSceNpCommerce/entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceNpCommerce/entry.cpp -------------------------------------------------------------------------------- /modules/libSceNpCommerce/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceNpCommerce/types.h -------------------------------------------------------------------------------- /modules/libSceNpCommon/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceNpCommon/CMakeLists.txt -------------------------------------------------------------------------------- /modules/libSceNpCommon/codes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceNpCommon/codes.h -------------------------------------------------------------------------------- /modules/libSceNpCommon/entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceNpCommon/entry.cpp -------------------------------------------------------------------------------- /modules/libSceNpCommon/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceNpCommon/types.h -------------------------------------------------------------------------------- /modules/libSceNpGameIntent/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceNpGameIntent/CMakeLists.txt -------------------------------------------------------------------------------- /modules/libSceNpGameIntent/codes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceNpGameIntent/codes.h -------------------------------------------------------------------------------- /modules/libSceNpGameIntent/entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceNpGameIntent/entry.cpp -------------------------------------------------------------------------------- /modules/libSceNpManager/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceNpManager/CMakeLists.txt -------------------------------------------------------------------------------- /modules/libSceNpManager/codes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceNpManager/codes.h -------------------------------------------------------------------------------- /modules/libSceNpManager/entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceNpManager/entry.cpp -------------------------------------------------------------------------------- /modules/libSceNpManager/onlineId.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceNpManager/onlineId.h -------------------------------------------------------------------------------- /modules/libSceNpManager/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceNpManager/types.h -------------------------------------------------------------------------------- /modules/libSceNpManagerForToolkit/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceNpManagerForToolkit/CMakeLists.txt -------------------------------------------------------------------------------- /modules/libSceNpManagerForToolkit/codes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceNpManagerForToolkit/codes.h -------------------------------------------------------------------------------- /modules/libSceNpManagerForToolkit/entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceNpManagerForToolkit/entry.cpp -------------------------------------------------------------------------------- /modules/libSceNpManagerForToolkit/types.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #include "codes.h" 3 | -------------------------------------------------------------------------------- /modules/libSceNpMatching2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceNpMatching2/CMakeLists.txt -------------------------------------------------------------------------------- /modules/libSceNpMatching2/codes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceNpMatching2/codes.h -------------------------------------------------------------------------------- /modules/libSceNpMatching2/entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceNpMatching2/entry.cpp -------------------------------------------------------------------------------- /modules/libSceNpMatching2/types.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #include "codes.h" 3 | -------------------------------------------------------------------------------- /modules/libSceNpParty/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceNpParty/CMakeLists.txt -------------------------------------------------------------------------------- /modules/libSceNpParty/codes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceNpParty/codes.h -------------------------------------------------------------------------------- /modules/libSceNpParty/entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceNpParty/entry.cpp -------------------------------------------------------------------------------- /modules/libSceNpParty/types.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #include "codes.h" 3 | -------------------------------------------------------------------------------- /modules/libSceNpProfileDialog/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceNpProfileDialog/CMakeLists.txt -------------------------------------------------------------------------------- /modules/libSceNpProfileDialog/codes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceNpProfileDialog/codes.h -------------------------------------------------------------------------------- /modules/libSceNpProfileDialog/entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceNpProfileDialog/entry.cpp -------------------------------------------------------------------------------- /modules/libSceNpProfileDialog/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceNpProfileDialog/types.h -------------------------------------------------------------------------------- /modules/libSceNpScore/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceNpScore/CMakeLists.txt -------------------------------------------------------------------------------- /modules/libSceNpScore/codes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceNpScore/codes.h -------------------------------------------------------------------------------- /modules/libSceNpScore/entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceNpScore/entry.cpp -------------------------------------------------------------------------------- /modules/libSceNpScore/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceNpScore/types.h -------------------------------------------------------------------------------- /modules/libSceNpSignaling/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceNpSignaling/CMakeLists.txt -------------------------------------------------------------------------------- /modules/libSceNpSignaling/codes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceNpSignaling/codes.h -------------------------------------------------------------------------------- /modules/libSceNpSignaling/entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceNpSignaling/entry.cpp -------------------------------------------------------------------------------- /modules/libSceNpSignaling/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceNpSignaling/types.h -------------------------------------------------------------------------------- /modules/libSceNpSnsFacebookDialog/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceNpSnsFacebookDialog/CMakeLists.txt -------------------------------------------------------------------------------- /modules/libSceNpSnsFacebookDialog/codes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceNpSnsFacebookDialog/codes.h -------------------------------------------------------------------------------- /modules/libSceNpSnsFacebookDialog/entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceNpSnsFacebookDialog/entry.cpp -------------------------------------------------------------------------------- /modules/libSceNpSnsFacebookDialog/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceNpSnsFacebookDialog/types.h -------------------------------------------------------------------------------- /modules/libSceNpToolkit2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceNpToolkit2/CMakeLists.txt -------------------------------------------------------------------------------- /modules/libSceNpToolkit2/codes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceNpToolkit2/codes.h -------------------------------------------------------------------------------- /modules/libSceNpToolkit2/entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceNpToolkit2/entry.cpp -------------------------------------------------------------------------------- /modules/libSceNpTrophy/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceNpTrophy/CMakeLists.txt -------------------------------------------------------------------------------- /modules/libSceNpTrophy/codes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceNpTrophy/codes.h -------------------------------------------------------------------------------- /modules/libSceNpTrophy/entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceNpTrophy/entry.cpp -------------------------------------------------------------------------------- /modules/libSceNpTrophy/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceNpTrophy/types.h -------------------------------------------------------------------------------- /modules/libSceNpTus/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceNpTus/CMakeLists.txt -------------------------------------------------------------------------------- /modules/libSceNpTus/codes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceNpTus/codes.h -------------------------------------------------------------------------------- /modules/libSceNpTus/entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceNpTus/entry.cpp -------------------------------------------------------------------------------- /modules/libSceNpTus/types.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #include "codes.h" 3 | -------------------------------------------------------------------------------- /modules/libSceNpWebApi/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceNpWebApi/CMakeLists.txt -------------------------------------------------------------------------------- /modules/libSceNpWebApi/codes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceNpWebApi/codes.h -------------------------------------------------------------------------------- /modules/libSceNpWebApi/entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceNpWebApi/entry.cpp -------------------------------------------------------------------------------- /modules/libSceNpWebApi/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceNpWebApi/types.h -------------------------------------------------------------------------------- /modules/libSceNpWebApi2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceNpWebApi2/CMakeLists.txt -------------------------------------------------------------------------------- /modules/libSceNpWebApi2/codes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceNpWebApi2/codes.h -------------------------------------------------------------------------------- /modules/libSceNpWebApi2/entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceNpWebApi2/entry.cpp -------------------------------------------------------------------------------- /modules/libSceNpWebApi2/types.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #include "codes.h" 3 | -------------------------------------------------------------------------------- /modules/libScePad/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libScePad/CMakeLists.txt -------------------------------------------------------------------------------- /modules/libScePad/codes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libScePad/codes.h -------------------------------------------------------------------------------- /modules/libScePad/entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libScePad/entry.cpp -------------------------------------------------------------------------------- /modules/libScePad/icontroller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libScePad/icontroller.h -------------------------------------------------------------------------------- /modules/libScePad/interfaces/ikbd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libScePad/interfaces/ikbd.cpp -------------------------------------------------------------------------------- /modules/libScePad/interfaces/ikbd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libScePad/interfaces/ikbd.h -------------------------------------------------------------------------------- /modules/libScePad/interfaces/isdl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libScePad/interfaces/isdl.cpp -------------------------------------------------------------------------------- /modules/libScePad/interfaces/isdl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libScePad/interfaces/isdl.h -------------------------------------------------------------------------------- /modules/libScePad/interfaces/ixip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libScePad/interfaces/ixip.cpp -------------------------------------------------------------------------------- /modules/libScePad/interfaces/ixip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libScePad/interfaces/ixip.h -------------------------------------------------------------------------------- /modules/libScePad/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libScePad/types.h -------------------------------------------------------------------------------- /modules/libScePadTracker/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libScePadTracker/CMakeLists.txt -------------------------------------------------------------------------------- /modules/libScePadTracker/codes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libScePadTracker/codes.h -------------------------------------------------------------------------------- /modules/libScePadTracker/entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libScePadTracker/entry.cpp -------------------------------------------------------------------------------- /modules/libScePadTracker/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libScePadTracker/types.h -------------------------------------------------------------------------------- /modules/libScePlayGo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libScePlayGo/CMakeLists.txt -------------------------------------------------------------------------------- /modules/libScePlayGo/codes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libScePlayGo/codes.h -------------------------------------------------------------------------------- /modules/libScePlayGo/entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libScePlayGo/entry.cpp -------------------------------------------------------------------------------- /modules/libScePlayGo/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libScePlayGo/types.h -------------------------------------------------------------------------------- /modules/libScePngDec/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libScePngDec/CMakeLists.txt -------------------------------------------------------------------------------- /modules/libScePngDec/codes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libScePngDec/codes.h -------------------------------------------------------------------------------- /modules/libScePngDec/entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libScePngDec/entry.cpp -------------------------------------------------------------------------------- /modules/libScePngDec/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libScePngDec/types.h -------------------------------------------------------------------------------- /modules/libScePngEnc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libScePngEnc/CMakeLists.txt -------------------------------------------------------------------------------- /modules/libScePngEnc/codes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libScePngEnc/codes.h -------------------------------------------------------------------------------- /modules/libScePngEnc/entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libScePngEnc/entry.cpp -------------------------------------------------------------------------------- /modules/libScePngEnc/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libScePngEnc/types.h -------------------------------------------------------------------------------- /modules/libScePosix/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libScePosix/CMakeLists.txt -------------------------------------------------------------------------------- /modules/libScePosix/codes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libScePosix/codes.h -------------------------------------------------------------------------------- /modules/libScePosix/entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libScePosix/entry.cpp -------------------------------------------------------------------------------- /modules/libScePosix/fs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libScePosix/fs.cpp -------------------------------------------------------------------------------- /modules/libScePosix/mman.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libScePosix/mman.cpp -------------------------------------------------------------------------------- /modules/libScePosix/pthread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libScePosix/pthread.cpp -------------------------------------------------------------------------------- /modules/libScePosix/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libScePosix/types.h -------------------------------------------------------------------------------- /modules/libSceRandom/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceRandom/CMakeLists.txt -------------------------------------------------------------------------------- /modules/libSceRandom/codes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceRandom/codes.h -------------------------------------------------------------------------------- /modules/libSceRandom/entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceRandom/entry.cpp -------------------------------------------------------------------------------- /modules/libSceRandom/types.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #include "codes.h" 3 | -------------------------------------------------------------------------------- /modules/libSceRemoteplay/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceRemoteplay/CMakeLists.txt -------------------------------------------------------------------------------- /modules/libSceRemoteplay/codes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceRemoteplay/codes.h -------------------------------------------------------------------------------- /modules/libSceRemoteplay/entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceRemoteplay/entry.cpp -------------------------------------------------------------------------------- /modules/libSceRemoteplay/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceRemoteplay/types.h -------------------------------------------------------------------------------- /modules/libSceRtc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceRtc/CMakeLists.txt -------------------------------------------------------------------------------- /modules/libSceRtc/codes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceRtc/codes.h -------------------------------------------------------------------------------- /modules/libSceRtc/entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceRtc/entry.cpp -------------------------------------------------------------------------------- /modules/libSceRtc/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceRtc/types.h -------------------------------------------------------------------------------- /modules/libSceRudp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceRudp/CMakeLists.txt -------------------------------------------------------------------------------- /modules/libSceRudp/codes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceRudp/codes.h -------------------------------------------------------------------------------- /modules/libSceRudp/entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceRudp/entry.cpp -------------------------------------------------------------------------------- /modules/libSceRudp/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceRudp/types.h -------------------------------------------------------------------------------- /modules/libSceSaveData/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceSaveData/CMakeLists.txt -------------------------------------------------------------------------------- /modules/libSceSaveData/codes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceSaveData/codes.h -------------------------------------------------------------------------------- /modules/libSceSaveData/entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceSaveData/entry.cpp -------------------------------------------------------------------------------- /modules/libSceSaveData/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceSaveData/types.h -------------------------------------------------------------------------------- /modules/libSceSaveDataDialog/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceSaveDataDialog/CMakeLists.txt -------------------------------------------------------------------------------- /modules/libSceSaveDataDialog/codes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceSaveDataDialog/codes.h -------------------------------------------------------------------------------- /modules/libSceSaveDataDialog/entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceSaveDataDialog/entry.cpp -------------------------------------------------------------------------------- /modules/libSceSaveDataDialog/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceSaveDataDialog/types.h -------------------------------------------------------------------------------- /modules/libSceScreenShot/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceScreenShot/CMakeLists.txt -------------------------------------------------------------------------------- /modules/libSceScreenShot/codes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceScreenShot/codes.h -------------------------------------------------------------------------------- /modules/libSceScreenShot/entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceScreenShot/entry.cpp -------------------------------------------------------------------------------- /modules/libSceScreenShot/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceScreenShot/types.h -------------------------------------------------------------------------------- /modules/libSceSharePlay/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceSharePlay/CMakeLists.txt -------------------------------------------------------------------------------- /modules/libSceSharePlay/codes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceSharePlay/codes.h -------------------------------------------------------------------------------- /modules/libSceSharePlay/entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceSharePlay/entry.cpp -------------------------------------------------------------------------------- /modules/libSceSharePlay/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceSharePlay/types.h -------------------------------------------------------------------------------- /modules/libSceShareUtility/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceShareUtility/CMakeLists.txt -------------------------------------------------------------------------------- /modules/libSceShareUtility/codes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceShareUtility/codes.h -------------------------------------------------------------------------------- /modules/libSceShareUtility/entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceShareUtility/entry.cpp -------------------------------------------------------------------------------- /modules/libSceShareUtility/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceShareUtility/types.h -------------------------------------------------------------------------------- /modules/libSceSigninDialog/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceSigninDialog/CMakeLists.txt -------------------------------------------------------------------------------- /modules/libSceSigninDialog/codes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceSigninDialog/codes.h -------------------------------------------------------------------------------- /modules/libSceSigninDialog/entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceSigninDialog/entry.cpp -------------------------------------------------------------------------------- /modules/libSceSigninDialog/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceSigninDialog/types.h -------------------------------------------------------------------------------- /modules/libSceSocialScreen/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceSocialScreen/CMakeLists.txt -------------------------------------------------------------------------------- /modules/libSceSocialScreen/codes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceSocialScreen/codes.h -------------------------------------------------------------------------------- /modules/libSceSocialScreen/entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceSocialScreen/entry.cpp -------------------------------------------------------------------------------- /modules/libSceSocialScreen/types.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #include "codes.h" 3 | -------------------------------------------------------------------------------- /modules/libSceSsl/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceSsl/CMakeLists.txt -------------------------------------------------------------------------------- /modules/libSceSsl/codes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceSsl/codes.h -------------------------------------------------------------------------------- /modules/libSceSsl/entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceSsl/entry.cpp -------------------------------------------------------------------------------- /modules/libSceSsl/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceSsl/types.h -------------------------------------------------------------------------------- /modules/libSceSysmodule/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceSysmodule/CMakeLists.txt -------------------------------------------------------------------------------- /modules/libSceSysmodule/codes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceSysmodule/codes.h -------------------------------------------------------------------------------- /modules/libSceSysmodule/entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceSysmodule/entry.cpp -------------------------------------------------------------------------------- /modules/libSceSysmodule/types.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #include "codes.h" 3 | -------------------------------------------------------------------------------- /modules/libSceSystemGesture/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceSystemGesture/CMakeLists.txt -------------------------------------------------------------------------------- /modules/libSceSystemGesture/codes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceSystemGesture/codes.h -------------------------------------------------------------------------------- /modules/libSceSystemGesture/entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceSystemGesture/entry.cpp -------------------------------------------------------------------------------- /modules/libSceSystemService/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceSystemService/CMakeLists.txt -------------------------------------------------------------------------------- /modules/libSceSystemService/codes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceSystemService/codes.h -------------------------------------------------------------------------------- /modules/libSceSystemService/entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceSystemService/entry.cpp -------------------------------------------------------------------------------- /modules/libSceSystemService/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceSystemService/types.h -------------------------------------------------------------------------------- /modules/libSceSystemServicePs2Emu/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceSystemServicePs2Emu/CMakeLists.txt -------------------------------------------------------------------------------- /modules/libSceSystemServicePs2Emu/codes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceSystemServicePs2Emu/codes.h -------------------------------------------------------------------------------- /modules/libSceSystemServicePs2Emu/entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceSystemServicePs2Emu/entry.cpp -------------------------------------------------------------------------------- /modules/libSceSystemServicePs2Emu/types.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #include "codes.h" 3 | -------------------------------------------------------------------------------- /modules/libSceUlt/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceUlt/CMakeLists.txt -------------------------------------------------------------------------------- /modules/libSceUlt/codes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceUlt/codes.h -------------------------------------------------------------------------------- /modules/libSceUlt/entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceUlt/entry.cpp -------------------------------------------------------------------------------- /modules/libSceUlt/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceUlt/types.h -------------------------------------------------------------------------------- /modules/libSceUsbd/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceUsbd/CMakeLists.txt -------------------------------------------------------------------------------- /modules/libSceUsbd/codes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceUsbd/codes.h -------------------------------------------------------------------------------- /modules/libSceUsbd/entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceUsbd/entry.cpp -------------------------------------------------------------------------------- /modules/libSceUsbd/types.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #include "codes.h" 3 | 4 | struct SceUsbdDevice {}; -------------------------------------------------------------------------------- /modules/libSceUserService/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceUserService/CMakeLists.txt -------------------------------------------------------------------------------- /modules/libSceUserService/codes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceUserService/codes.h -------------------------------------------------------------------------------- /modules/libSceUserService/entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceUserService/entry.cpp -------------------------------------------------------------------------------- /modules/libSceUserServiceForNpToolkit/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceUserServiceForNpToolkit/CMakeLists.txt -------------------------------------------------------------------------------- /modules/libSceUserServiceForNpToolkit/codes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceUserServiceForNpToolkit/codes.h -------------------------------------------------------------------------------- /modules/libSceUserServiceForNpToolkit/entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceUserServiceForNpToolkit/entry.cpp -------------------------------------------------------------------------------- /modules/libSceUserServiceForNpToolkit/types.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #include "codes.h" 3 | -------------------------------------------------------------------------------- /modules/libSceVideoOut/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceVideoOut/CMakeLists.txt -------------------------------------------------------------------------------- /modules/libSceVideoOut/codes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceVideoOut/codes.h -------------------------------------------------------------------------------- /modules/libSceVideoOut/entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceVideoOut/entry.cpp -------------------------------------------------------------------------------- /modules/libSceVideoOut/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceVideoOut/types.h -------------------------------------------------------------------------------- /modules/libSceVideoRecording/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceVideoRecording/CMakeLists.txt -------------------------------------------------------------------------------- /modules/libSceVideoRecording/codes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceVideoRecording/codes.h -------------------------------------------------------------------------------- /modules/libSceVideoRecording/entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceVideoRecording/entry.cpp -------------------------------------------------------------------------------- /modules/libSceVideoRecording/types.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #include "codes.h" 3 | -------------------------------------------------------------------------------- /modules/libSceVoice/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceVoice/CMakeLists.txt -------------------------------------------------------------------------------- /modules/libSceVoice/codes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceVoice/codes.h -------------------------------------------------------------------------------- /modules/libSceVoice/entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceVoice/entry.cpp -------------------------------------------------------------------------------- /modules/libSceVoice/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceVoice/types.h -------------------------------------------------------------------------------- /modules/libSceVoiceQoS/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceVoiceQoS/CMakeLists.txt -------------------------------------------------------------------------------- /modules/libSceVoiceQoS/codes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceVoiceQoS/codes.h -------------------------------------------------------------------------------- /modules/libSceVoiceQoS/entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceVoiceQoS/entry.cpp -------------------------------------------------------------------------------- /modules/libSceVoiceQoS/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceVoiceQoS/types.h -------------------------------------------------------------------------------- /modules/libSceVrTracker/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceVrTracker/CMakeLists.txt -------------------------------------------------------------------------------- /modules/libSceVrTracker/codes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceVrTracker/codes.h -------------------------------------------------------------------------------- /modules/libSceVrTracker/entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceVrTracker/entry.cpp -------------------------------------------------------------------------------- /modules/libSceVrTracker/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceVrTracker/types.h -------------------------------------------------------------------------------- /modules/libSceZlib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceZlib/CMakeLists.txt -------------------------------------------------------------------------------- /modules/libSceZlib/codes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceZlib/codes.h -------------------------------------------------------------------------------- /modules/libSceZlib/entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libSceZlib/entry.cpp -------------------------------------------------------------------------------- /modules/libSceZlib/types.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #include "codes.h" 3 | -------------------------------------------------------------------------------- /modules/libkernel/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libkernel/CMakeLists.txt -------------------------------------------------------------------------------- /modules/libkernel/aio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libkernel/aio.cpp -------------------------------------------------------------------------------- /modules/libkernel/codes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libkernel/codes.h -------------------------------------------------------------------------------- /modules/libkernel/dmem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libkernel/dmem.cpp -------------------------------------------------------------------------------- /modules/libkernel/dmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libkernel/dmem.h -------------------------------------------------------------------------------- /modules/libkernel/entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libkernel/entry.cpp -------------------------------------------------------------------------------- /modules/libkernel/equeue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libkernel/equeue.cpp -------------------------------------------------------------------------------- /modules/libkernel/eventflag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libkernel/eventflag.cpp -------------------------------------------------------------------------------- /modules/libkernel/fs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libkernel/fs.cpp -------------------------------------------------------------------------------- /modules/libkernel/pthread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libkernel/pthread.cpp -------------------------------------------------------------------------------- /modules/libkernel/semaphore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libkernel/semaphore.cpp -------------------------------------------------------------------------------- /modules/libkernel/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libkernel/types.h -------------------------------------------------------------------------------- /modules/libkernel_cpumode_platform/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libkernel_cpumode_platform/CMakeLists.txt -------------------------------------------------------------------------------- /modules/libkernel_cpumode_platform/codes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libkernel_cpumode_platform/codes.h -------------------------------------------------------------------------------- /modules/libkernel_cpumode_platform/entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libkernel_cpumode_platform/entry.cpp -------------------------------------------------------------------------------- /modules/libkernel_cpumode_platform/types.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #include "codes.h" 3 | -------------------------------------------------------------------------------- /modules/libkernel_ps2emu/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libkernel_ps2emu/CMakeLists.txt -------------------------------------------------------------------------------- /modules/libkernel_ps2emu/codes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libkernel_ps2emu/codes.h -------------------------------------------------------------------------------- /modules/libkernel_ps2emu/entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libkernel_ps2emu/entry.cpp -------------------------------------------------------------------------------- /modules/libkernel_ps2emu/types.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #include "codes.h" 3 | -------------------------------------------------------------------------------- /modules/libkernel_unity/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libkernel_unity/CMakeLists.txt -------------------------------------------------------------------------------- /modules/libkernel_unity/codes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libkernel_unity/codes.h -------------------------------------------------------------------------------- /modules/libkernel_unity/entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libkernel_unity/entry.cpp -------------------------------------------------------------------------------- /modules/libkernel_unity/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/libkernel_unity/types.h -------------------------------------------------------------------------------- /modules/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/readme.md -------------------------------------------------------------------------------- /modules/setupModule.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/setupModule.cmake -------------------------------------------------------------------------------- /modules/template/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/template/CMakeLists.txt -------------------------------------------------------------------------------- /modules/template/codes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/template/codes.h -------------------------------------------------------------------------------- /modules/template/entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules/template/entry.cpp -------------------------------------------------------------------------------- /modules/template/types.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #include "codes.h" 3 | -------------------------------------------------------------------------------- /modules_include/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules_include/common.h -------------------------------------------------------------------------------- /modules_include/sceTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules_include/sceTypes.h -------------------------------------------------------------------------------- /modules_include/system_param.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/modules_include/system_param.h -------------------------------------------------------------------------------- /out/docs/uml/modules/coreDeps.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/out/docs/uml/modules/coreDeps.svg -------------------------------------------------------------------------------- /out/docs/uml/modules/fileManager.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/out/docs/uml/modules/fileManager.svg -------------------------------------------------------------------------------- /out/docs/uml/modules/videoout_class.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/out/docs/uml/modules/videoout_class.svg -------------------------------------------------------------------------------- /out/docs/uml/modules/videout_swapchain.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/out/docs/uml/modules/videout_swapchain.svg -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/readme.md -------------------------------------------------------------------------------- /tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/tests/CMakeLists.txt -------------------------------------------------------------------------------- /tests/core/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(semaphore) -------------------------------------------------------------------------------- /tests/core/semaphore/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/tests/core/semaphore/CMakeLists.txt -------------------------------------------------------------------------------- /tests/core/semaphore/entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/tests/core/semaphore/entry.cpp -------------------------------------------------------------------------------- /tools/config_emu/CmakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/tools/config_emu/CmakeLists.txt -------------------------------------------------------------------------------- /tools/config_emu/config_emu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/tools/config_emu/config_emu.cpp -------------------------------------------------------------------------------- /tools/config_emu/config_emu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/tools/config_emu/config_emu.h -------------------------------------------------------------------------------- /tools/dll2nids/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/tools/dll2nids/CMakeLists.txt -------------------------------------------------------------------------------- /tools/dll2nids/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/tools/dll2nids/main.cpp -------------------------------------------------------------------------------- /tools/gamereport/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/tools/gamereport/CMakeLists.txt -------------------------------------------------------------------------------- /tools/gamereport/entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/tools/gamereport/entry.cpp -------------------------------------------------------------------------------- /tools/gamereport/gamereport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/tools/gamereport/gamereport.h -------------------------------------------------------------------------------- /tools/gamereport/git_ver.cpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/tools/gamereport/git_ver.cpp.in -------------------------------------------------------------------------------- /tools/gamereport/git_ver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/tools/gamereport/git_ver.h -------------------------------------------------------------------------------- /tools/gamereport/git_watcher.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/tools/gamereport/git_watcher.cmake -------------------------------------------------------------------------------- /tools/logging/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/tools/logging/CMakeLists.txt -------------------------------------------------------------------------------- /tools/logging/logging.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/tools/logging/logging.cpp -------------------------------------------------------------------------------- /tools/logging/logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/tools/logging/logging.h -------------------------------------------------------------------------------- /tools/logging/logging_dummy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/tools/logging/logging_dummy.cpp -------------------------------------------------------------------------------- /tools/logging/logging_dummy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/tools/logging/logging_dummy.h -------------------------------------------------------------------------------- /tools/logging/logging_stub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/tools/logging/logging_stub.cpp -------------------------------------------------------------------------------- /tools/matchers/cmake.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/tools/matchers/cmake.json -------------------------------------------------------------------------------- /tools/matchers/compilers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/tools/matchers/compilers.json -------------------------------------------------------------------------------- /utility/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/utility/CMakeLists.txt -------------------------------------------------------------------------------- /utility/progloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/utility/progloc.h -------------------------------------------------------------------------------- /utility/utility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/utility/utility.cpp -------------------------------------------------------------------------------- /utility/utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysRay/psOff_public/HEAD/utility/utility.h --------------------------------------------------------------------------------