未验证 提交 d7e47bed 编写于 作者: M Michael Belyaev 提交者: GitHub

Docs: Fix Doxygen comments (#46)

上级 fa58fa00
......@@ -71,5 +71,5 @@ UefiMain (
CpuDeadLoop ();
return EFI_SUCCESS; //< Unreachable
return EFI_SUCCESS; ///< Unreachable
}
......@@ -20,7 +20,7 @@
/**
Install and initialise Apple Boot policy protocol.
@param[in] Overwrite Overwrite installed protocol.
@param[in] Reinstall Overwrite installed protocol.
@retval installed or located protocol or NULL.
**/
......
......@@ -199,7 +199,7 @@ typedef struct {
into pool allocated buffer.
@param[in] File File handle instance.
@param[in, out] Kernel Resulting non-fat kernel buffer from pool.
@param[in,out] Kernel Resulting non-fat kernel buffer from pool.
@param[out] KernelSize Actual kernel size.
@param[out] AllocatedSize Allocated kernel size (AllocatedSize >= KernelSize).
@param[in] ReservedSize Allocated extra size for added kernel extensions.
......@@ -589,7 +589,7 @@ PatchPowerStateTimeout (
/**
Disable AppleRTC checksum writing.
@param Patcher Patcher context.
@param Context Patcher context.
@return EFI_SUCCESS on success.
**/
......
......@@ -924,7 +924,7 @@ OcLoadPickerHotKeys (
@param[in,out] Context Picker context.
@param[in] KeyMap Apple Key Map Aggregator protocol.
@param[in] Time Timeout to wait for in milliseconds.
@param[in] Timeout Timeout to wait for in milliseconds.
@param[in] PollHotkeys Poll key combinations.
@param[out] SetDefault Set boot option as default, optional.
......@@ -995,7 +995,7 @@ OcGetBootDevicePathType (
/**
Get loaded image protocol for Apple bootloader.
@param[in] Handle Image handle.
@param[in] ImageHandle Image handle.
@retval loaded image protocol or NULL for non Apple images.
**/
......@@ -1035,7 +1035,7 @@ OcParseBootArgs (
/**
Check if boot argument is currently passed (via image options or NVRAM).
@param[in] LoadImage UEFI loaded image protocol instance, optional.
@param[in] LoadedImage UEFI loaded image protocol instance, optional.
@param[in] GetVariable Preferred UEFI NVRAM reader, optional.
@param[in] Argument Argument, e.g. -v, slide=, debug=, etc.
@param[in] ArgumentLength Argument length, e.g. L_STR_LEN ("-v").
......@@ -1069,7 +1069,7 @@ OcGetArgumentFromCmd (
/**
Remove argument from command line if present.
@param[in, out] CommandLine Argument command line, e.g. for boot.efi.
@param[in,out] CommandLine Argument command line, e.g. for boot.efi.
@param[in] Argument Argument, e.g. -v, slide=, debug=, etc.
**/
VOID
......@@ -1081,8 +1081,8 @@ OcRemoveArgumentFromCmd (
/**
Append argument to command line without deduplication.
@param[in, out] Context Picker context. NULL, if a privilege escalation is not required.
@param[in, out] CommandLine Argument command line of BOOT_LINE_LENGTH bytes.
@param[in,out] Context Picker context. NULL, if a privilege escalation is not required.
@param[in,out] CommandLine Argument command line of BOOT_LINE_LENGTH bytes.
@param[in] Argument Argument, e.g. -v, slide=0, debug=0x100, etc.
@param[in] ArgumentLength Argument length, e.g. L_STR_LEN ("-v").
......
......@@ -39,7 +39,7 @@ typedef struct {
CPUID_VERSION_INFO_EDX CpuidVerEdx;
UINT32 MicrocodeRevision;
BOOLEAN Hypervisor; //< indicate whether we are under virtualization
BOOLEAN Hypervisor; ///< indicate whether we are under virtualization
UINT8 Type;
UINT8 Family;
......
......@@ -55,7 +55,7 @@
Install or update the OcLog protocol with specified options.
@param[in] Options Logging options.
@param[in] Delay Delay in microseconds after each log entry.
@param[in] DisplayDelay Delay in microseconds after each log entry.
@param[in] DisplayLevel Console visible error level.
@param[in] HaltLevel Error level causing CPU halt.
@param[in] LogPrefixPath Log path (without timestamp).
......
......@@ -20,7 +20,7 @@
/**
Install and initialise EFI DevicePath property protocol.
@param[in] Overwrite Overwrite installed protocol.
@param[in] Reinstall Overwrite installed protocol.
@retval installed or located protocol or NULL.
**/
......
......@@ -41,16 +41,16 @@ typedef struct DTMemMapEntry_ {
// Foundation Types.
//
#define DT_PATH_NAME_SEPERATOR '/' //< 0x2F
#define DT_PATH_NAME_SEPERATOR '/' ///< 0x2F
#define DT_MAX_PROPERTY_NAME_LENGTH 31 //< Max length of Property Name (terminator not included)
#define DT_MAX_ENTRY_NAME_LENGTH 31 //< Max length of a C-String Entry Name (terminator not included)
#define DT_MAX_PROPERTY_NAME_LENGTH 31 ///< Max length of Property Name (terminator not included)
#define DT_MAX_ENTRY_NAME_LENGTH 31 ///< Max length of a C-String Entry Name (terminator not included)
#define DT_PROPERTY_NAME_LENGTH 32
typedef CHAR8 DTEntryNameBuf[DT_PROPERTY_NAME_LENGTH]; //< Length of DTEntryNameBuf = DT_MAX_ENTRY_NAME_LENGTH + 1
typedef CHAR8 DTEntryNameBuf[DT_PROPERTY_NAME_LENGTH]; ///< Length of DTEntryNameBuf = DT_MAX_ENTRY_NAME_LENGTH + 1
typedef struct OpaqueDTEntry_ DeviceTreeNode;
typedef DeviceTreeNode *DTEntry; //< Entry
typedef DeviceTreeNode *DTEntry; ///< Entry
typedef struct OpaqueDTProperty_ DTProperty;
......@@ -68,8 +68,8 @@ typedef OpaqueDTPropertyIterator *DTPropertyIterator;
//
struct OpaqueDTProperty_ {
CHAR8 Name[DT_PROPERTY_NAME_LENGTH]; //< NUL terminated property name
UINT32 Length; //< Length (bytes) of folloing prop value
CHAR8 Name[DT_PROPERTY_NAME_LENGTH]; ///< NUL terminated property name
UINT32 Length; ///< Length (bytes) of folloing prop value
};
struct OpaqueDTEntry_ {
......
......@@ -136,7 +136,8 @@ ReadFile (
/**
Determine file size if it is less than 4 GB.
@param[in] File A pointer to the file protocol.
@param[in] FileSystem A pointer to the file system protocol of the volume.
@param[in] FilePath The full path to the file on the device.
@param[out] Size 32-bit file size.
@retval EFI_SUCCESS on success.
......@@ -188,7 +189,7 @@ SetFileData (
/**
Get file information of specified type.
@param[in] FileHandle A pointer to file handle.
@param[in] File A pointer to file handle.
@param[in] InformationType A pointer to file info GUID.
@param[in] MinFileInfoSize Minimal size of the info provided.
@param[out] RealFileInfoSize Actual info size read (optional).
......
......@@ -287,7 +287,7 @@ OcPrintMemoryMap (
@param[in] DescriptorSize Memory map descriptor size in bytes.
@param[in] Address Address contained in the updated entry.
@param[in] Type Memory type to assign to the entry.
@param[in] SetAttribues Attributes to set.
@param[in] SetAttributes Attributes to set.
@param[in] DropAttributes Attributes to remove.
@retval EFI_SUCCESS on success.
......
......@@ -174,7 +174,7 @@ OcSmbiosTablePrepare (
/**
Free SMBIOS table
@param[in, out] Table Current table buffer.
@param[in,out] Table Current table buffer.
@retval EFI_SUCCESS on success
**/
......
......@@ -96,7 +96,7 @@ typedef struct {
@param[out] Context Resulting storage context.
@param[in] FileSystem Storage file system.
@param[in] Path Storage file system path (e.g. L"\\").
@param[in] Key Storage signature verification key, optional.
@param[in] StorageKey Storage signature verification key, optional.
@retval EFI_SUCCESS on success.
**/
......
......@@ -67,7 +67,7 @@ IsAsciiSpace (
/** Convert null terminated ascii string to unicode.
@param[in] String1 A pointer to the ascii string to convert to unicode.
@param[in] String A pointer to the ascii string to convert to unicode.
@param[in] Length Length or 0 to calculate the length of the ascii string to convert.
@retval A pointer to the converted unicode string allocated from pool.
......
......@@ -32,7 +32,7 @@
@param[in] FileBuffer Pointer to the file's data.
@param[in] FileSize File size of FileData.
@param[in] ModificationTime File modification date, optional.
@param[in, out] File Resulting file protocol.
@param[in,out] File Resulting file protocol.
@return EFI_SUCCESS if instance was successfully created.
**/
......@@ -53,7 +53,7 @@ CreateVirtualFile (
@param[in] OriginalFile Pointer to the original file.
@param[in] OpenCallback File open callback.
@param[in] CloseOnFailure Close the original file on failure.
@param[in, out] File Resulting file protocol.
@param[in,out] File Resulting file protocol.
@return EFI_SUCCESS if instance was successfully created.
@return EFI_SIMPLE_FILE_SYSTEM Open-compatible error return code.
......@@ -72,7 +72,7 @@ CreateRealFile (
@param[in] OriginalFileSystem Source file system.
@param[in] OpenCallback File open callback.
@param[in, out] NewFileSystem Wrapped file system.
@param[in,out] NewFileSystem Wrapped file system.
@return EFI_SUCCESS on successful wrapping.
**/
......@@ -87,7 +87,7 @@ CreateVirtualFs (
Enables virtual file system access for given BootServices
with callback on file open.
@param[in, out] BootServices Hooked EFI_BOOT_SERVICES.
@param[in,out] BootServices Hooked EFI_BOOT_SERVICES.
@param[in] OpenCallback File open callback.
@return EFI_SUCCESS on successful hooking.
......@@ -101,7 +101,7 @@ EnableVirtualFs (
/**
Enables virtual file system access for given BootServices.
@param[in, out] BootServices Hooked EFI_BOOT_SERVICES.
@param[in,out] BootServices Hooked EFI_BOOT_SERVICES.
@return EFI_SUCCESS on successful unhooking.
**/
......
......@@ -38,7 +38,7 @@ EventCancelKeyStrokePollEvent (
// EventIsCapsLockOnImpl
/** Retrieves the state of the CapsLock key.
@param[in, out] CLockOn This parameter indicates the state of the CapsLock
@param[in,out] CLockOn This parameter indicates the state of the CapsLock
key.
@retval EFI_SUCCESS The CapsLock state was successfully returned
......
......@@ -735,7 +735,7 @@ EventCancelKeyStrokePollEvent (
// EventIsCapsLockOnImpl
/** Retrieves the state of the CapsLock key.
@param[in, out] CLockOn This parameter indicates the state of the CapsLock
@param[in,out] CLockOn This parameter indicates the state of the CapsLock
key.
@retval EFI_SUCCESS The CapsLock state was successfully returned
......
......@@ -430,7 +430,7 @@ EventSetCursorPosition (
// EventSetEventName
/** This function is used to assign a name to an event.
@param[in, out] Handle
@param[in,out] Handle
@param[in] Name
@retval EFI_SUCCESS The event name was assigned successfully.
......@@ -473,7 +473,7 @@ EventSetEventName (
// EventIsCapsLockOnImpl
/** Retrieves the state of the CapsLock key.
@param[in, out] CLockOn This parameter indicates the state of the CapsLock
@param[in,out] CLockOn This parameter indicates the state of the CapsLock
key.
@retval EFI_SUCCESS The CapsLock state was successfully returned
......
......@@ -316,7 +316,7 @@ OcKeyMapFlush (
@param[in] This A pointer to the protocol instance.
@param[in] Modifiers The modifiers manipulating the given keys.
@param[in] NumberOfKeyCodes The number of keys present in KeyCodes.
@param[in, out] KeyCodes The list of keys to check for. The children
@param[in,out] KeyCodes The list of keys to check for. The children
may be sorted in the process.
@param[in] ExactMatch Specifies whether Modifiers and KeyCodes should be
exact matches or just contained.
......
......@@ -894,11 +894,11 @@ AppleSbVerifyWindowsByPath (
}
/**
Verify the signature of ImageBuffer against a Microsoft certificate chain.
Verify the signature of TargetBuffer against a Microsoft certificate chain.
@param[in] This The pointer to the current protocol instance.
@param[in] ImageBuffer The buffer to validate.
@param[in] ImageSize The size, in bytes, of ImageBuffer.
@param[in] TargetBuffer The buffer to validate.
@param[in] TargetSize The size, in bytes, of TargetBuffer.
@param[in] SetFailureReason Whether to set the failure reason.
@retval EFI_SUCCESS ImageBuffer is correctly signed.
......@@ -907,7 +907,7 @@ AppleSbVerifyWindowsByPath (
@retval EFI_UNSUPPORTED Secure Boot is currently unavailable or
disabled.
@retval EFI_ACCESS DENIED A suiting certificate could not be found.
@retval EFI_SECURITY_VIOLATION ImageBuffer's signature is invalid.
@retval EFI_SECURITY_VIOLATION TargetBuffer's signature is invalid.
**/
STATIC
......
......@@ -128,7 +128,7 @@ InternalMatchCodecDevicePath (
&gEfiAudioIoProtocolGuid,
(VOID **) &Private->AudioIo
);
return EFI_SUCCESS;
return Status;
}
}
......@@ -172,7 +172,6 @@ InternalOcAudioConnect (
);
if (!EFI_ERROR (Status)) {
Status = EFI_NOT_FOUND;
DevicePath = OcAudioGetCodecDevicePath (DevicePath, CodecAddress);
if (DevicePath == NULL) {
DEBUG ((DEBUG_INFO, "OCAU: Cannot get full device path\n"));
......
......@@ -65,7 +65,7 @@ BigNumWordMul (
VOID
BigNumSub (
IN OUT OC_BN_WORD *Result,
IN OC_BN_NUM_WORDS NumWordsResult,
IN OC_BN_NUM_WORDS NumWords,
IN CONST OC_BN_WORD *A,
IN CONST OC_BN_WORD *B
);
......
......@@ -232,7 +232,7 @@ InternalSyncWithThunderboltDevices (
@param[in] Name The Name of the requested property.
@param[out] Value The Buffer allocated by the caller to return the
value of the property into.
@param[in, out] Size On input the size of the allocated Value Buffer.
@param[in,out] Size On input the size of the allocated Value Buffer.
On output the size required to fill the Buffer.
@return The status of the operation is returned.
......@@ -461,7 +461,7 @@ DppDbRemoveProperty (
@param[in] This A pointer to the protocol instance.
@param[out] Buffer The Buffer allocated by the caller to return the
property Buffer into.
@param[in, out] Size On input the size of the allocated Buffer.
@param[in,out] Size On input the size of the allocated Buffer.
On output the size required to fill the Buffer.
@return The status of the operation is returned.
......
......@@ -111,7 +111,7 @@ typedef struct OC_SMBIOS_MAPPING_ {
/**
Allocate bytes in SMBIOS table if necessary
@param[in, out] Table Current table buffer.
@param[in,out] Table Current table buffer.
@param[in] Size Amount of free bytes needed.
@retval EFI_SUCCESS on success
......@@ -125,10 +125,9 @@ SmbiosExtendTable (
/**
Write override string to SMBIOS table
@param[in, out] Table Current table buffer.
@param[in,out] Table Current table buffer.
@param[in] Override String data override.
@param[in, out] Index Pointer to current string index, incremented on success.
@param[in] Safe Filter certain characters.
@param[in,out] Index Pointer to current string index, incremented on success.
@retval assigned string index or 0
**/
......@@ -181,16 +180,16 @@ SmbiosFinaliseStruct (
CHAR8 *
SmbiosGetString (
IN APPLE_SMBIOS_STRUCTURE_POINTER SmbiosTable,
IN SMBIOS_TABLE_STRING String
IN SMBIOS_TABLE_STRING StringIndex
);
/**
Write string to SMBIOS structure
@param[in, out] Buffer Pointer to location containing the current address within the buffer.
@param[in,out] Buffer Pointer to location containing the current address within the buffer.
@param[in] String Buffer containing the null terminated ascii string.
@param[in] Length String length to write.
@param[in, out] Index Pointer to current string index, incremented on success.
@param[in,out] Index Pointer to current string index, incremented on success.
@retval assigned string index or 0
**/
......
......@@ -234,9 +234,6 @@ GetTimeInNanoSecond (
/**
The constructor function caches PerformanceCounterFrequency.
@param ImageHandle The firmware allocated handle for the EFI image.
@param SystemTable A pointer to the EFI System Table.
@retval EFI_SUCCESS The constructor always returns RETURN_SUCCESS.
**/
......
......@@ -583,6 +583,84 @@
35366BF5240C213500D54CBB /* OcSmcLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = OcSmcLib.c; sourceTree = "<group>"; };
35366BF6240C213500D54CBB /* OcSmcLib.inf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = OcSmcLib.inf; sourceTree = "<group>"; };
35366BF7240C213500D54CBB /* OcSmcLibInternal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OcSmcLibInternal.h; sourceTree = "<group>"; };
35529A832461768100CF8169 /* OcSmBios.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OcSmBios.h; sourceTree = "<group>"; };
35529A842461768100CF8169 /* OcVariables.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OcVariables.h; sourceTree = "<group>"; };
35529A852461768100CF8169 /* MicrosoftVariable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MicrosoftVariable.h; sourceTree = "<group>"; };
35529A872461768100CF8169 /* OcAppleImg4Lib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OcAppleImg4Lib.h; sourceTree = "<group>"; };
35529A882461768100CF8169 /* OcHeciLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OcHeciLib.h; sourceTree = "<group>"; };
35529A892461768100CF8169 /* OcAppleKeyMapLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OcAppleKeyMapLib.h; sourceTree = "<group>"; };
35529A8A2461768100CF8169 /* OcCpuLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OcCpuLib.h; sourceTree = "<group>"; };
35529A8B2461768100CF8169 /* OcHashServicesLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OcHashServicesLib.h; sourceTree = "<group>"; };
35529A8C2461768100CF8169 /* OcApfsLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OcApfsLib.h; sourceTree = "<group>"; };
35529A8D2461768100CF8169 /* OcVirtualFsLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OcVirtualFsLib.h; sourceTree = "<group>"; };
35529A8E2461768100CF8169 /* OcAppleImageConversionLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OcAppleImageConversionLib.h; sourceTree = "<group>"; };
35529A8F2461768100CF8169 /* OcRtcLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OcRtcLib.h; sourceTree = "<group>"; };
35529A902461768100CF8169 /* OcMiscLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OcMiscLib.h; sourceTree = "<group>"; };
35529A912461768100CF8169 /* OcConfigurationLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OcConfigurationLib.h; sourceTree = "<group>"; };
35529A922461768100CF8169 /* OcDevicePathLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OcDevicePathLib.h; sourceTree = "<group>"; };
35529A932461768100CF8169 /* OcFileLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OcFileLib.h; sourceTree = "<group>"; };
35529A942461768100CF8169 /* OcTemplateLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OcTemplateLib.h; sourceTree = "<group>"; };
35529A952461768100CF8169 /* OcAppleKernelLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OcAppleKernelLib.h; sourceTree = "<group>"; };
35529A962461768100CF8169 /* OcDriverConnectionLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OcDriverConnectionLib.h; sourceTree = "<group>"; };
35529A972461768100CF8169 /* OcAudioLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OcAudioLib.h; sourceTree = "<group>"; };
35529A982461768100CF8169 /* OcStorageLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OcStorageLib.h; sourceTree = "<group>"; };
35529A992461768100CF8169 /* OcAppleRamDiskLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OcAppleRamDiskLib.h; sourceTree = "<group>"; };
35529A9A2461768100CF8169 /* OcAfterBootCompatLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OcAfterBootCompatLib.h; sourceTree = "<group>"; };
35529A9B2461768100CF8169 /* OcStringLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OcStringLib.h; sourceTree = "<group>"; };
35529A9C2461768100CF8169 /* OcAppleUserInterfaceThemeLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OcAppleUserInterfaceThemeLib.h; sourceTree = "<group>"; };
35529A9D2461768100CF8169 /* OcDebugLogLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OcDebugLogLib.h; sourceTree = "<group>"; };
35529A9E2461768100CF8169 /* OcXmlLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OcXmlLib.h; sourceTree = "<group>"; };
35529A9F2461768100CF8169 /* OcFirmwarePasswordLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OcFirmwarePasswordLib.h; sourceTree = "<group>"; };
35529AA02461768100CF8169 /* OcMachoLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OcMachoLib.h; sourceTree = "<group>"; };
35529AA12461768100CF8169 /* OcAppleChunklistLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OcAppleChunklistLib.h; sourceTree = "<group>"; };
35529AA22461768100CF8169 /* OcAcpiLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OcAcpiLib.h; sourceTree = "<group>"; };
35529AA32461768100CF8169 /* OcDataHubLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OcDataHubLib.h; sourceTree = "<group>"; };
35529AA42461768100CF8169 /* OcSerializeLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OcSerializeLib.h; sourceTree = "<group>"; };
35529AA52461768100CF8169 /* OcBootServicesTableLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OcBootServicesTableLib.h; sourceTree = "<group>"; };
35529AA62461768100CF8169 /* OcMemoryLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OcMemoryLib.h; sourceTree = "<group>"; };
35529AA72461768100CF8169 /* OcSmcLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OcSmcLib.h; sourceTree = "<group>"; };
35529AA82461768100CF8169 /* OcOSInfoLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OcOSInfoLib.h; sourceTree = "<group>"; };
35529AA92461768100CF8169 /* OcBootManagementLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OcBootManagementLib.h; sourceTree = "<group>"; };
35529AAA2461768100CF8169 /* OcHdaDevicesLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OcHdaDevicesLib.h; sourceTree = "<group>"; };
35529AAB2461768100CF8169 /* OcGuardLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OcGuardLib.h; sourceTree = "<group>"; };
35529AAC2461768100CF8169 /* OcAppleSecureBootLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OcAppleSecureBootLib.h; sourceTree = "<group>"; };
35529AAD2461768100CF8169 /* OcSmbiosLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OcSmbiosLib.h; sourceTree = "<group>"; };
35529AAE2461768100CF8169 /* OcUnicodeCollationEngGenericLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OcUnicodeCollationEngGenericLib.h; sourceTree = "<group>"; };
35529AAF2461768100CF8169 /* OcAppleBootPolicyLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OcAppleBootPolicyLib.h; sourceTree = "<group>"; };
35529AB02461768100CF8169 /* OcCryptoLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OcCryptoLib.h; sourceTree = "<group>"; };
35529AB12461768100CF8169 /* OcDevicePropertyLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OcDevicePropertyLib.h; sourceTree = "<group>"; };
35529AB22461768100CF8169 /* OcAppleKeysLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OcAppleKeysLib.h; sourceTree = "<group>"; };
35529AB32461768100CF8169 /* OcInputLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OcInputLib.h; sourceTree = "<group>"; };
35529AB42461768100CF8169 /* OcAppleDiskImageLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OcAppleDiskImageLib.h; sourceTree = "<group>"; };
35529AB52461768100CF8169 /* OcDeviceTreeLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OcDeviceTreeLib.h; sourceTree = "<group>"; };
35529AB62461768100CF8169 /* OcAppleEventLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OcAppleEventLib.h; sourceTree = "<group>"; };
35529AB72461768100CF8169 /* OcPngLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OcPngLib.h; sourceTree = "<group>"; };
35529AB82461768100CF8169 /* OcFirmwareVolumeLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OcFirmwareVolumeLib.h; sourceTree = "<group>"; };
35529AB92461768100CF8169 /* OcAppleImageVerificationLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OcAppleImageVerificationLib.h; sourceTree = "<group>"; };
35529ABA2461768100CF8169 /* OcTimerLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OcTimerLib.h; sourceTree = "<group>"; };
35529ABB2461768100CF8169 /* OcRngLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OcRngLib.h; sourceTree = "<group>"; };
35529ABC2461768100CF8169 /* OcConsoleLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OcConsoleLib.h; sourceTree = "<group>"; };
35529ABD2461768100CF8169 /* OcCompressionLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OcCompressionLib.h; sourceTree = "<group>"; };
35529ABF2461768100CF8169 /* OcInterface.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OcInterface.h; sourceTree = "<group>"; };
35529AC02461768100CF8169 /* OcFirmwareRuntime.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OcFirmwareRuntime.h; sourceTree = "<group>"; };
35529AC12461768100CF8169 /* AmiPointer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AmiPointer.h; sourceTree = "<group>"; };
35529AC22461768100CF8169 /* HdaControllerInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HdaControllerInfo.h; sourceTree = "<group>"; };
35529AC32461768100CF8169 /* AudioIo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AudioIo.h; sourceTree = "<group>"; };
35529AC42461768100CF8169 /* AmiKeycode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AmiKeycode.h; sourceTree = "<group>"; };
35529AC52461768100CF8169 /* HdaIo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HdaIo.h; sourceTree = "<group>"; };
35529AC62461768100CF8169 /* OcAfterBootCompat.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OcAfterBootCompat.h; sourceTree = "<group>"; };
35529AC72461768100CF8169 /* VMwareHda.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VMwareHda.h; sourceTree = "<group>"; };
35529AC82461768100CF8169 /* HdaCodecInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HdaCodecInfo.h; sourceTree = "<group>"; };
35529AC92461768100CF8169 /* OcBootstrap.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OcBootstrap.h; sourceTree = "<group>"; };
35529ACA2461768100CF8169 /* OcLog.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OcLog.h; sourceTree = "<group>"; };
35529ACB2461768100CF8169 /* OcAudio.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OcAudio.h; sourceTree = "<group>"; };
35529ACD2461768100CF8169 /* HdaRegisters.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HdaRegisters.h; sourceTree = "<group>"; };
35529ACE2461768100CF8169 /* GenericIch.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GenericIch.h; sourceTree = "<group>"; };
35529ACF2461768100CF8169 /* CpuId.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CpuId.h; sourceTree = "<group>"; };
35529AD02461768100CF8169 /* Riff.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Riff.h; sourceTree = "<group>"; };
35529AD12461768100CF8169 /* HdaVerbs.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HdaVerbs.h; sourceTree = "<group>"; };
35529AD22461768100CF8169 /* VirtualMemory.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VirtualMemory.h; sourceTree = "<group>"; };
35529AD32461768100CF8169 /* ProcessorInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ProcessorInfo.h; sourceTree = "<group>"; };
357E232523F2A06B00BC930F /* UDK */ = {isa = PBXFileReference; lastKnownFileType = folder; path = UDK; sourceTree = "<group>"; };
/* End PBXFileReference section */
......@@ -715,6 +793,11 @@
3511D57B23FDB2A700CC3B17 /* Include */ = {
isa = PBXGroup;
children = (
35529A822461768100CF8169 /* Guid */,
35529ACC2461768100CF8169 /* IndustryStandard */,
35529A862461768100CF8169 /* Library */,
35529AD32461768100CF8169 /* ProcessorInfo.h */,
35529ABE2461768100CF8169 /* Protocol */,
3511D57C23FDB2A700CC3B17 /* OpenCore.h */,
);
path = Include;
......@@ -1597,6 +1680,111 @@
);
sourceTree = "<group>";
};
35529A822461768100CF8169 /* Guid */ = {
isa = PBXGroup;
children = (
35529A832461768100CF8169 /* OcSmBios.h */,
35529A842461768100CF8169 /* OcVariables.h */,
35529A852461768100CF8169 /* MicrosoftVariable.h */,
);
path = Guid;
sourceTree = "<group>";
};
35529A862461768100CF8169 /* Library */ = {
isa = PBXGroup;
children = (
35529A872461768100CF8169 /* OcAppleImg4Lib.h */,
35529A882461768100CF8169 /* OcHeciLib.h */,
35529A892461768100CF8169 /* OcAppleKeyMapLib.h */,
35529A8A2461768100CF8169 /* OcCpuLib.h */,
35529A8B2461768100CF8169 /* OcHashServicesLib.h */,
35529A8C2461768100CF8169 /* OcApfsLib.h */,
35529A8D2461768100CF8169 /* OcVirtualFsLib.h */,
35529A8E2461768100CF8169 /* OcAppleImageConversionLib.h */,
35529A8F2461768100CF8169 /* OcRtcLib.h */,
35529A902461768100CF8169 /* OcMiscLib.h */,
35529A912461768100CF8169 /* OcConfigurationLib.h */,
35529A922461768100CF8169 /* OcDevicePathLib.h */,
35529A932461768100CF8169 /* OcFileLib.h */,
35529A942461768100CF8169 /* OcTemplateLib.h */,
35529A952461768100CF8169 /* OcAppleKernelLib.h */,
35529A962461768100CF8169 /* OcDriverConnectionLib.h */,
35529A972461768100CF8169 /* OcAudioLib.h */,
35529A982461768100CF8169 /* OcStorageLib.h */,
35529A992461768100CF8169 /* OcAppleRamDiskLib.h */,
35529A9A2461768100CF8169 /* OcAfterBootCompatLib.h */,
35529A9B2461768100CF8169 /* OcStringLib.h */,
35529A9C2461768100CF8169 /* OcAppleUserInterfaceThemeLib.h */,
35529A9D2461768100CF8169 /* OcDebugLogLib.h */,
35529A9E2461768100CF8169 /* OcXmlLib.h */,
35529A9F2461768100CF8169 /* OcFirmwarePasswordLib.h */,
35529AA02461768100CF8169 /* OcMachoLib.h */,
35529AA12461768100CF8169 /* OcAppleChunklistLib.h */,
35529AA22461768100CF8169 /* OcAcpiLib.h */,
35529AA32461768100CF8169 /* OcDataHubLib.h */,
35529AA42461768100CF8169 /* OcSerializeLib.h */,
35529AA52461768100CF8169 /* OcBootServicesTableLib.h */,
35529AA62461768100CF8169 /* OcMemoryLib.h */,
35529AA72461768100CF8169 /* OcSmcLib.h */,
35529AA82461768100CF8169 /* OcOSInfoLib.h */,
35529AA92461768100CF8169 /* OcBootManagementLib.h */,
35529AAA2461768100CF8169 /* OcHdaDevicesLib.h */,
35529AAB2461768100CF8169 /* OcGuardLib.h */,
35529AAC2461768100CF8169 /* OcAppleSecureBootLib.h */,
35529AAD2461768100CF8169 /* OcSmbiosLib.h */,
35529AAE2461768100CF8169 /* OcUnicodeCollationEngGenericLib.h */,
35529AAF2461768100CF8169 /* OcAppleBootPolicyLib.h */,
35529AB02461768100CF8169 /* OcCryptoLib.h */,
35529AB12461768100CF8169 /* OcDevicePropertyLib.h */,
35529AB22461768100CF8169 /* OcAppleKeysLib.h */,
35529AB32461768100CF8169 /* OcInputLib.h */,
35529AB42461768100CF8169 /* OcAppleDiskImageLib.h */,
35529AB52461768100CF8169 /* OcDeviceTreeLib.h */,
35529AB62461768100CF8169 /* OcAppleEventLib.h */,
35529AB72461768100CF8169 /* OcPngLib.h */,
35529AB82461768100CF8169 /* OcFirmwareVolumeLib.h */,
35529AB92461768100CF8169 /* OcAppleImageVerificationLib.h */,
35529ABA2461768100CF8169 /* OcTimerLib.h */,
35529ABB2461768100CF8169 /* OcRngLib.h */,
35529ABC2461768100CF8169 /* OcConsoleLib.h */,
35529ABD2461768100CF8169 /* OcCompressionLib.h */,
);
path = Library;
sourceTree = "<group>";
};
35529ABE2461768100CF8169 /* Protocol */ = {
isa = PBXGroup;
children = (
35529ABF2461768100CF8169 /* OcInterface.h */,
35529AC02461768100CF8169 /* OcFirmwareRuntime.h */,
35529AC12461768100CF8169 /* AmiPointer.h */,
35529AC22461768100CF8169 /* HdaControllerInfo.h */,
35529AC32461768100CF8169 /* AudioIo.h */,
35529AC42461768100CF8169 /* AmiKeycode.h */,
35529AC52461768100CF8169 /* HdaIo.h */,
35529AC62461768100CF8169 /* OcAfterBootCompat.h */,
35529AC72461768100CF8169 /* VMwareHda.h */,
35529AC82461768100CF8169 /* HdaCodecInfo.h */,
35529AC92461768100CF8169 /* OcBootstrap.h */,
35529ACA2461768100CF8169 /* OcLog.h */,
35529ACB2461768100CF8169 /* OcAudio.h */,
);
path = Protocol;
sourceTree = "<group>";
};
35529ACC2461768100CF8169 /* IndustryStandard */ = {
isa = PBXGroup;
children = (
35529ACD2461768100CF8169 /* HdaRegisters.h */,
35529ACE2461768100CF8169 /* GenericIch.h */,
35529ACF2461768100CF8169 /* CpuId.h */,
35529AD02461768100CF8169 /* Riff.h */,
35529AD12461768100CF8169 /* HdaVerbs.h */,
35529AD22461768100CF8169 /* VirtualMemory.h */,
);
path = IndustryStandard;
sourceTree = "<group>";
};
/* End PBXGroup section */
/* Begin PBXHeadersBuildPhase section */
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册