mirror of
https://github.com/acidanthera/audk.git
synced 2025-04-08 17:05:09 +02:00
REF: https://bugzilla.tianocore.org/show_bug.cgi?id=3737 Apply uncrustify changes to .c/.h files in the OvmfPkg package Cc: Andrew Fish <afish@apple.com> Cc: Leif Lindholm <leif@nuviainc.com> Cc: Michael D Kinney <michael.d.kinney@intel.com> Signed-off-by: Michael Kubacki <michael.kubacki@microsoft.com> Reviewed-by: Andrew Fish <afish@apple.com>
19 lines
534 B
C
19 lines
534 B
C
/** @file
|
|
GUID definition for the QEMU LoaderFs media device path, containing the
|
|
kernel, initrd and command line as file objects
|
|
|
|
Copyright (c) 2020, Arm, Ltd. All rights reserved.<BR>
|
|
|
|
SPDX-License-Identifier: BSD-2-Clause-Patent
|
|
**/
|
|
|
|
#ifndef QEMU_KERNEL_LOADER_FS_MEDIA_GUID_H__
|
|
#define QEMU_KERNEL_LOADER_FS_MEDIA_GUID_H__
|
|
|
|
#define QEMU_KERNEL_LOADER_FS_MEDIA_GUID \
|
|
{0x1428f772, 0xb64a, 0x441e, {0xb8, 0xc3, 0x9e, 0xbd, 0xd7, 0xf8, 0x93, 0xc7}}
|
|
|
|
extern EFI_GUID gQemuKernelLoaderFsMediaGuid;
|
|
|
|
#endif
|