[PR #98] [MERGED] Autogen system,user,dialog modules #1290

Closed
opened 2026-02-27 21:11:57 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/shadps4-emu/shadPS4/pull/98
Author: @georgemoralis
Created: 3/12/2024
Status: Merged
Merged: 3/14/2024
Merged by: @georgemoralis

Base: mainHead: modules1


📝 Commits (10+)

📊 Changes

30 files changed (+8184 additions, -184 deletions)

View changed files

📝 CMakeLists.txt (+10 -10)
📝 src/common/logging/filter.cpp (+2 -0)
📝 src/common/logging/types.h (+3 -1)
📝 src/core/PS4/HLE/Graphics/video_out.cpp (+2 -2)
📝 src/core/hle/libraries/libc/libc.cpp (+8 -0)
📝 src/core/hle/libraries/libc/libc_stdio.cpp (+37 -4)
📝 src/core/hle/libraries/libc/libc_stdio.h (+5 -0)
📝 src/core/hle/libraries/libc/libc_string.cpp (+16 -0)
📝 src/core/hle/libraries/libc/libc_string.h (+3 -0)
📝 src/core/hle/libraries/libc/printf.h (+8 -0)
📝 src/core/hle/libraries/libpad/pad.cpp (+4 -4)
📝 src/core/hle/libraries/libpad/pad.h (+10 -6)
📝 src/core/hle/libraries/libs.cpp (+17 -11)
📝 src/core/hle/libraries/libs.h (+3 -3)
src/core/hle/libraries/libsystemservice/system_service.cpp (+0 -35)
src/core/hle/libraries/libsystemservice/system_service.h (+0 -29)
src/core/hle/libraries/libuserservice/libuserservice.cpp (+0 -33)
src/core/hle/libraries/libuserservice/libuserservice.h (+0 -29)
src/core/hle/libraries/libuserservice/usr_mng_codes.h (+0 -12)
📝 src/core/libraries/error_codes.h (+191 -3)

...and 10 more files

📄 Description

Also a few functions partially implemented


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/shadps4-emu/shadPS4/pull/98 **Author:** [@georgemoralis](https://github.com/georgemoralis) **Created:** 3/12/2024 **Status:** ✅ Merged **Merged:** 3/14/2024 **Merged by:** [@georgemoralis](https://github.com/georgemoralis) **Base:** `main` ← **Head:** `modules1` --- ### 📝 Commits (10+) - [`6aea5bb`](https://github.com/shadps4-emu/shadPS4/commit/6aea5bb9899593ac6823fc511549e65ac540e3e8) some rework on system_service, user_service - [`50b0033`](https://github.com/shadps4-emu/shadPS4/commit/50b003367ca5307643af137ca7afe57b9b380cd8) fixed clang format - [`af13ab1`](https://github.com/shadps4-emu/shadPS4/commit/af13ab18208a7be118334163465107e6eb724346) more clang fix - [`ff35e36`](https://github.com/shadps4-emu/shadPS4/commit/ff35e36a3beb3aa98b0f00d87be4fff2698aca2d) more clang fix - [`eeab342`](https://github.com/shadps4-emu/shadPS4/commit/eeab34277a3b1fb63cc4f322ac63d99ad0efe082) added error codes in system service - [`751fca0`](https://github.com/shadps4-emu/shadPS4/commit/751fca0616ad3e627121b74f4b606a4e42418b59) some libc functions - [`7764f13`](https://github.com/shadps4-emu/shadPS4/commit/7764f13cced8c14c2539ad115daca55d4be7d289) fixed fprintf - [`58bd507`](https://github.com/shadps4-emu/shadPS4/commit/58bd5073c133a8804be83f19a1d164177f154d47) small fix - [`f7725f4`](https://github.com/shadps4-emu/shadPS4/commit/f7725f448d52b51fd66007dc4e64e2a7934ca092) linux fix - [`97c7ddb`](https://github.com/shadps4-emu/shadPS4/commit/97c7ddbfc09b3665b863aa2cbd1bdab50ba1ada7) error handling in user service ### 📊 Changes **30 files changed** (+8184 additions, -184 deletions) <details> <summary>View changed files</summary> 📝 `CMakeLists.txt` (+10 -10) 📝 `src/common/logging/filter.cpp` (+2 -0) 📝 `src/common/logging/types.h` (+3 -1) 📝 `src/core/PS4/HLE/Graphics/video_out.cpp` (+2 -2) 📝 `src/core/hle/libraries/libc/libc.cpp` (+8 -0) 📝 `src/core/hle/libraries/libc/libc_stdio.cpp` (+37 -4) 📝 `src/core/hle/libraries/libc/libc_stdio.h` (+5 -0) 📝 `src/core/hle/libraries/libc/libc_string.cpp` (+16 -0) 📝 `src/core/hle/libraries/libc/libc_string.h` (+3 -0) 📝 `src/core/hle/libraries/libc/printf.h` (+8 -0) 📝 `src/core/hle/libraries/libpad/pad.cpp` (+4 -4) 📝 `src/core/hle/libraries/libpad/pad.h` (+10 -6) 📝 `src/core/hle/libraries/libs.cpp` (+17 -11) 📝 `src/core/hle/libraries/libs.h` (+3 -3) ➖ `src/core/hle/libraries/libsystemservice/system_service.cpp` (+0 -35) ➖ `src/core/hle/libraries/libsystemservice/system_service.h` (+0 -29) ➖ `src/core/hle/libraries/libuserservice/libuserservice.cpp` (+0 -33) ➖ `src/core/hle/libraries/libuserservice/libuserservice.h` (+0 -29) ➖ `src/core/hle/libraries/libuserservice/usr_mng_codes.h` (+0 -12) 📝 `src/core/libraries/error_codes.h` (+191 -3) _...and 10 more files_ </details> ### 📄 Description Also a few functions partially implemented --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-02-27 21:11:57 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/shadPS4#1290
No description provided.