blob: a743056382f335d755fd7c20e6b9d6e9e3a0186a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/** @file
Driver supported version protocol for the QEMU video driver.
Copyright (c) 2007 - 2019 Intel Corporation. All rights reserved. <BR>
SPDX-License-Identifier: BSD-2-Clause-Patent
**/
#include "Simics.h"
EFI_DRIVER_SUPPORTED_EFI_VERSION_PROTOCOL gQemuVideoDriverSupportedEfiVersion = {
sizeof (EFI_DRIVER_SUPPORTED_EFI_VERSION_PROTOCOL), // Size of Protocol structure.
0 // Version number to be filled at start up.
};
|