1 | /** @file
|
---|
2 |
|
---|
3 | Common header file shared by all source files.
|
---|
4 |
|
---|
5 | This file includes package header files, library classes and protocol, PPI & GUID definitions.
|
---|
6 |
|
---|
7 | Copyright (c) 2006 - 2018, Intel Corporation. All rights reserved.<BR>
|
---|
8 | SPDX-License-Identifier: BSD-2-Clause-Patent
|
---|
9 | **/
|
---|
10 |
|
---|
11 | #ifndef _UEFI_USB_LIB_INTERNAL_H_
|
---|
12 | #define _UEFI_USB_LIB_INTERNAL_H_
|
---|
13 |
|
---|
14 | #include <Uefi.h>
|
---|
15 |
|
---|
16 | #include <Library/UefiUsbLib.h>
|
---|
17 | #include <Library/BaseMemoryLib.h>
|
---|
18 | #include <Library/DebugLib.h>
|
---|
19 | #include <Library/PcdLib.h>
|
---|
20 |
|
---|
21 | #include <IndustryStandard/Usb.h>
|
---|
22 |
|
---|
23 | #endif
|
---|