Implement GetKernelParameterValue to parse and extract boot option values
All checks were successful
Builds / ExectOS (amd64, debug) (push) Successful in 1h0m42s
Builds / ExectOS (amd64, release) (push) Successful in 1h0m40s
Builds / ExectOS (i686, release) (push) Successful in 1h0m32s
Builds / ExectOS (i686, debug) (push) Successful in 1h0m34s

This commit is contained in:
2026-04-13 19:18:04 +02:00
parent cec5e8b16b
commit d37f2e3827
2 changed files with 75 additions and 0 deletions

View File

@@ -25,6 +25,9 @@ namespace KE
STATIC XTAPI SYSTEM_FIRMWARE_TYPE GetFirmwareType(VOID);
STATIC XTAPI XTSTATUS GetKernelParameter(IN PCWSTR ParameterName,
OUT PCWSTR *Parameter);
STATIC XTAPI XTSTATUS GetKernelParameterValue(IN PCWSTR ParameterName,
OUT PWSTR ValueBuffer,
IN SIZE_T BufferSize);
STATIC XTAPI PLIST_ENTRY GetMemoryDescriptors(VOID);
STATIC XTAPI PLIST_ENTRY GetSystemResources(VOID);
STATIC XTAPI VOID InitializeInitializationBlock(IN PKERNEL_INITIALIZATION_BLOCK Block);