diff options
| author | Amlal El Mahrouss <amlal@nekernel.org> | 2025-12-13 06:54:06 +0100 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal@nekernel.org> | 2025-12-13 06:54:06 +0100 |
| commit | bdb78c4ab1a39264b301e728bfd5a2084aa22a65 (patch) | |
| tree | e8229a82d0ae87b8d6ca395f4fb8ddb8de4b8a70 /public/frameworks | |
| parent | 2b7ec4dd494ea016a242b1a698533be2c9a7940e (diff) | |
chore: IPEFDylibObject tweaks.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'public/frameworks')
| -rw-r--r-- | public/frameworks/LaunchHelpers.fwrk/headers/Foundation.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/public/frameworks/LaunchHelpers.fwrk/headers/Foundation.h b/public/frameworks/LaunchHelpers.fwrk/headers/Foundation.h index cba2e7c4..e0cdcc64 100644 --- a/public/frameworks/LaunchHelpers.fwrk/headers/Foundation.h +++ b/public/frameworks/LaunchHelpers.fwrk/headers/Foundation.h @@ -18,14 +18,14 @@ inline constexpr auto kMaxArgs = 256; /// @brief Launch information structure. /// @note This structure is read-only. Modyfing its members wo't have any effect. struct LHLaunchInfo final { - CF::CFString fExecutablePath{kMaxPath}; - CF::CFString fWorkingDirectory{kMaxPath}; - CF::CFRef<CF::CFString> fArguments[kMaxArgs]; - CF::CFString fEnvironment{kMaxPath}; - CF::CFInteger64 fUID{0}; - CF::CFInteger64 fGID{0}; - - LHLaunchInfo() = default; + CF::CFString fExecutablePath{kMaxPath}; + CF::CFString fWorkingDirectory{kMaxPath}; + CF::CFRef<CF::CFString> fArguments[kMaxArgs]; + CF::CFString fEnvironment{kMaxPath}; + CF::CFInteger64 fUID{0}; + CF::CFInteger64 fGID{0}; + + LHLaunchInfo() = default; ~LHLaunchInfo() = default; LIBSYS_COPY_DELETE(LHLaunchInfo) |
