[Kernel] Update ExLoadedCommandLine based on executable name

This commit is contained in:
Gliniak
2024-09-05 22:41:35 +02:00
parent 2c087406d6
commit 0ee6c77d91
3 changed files with 25 additions and 1 deletions

View File

@@ -28,6 +28,8 @@ namespace xboxkrnl {
class XboxkrnlModule : public KernelModule {
public:
static constexpr size_t kExLoadedImageNameSize = 255 + 1;
static constexpr size_t kExLoadedCommandLineSize =
1024; // Based on max size provided for XamLoaderGetLaunchData
XboxkrnlModule(Emulator* emulator, KernelState* kernel_state);
virtual ~XboxkrnlModule();