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 - 2008, Intel Corporation. All rights reserved.<BR>
|
---|
8 | This program and the accompanying materials
|
---|
9 | are licensed and made available under the terms and conditions of the BSD License
|
---|
10 | which accompanies this distribution. The full text of the license may be found at
|
---|
11 | http://opensource.org/licenses/bsd-license.php.
|
---|
12 | THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
---|
13 | WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
---|
14 | **/
|
---|
15 |
|
---|
16 | #ifndef _UEFI_USB_LIB_INTERNAL_H_
|
---|
17 | #define _UEFI_USB_LIB_INTERNAL_H_
|
---|
18 |
|
---|
19 | #include <Uefi.h>
|
---|
20 |
|
---|
21 | #include <Library/UefiUsbLib.h>
|
---|
22 | #include <Library/BaseMemoryLib.h>
|
---|
23 | #include <Library/DebugLib.h>
|
---|
24 | #include <Library/PcdLib.h>
|
---|
25 |
|
---|
26 | #include <IndustryStandard/Usb.h>
|
---|
27 |
|
---|
28 |
|
---|
29 | #endif
|
---|