Removed CommonHeader.h generated file from the MdePkg.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@2922 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
@ -43,9 +43,6 @@
|
||||
#
|
||||
################################################################################
|
||||
|
||||
[Sources.common]
|
||||
CommonHeader.h
|
||||
|
||||
[Sources.Ia32]
|
||||
x86Cache.c
|
||||
|
||||
|
@ -1,33 +0,0 @@
|
||||
/**@file
|
||||
Common header file shared by all source files.
|
||||
|
||||
This file includes package header files, library classes and protocol, PPI & GUID definitions.
|
||||
|
||||
Copyright (c) 2007 - 2007, Intel Corporation
|
||||
All rights reserved. This program and the accompanying materials
|
||||
are licensed and made available under the terms and conditions of the BSD License
|
||||
which accompanies this distribution. The full text of the license may be found at
|
||||
http://opensource.org/licenses/bsd-license.php
|
||||
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
||||
**/
|
||||
|
||||
#ifndef __COMMON_HEADER_H_
|
||||
#define __COMMON_HEADER_H_
|
||||
|
||||
|
||||
//
|
||||
// The package level header files this module uses
|
||||
//
|
||||
#include <Base.h>
|
||||
//
|
||||
// The protocols, PPI and GUID defintions for this module
|
||||
//
|
||||
//
|
||||
// The Library classes this module consumes
|
||||
//
|
||||
#include <Library/CacheMaintenanceLib.h>
|
||||
#include <Library/BaseLib.h>
|
||||
#include <Library/DebugLib.h>
|
||||
|
||||
#endif
|
@ -15,7 +15,8 @@
|
||||
//
|
||||
// Include common header file for this module.
|
||||
//
|
||||
#include "CommonHeader.h"
|
||||
#include <Base.h>
|
||||
#include <Library/DebugLib.h>
|
||||
|
||||
/**
|
||||
Invalidates the entire instruction cache in cache coherency domain of the
|
||||
|
@ -16,7 +16,9 @@
|
||||
//
|
||||
// Include common header file for this module.
|
||||
//
|
||||
#include "CommonHeader.h"
|
||||
#include <Base.h>
|
||||
#include <Library/BaseLib.h>
|
||||
#include <Library/DebugLib.h>
|
||||
|
||||
/**
|
||||
Invalidates the entire instruction cache in cache coherency domain of the
|
||||
|
@ -17,7 +17,9 @@
|
||||
//
|
||||
// Include common header file for this module.
|
||||
//
|
||||
#include "CommonHeader.h"
|
||||
#include <Base.h>
|
||||
#include <Library/BaseLib.h>
|
||||
#include <Library/DebugLib.h>
|
||||
|
||||
//
|
||||
// This size must be at or below the smallest cache size possible among all
|
||||
|
@ -45,7 +45,7 @@
|
||||
|
||||
[Sources.common]
|
||||
IoLibMmioBuffer.c
|
||||
CommonHeader.h
|
||||
BaseIoLibIntrinsicInternal.h
|
||||
|
||||
[Sources.Ia32]
|
||||
IoHighLevel.c
|
||||
|
@ -26,7 +26,7 @@
|
||||
//
|
||||
// Include common header file for this module.
|
||||
//
|
||||
#include "CommonHeader.h"
|
||||
#include "BaseIoLibIntrinsicInternal.h"
|
||||
|
||||
/**
|
||||
Reads an 8-bit I/O port, performs a bitwise inclusive OR, and writes the
|
||||
|
@ -17,7 +17,7 @@
|
||||
//
|
||||
// Include common header file for this module.
|
||||
//
|
||||
#include "CommonHeader.h"
|
||||
#include "BaseIoLibIntrinsicInternal.h"
|
||||
|
||||
/**
|
||||
Reads a 64-bit I/O port.
|
||||
|
@ -26,7 +26,7 @@
|
||||
//
|
||||
// Include common header file for this module.
|
||||
//
|
||||
#include "CommonHeader.h"
|
||||
#include "BaseIoLibIntrinsicInternal.h"
|
||||
|
||||
/**
|
||||
Reads an 8-bit MMIO register.
|
||||
|
@ -17,7 +17,7 @@
|
||||
//
|
||||
// Include common header file for this module.
|
||||
//
|
||||
#include "CommonHeader.h"
|
||||
#include "BaseIoLibIntrinsicInternal.h"
|
||||
|
||||
#define MAP_PORT_BASE_TO_MEM(_Port) \
|
||||
((((_Port) & 0xfffc) << 10) | ((_Port) & 0x0fff))
|
||||
|
@ -15,7 +15,7 @@
|
||||
//
|
||||
// Include common header file for this module.
|
||||
//
|
||||
#include "CommonHeader.h"
|
||||
#include "BaseIoLibIntrinsicInternal.h"
|
||||
|
||||
/**
|
||||
Copy data from MMIO region to system memory by using 8-bit access.
|
||||
|
@ -25,7 +25,7 @@
|
||||
//
|
||||
// Include common header file for this module.
|
||||
//
|
||||
#include "CommonHeader.h"
|
||||
#include "BaseIoLibIntrinsicInternal.h"
|
||||
|
||||
//
|
||||
// Microsoft Visual Studio 7.1 Function Prototypes for I/O Intrinsics
|
||||
|
@ -15,7 +15,7 @@
|
||||
//
|
||||
// Include common header file for this module.
|
||||
//
|
||||
#include "CommonHeader.h"
|
||||
|
||||
|
||||
#include "BaseLibInternals.h"
|
||||
|
||||
|
@ -77,7 +77,6 @@
|
||||
LinkedList.c
|
||||
String.c
|
||||
BaseLibInternals.h
|
||||
CommonHeader.h
|
||||
|
||||
[Sources.Ia32]
|
||||
Ia32/Wbinvd.c
|
||||
|
@ -15,10 +15,13 @@
|
||||
#ifndef __BASE_LIB_INTERNALS__
|
||||
#define __BASE_LIB_INTERNALS__
|
||||
|
||||
//
|
||||
// Include common header file for this module.
|
||||
//
|
||||
#include "CommonHeader.h"
|
||||
#include <Base.h>
|
||||
#include <Library/BaseLib.h>
|
||||
#include <Library/BaseMemoryLib.h>
|
||||
#include <Library/DebugLib.h>
|
||||
#include <Library/TimerLib.h>
|
||||
#include <Library/PcdLib.h>
|
||||
|
||||
|
||||
#define QUIENT_MAX_UINTN_DIVIDED_BY_10 ((UINTN) -1 / 10)
|
||||
#define REMINDER_MAX_UINTN_DIVIDED_BY_10 ((UINTN) -1 % 10)
|
||||
|
@ -17,7 +17,7 @@
|
||||
//
|
||||
// Include common header file for this module.
|
||||
//
|
||||
#include "CommonHeader.h"
|
||||
|
||||
|
||||
#include "BaseLibInternals.h"
|
||||
|
||||
|
@ -18,7 +18,8 @@
|
||||
//
|
||||
// Include common header file for this module.
|
||||
//
|
||||
#include "CommonHeader.h"
|
||||
#include <BaseLibInternals.h>
|
||||
|
||||
|
||||
/**
|
||||
Calculate the sum of all elements in a buffer in unit of UINT8.
|
||||
|
@ -1,35 +0,0 @@
|
||||
/**@file
|
||||
Common header file shared by all source files.
|
||||
|
||||
This file includes package header files, library classes and protocol, PPI & GUID definitions.
|
||||
|
||||
Copyright (c) 2007 - 2007, Intel Corporation.
|
||||
All rights reserved. This program and the accompanying materials
|
||||
are licensed and made available under the terms and conditions of the BSD License
|
||||
which accompanies this distribution. The full text of the license may be found at
|
||||
http://opensource.org/licenses/bsd-license.php
|
||||
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
||||
**/
|
||||
|
||||
#ifndef __COMMON_HEADER_H_
|
||||
#define __COMMON_HEADER_H_
|
||||
|
||||
|
||||
//
|
||||
// The package level header files this module uses
|
||||
//
|
||||
#include <Base.h>
|
||||
//
|
||||
// The protocols, PPI and GUID defintions for this module
|
||||
//
|
||||
//
|
||||
// The Library classes this module consumes
|
||||
//
|
||||
#include <Library/BaseLib.h>
|
||||
#include <Library/BaseMemoryLib.h>
|
||||
#include <Library/DebugLib.h>
|
||||
#include <Library/TimerLib.h>
|
||||
#include <Library/PcdLib.h>
|
||||
|
||||
#endif
|
@ -17,7 +17,8 @@
|
||||
//
|
||||
// Include common header file for this module.
|
||||
//
|
||||
#include "CommonHeader.h"
|
||||
#include <BaseLibInternals.h>
|
||||
|
||||
|
||||
/**
|
||||
Disables CPU interrupts and returns the interrupt state prior to the disable
|
||||
|
@ -15,7 +15,7 @@
|
||||
//
|
||||
// Include common header file for this module.
|
||||
//
|
||||
#include "CommonHeader.h"
|
||||
|
||||
|
||||
/**
|
||||
Executes an infinite loop.
|
||||
|
@ -15,7 +15,7 @@
|
||||
//
|
||||
// Include common header file for this module.
|
||||
//
|
||||
#include "CommonHeader.h"
|
||||
|
||||
|
||||
#include "BaseLibInternals.h"
|
||||
|
||||
|
@ -15,7 +15,7 @@
|
||||
//
|
||||
// Include common header file for this module.
|
||||
//
|
||||
#include "CommonHeader.h"
|
||||
|
||||
|
||||
#include "BaseLibInternals.h"
|
||||
|
||||
|
@ -15,7 +15,7 @@
|
||||
//
|
||||
// Include common header file for this module.
|
||||
//
|
||||
#include "CommonHeader.h"
|
||||
|
||||
|
||||
#include "BaseLibInternals.h"
|
||||
|
||||
|
@ -15,7 +15,7 @@
|
||||
//
|
||||
// Include common header file for this module.
|
||||
//
|
||||
#include "CommonHeader.h"
|
||||
|
||||
|
||||
#include "BaseLibInternals.h"
|
||||
|
||||
|
@ -15,7 +15,7 @@
|
||||
//
|
||||
// Include common header file for this module.
|
||||
//
|
||||
#include "CommonHeader.h"
|
||||
|
||||
|
||||
#include "BaseLibInternals.h"
|
||||
|
||||
|
@ -15,7 +15,7 @@
|
||||
//
|
||||
// Include common header file for this module.
|
||||
//
|
||||
#include "CommonHeader.h"
|
||||
|
||||
|
||||
#include "BaseLibInternals.h"
|
||||
|
||||
|
@ -15,7 +15,7 @@
|
||||
//
|
||||
// Include common header file for this module.
|
||||
//
|
||||
#include "CommonHeader.h"
|
||||
|
||||
|
||||
#include "BaseLibInternals.h"
|
||||
|
||||
|
@ -15,7 +15,7 @@
|
||||
//
|
||||
// Include common header file for this module.
|
||||
//
|
||||
#include "CommonHeader.h"
|
||||
|
||||
|
||||
#include "BaseLibInternals.h"
|
||||
|
||||
|
@ -15,7 +15,7 @@
|
||||
//
|
||||
// Include common header file for this module.
|
||||
//
|
||||
#include "CommonHeader.h"
|
||||
|
||||
|
||||
UINT64
|
||||
EFIAPI
|
||||
|
@ -15,7 +15,7 @@
|
||||
//
|
||||
// Include common header file for this module.
|
||||
//
|
||||
#include "CommonHeader.h"
|
||||
|
||||
|
||||
//
|
||||
// Microsoft Visual Studio 7.1 Function Prototypes for I/O Intrinsics
|
||||
|
@ -15,7 +15,7 @@
|
||||
//
|
||||
// Include common header file for this module.
|
||||
//
|
||||
#include "CommonHeader.h"
|
||||
|
||||
|
||||
VOID
|
||||
EFIAPI
|
||||
|
@ -15,7 +15,7 @@
|
||||
//
|
||||
// Include common header file for this module.
|
||||
//
|
||||
#include "CommonHeader.h"
|
||||
|
||||
|
||||
UINT32
|
||||
EFIAPI
|
||||
|
@ -15,7 +15,7 @@
|
||||
//
|
||||
// Include common header file for this module.
|
||||
//
|
||||
#include "CommonHeader.h"
|
||||
|
||||
|
||||
UINT32
|
||||
EFIAPI
|
||||
|
@ -15,7 +15,7 @@
|
||||
//
|
||||
// Include common header file for this module.
|
||||
//
|
||||
#include "CommonHeader.h"
|
||||
|
||||
|
||||
VOID
|
||||
EFIAPI
|
||||
|
@ -15,7 +15,7 @@
|
||||
//
|
||||
// Include common header file for this module.
|
||||
//
|
||||
#include "CommonHeader.h"
|
||||
|
||||
|
||||
VOID
|
||||
EFIAPI
|
||||
|
@ -15,7 +15,7 @@
|
||||
//
|
||||
// Include common header file for this module.
|
||||
//
|
||||
#include "CommonHeader.h"
|
||||
|
||||
|
||||
VOID
|
||||
EFIAPI
|
||||
|
@ -15,7 +15,9 @@
|
||||
//
|
||||
// Include common header file for this module.
|
||||
//
|
||||
#include "CommonHeader.h"
|
||||
#include <BaseLibInternals.h>
|
||||
|
||||
#if _MSC_EXTENSIONS
|
||||
|
||||
__declspec (naked)
|
||||
VOID
|
||||
@ -49,3 +51,4 @@ InternalX86DisablePaging32 (
|
||||
}
|
||||
}
|
||||
|
||||
#endif
|
||||
|
@ -17,7 +17,7 @@
|
||||
//
|
||||
// Include common header file for this module.
|
||||
//
|
||||
#include "CommonHeader.h"
|
||||
|
||||
|
||||
#include "../BaseLibInternals.h"
|
||||
|
||||
|
@ -15,7 +15,7 @@
|
||||
//
|
||||
// Include common header file for this module.
|
||||
//
|
||||
#include "CommonHeader.h"
|
||||
|
||||
|
||||
UINT64
|
||||
EFIAPI
|
||||
|
@ -15,7 +15,7 @@
|
||||
//
|
||||
// Include common header file for this module.
|
||||
//
|
||||
#include "CommonHeader.h"
|
||||
|
||||
|
||||
UINT64
|
||||
EFIAPI
|
||||
|
@ -16,7 +16,7 @@
|
||||
//
|
||||
// Include common header file for this module.
|
||||
//
|
||||
#include "CommonHeader.h"
|
||||
|
||||
|
||||
UINT64
|
||||
EFIAPI
|
||||
|
@ -15,7 +15,7 @@
|
||||
//
|
||||
// Include common header file for this module.
|
||||
//
|
||||
#include "CommonHeader.h"
|
||||
|
||||
|
||||
VOID
|
||||
EFIAPI
|
||||
|
@ -15,7 +15,7 @@
|
||||
//
|
||||
// Include common header file for this module.
|
||||
//
|
||||
#include "CommonHeader.h"
|
||||
|
||||
|
||||
VOID
|
||||
EFIAPI
|
||||
|
@ -15,7 +15,9 @@
|
||||
//
|
||||
// Include common header file for this module.
|
||||
//
|
||||
#include "CommonHeader.h"
|
||||
#include <BaseLibInternals.h>
|
||||
|
||||
#if _MSC_EXTENSIONS
|
||||
|
||||
__declspec (naked)
|
||||
VOID
|
||||
@ -49,3 +51,4 @@ InternalX86EnablePaging32 (
|
||||
}
|
||||
}
|
||||
|
||||
#endif
|
||||
|
@ -1,7 +1,7 @@
|
||||
//
|
||||
// Include common header file for this module.
|
||||
//
|
||||
#include "CommonHeader.h"
|
||||
|
||||
|
||||
;------------------------------------------------------------------------------
|
||||
;
|
||||
|
@ -15,7 +15,7 @@
|
||||
//
|
||||
// Include common header file for this module.
|
||||
//
|
||||
#include "CommonHeader.h"
|
||||
|
||||
|
||||
VOID *
|
||||
EFIAPI
|
||||
|
@ -15,7 +15,8 @@
|
||||
//
|
||||
// Include common header file for this module.
|
||||
//
|
||||
#include "CommonHeader.h"
|
||||
#include <BaseLibInternals.h>
|
||||
|
||||
|
||||
VOID
|
||||
EFIAPI
|
||||
|
@ -15,7 +15,8 @@
|
||||
//
|
||||
// Include common header file for this module.
|
||||
//
|
||||
#include "CommonHeader.h"
|
||||
#include <BaseLibInternals.h>
|
||||
|
||||
|
||||
VOID
|
||||
EFIAPI
|
||||
|
@ -15,7 +15,7 @@
|
||||
//
|
||||
// Include common header file for this module.
|
||||
//
|
||||
#include "CommonHeader.h"
|
||||
|
||||
|
||||
UINT32
|
||||
EFIAPI
|
||||
|
@ -15,7 +15,7 @@
|
||||
//
|
||||
// Include common header file for this module.
|
||||
//
|
||||
#include "CommonHeader.h"
|
||||
|
||||
|
||||
UINT64
|
||||
EFIAPI
|
||||
|
@ -15,7 +15,7 @@
|
||||
//
|
||||
// Include common header file for this module.
|
||||
//
|
||||
#include "CommonHeader.h"
|
||||
|
||||
|
||||
UINT32
|
||||
EFIAPI
|
||||
|
@ -15,7 +15,7 @@
|
||||
//
|
||||
// Include common header file for this module.
|
||||
//
|
||||
#include "CommonHeader.h"
|
||||
|
||||
|
||||
UINT32
|
||||
EFIAPI
|
||||
|
@ -17,7 +17,8 @@
|
||||
//
|
||||
// Include common header file for this module.
|
||||
//
|
||||
#include "CommonHeader.h"
|
||||
#include <BaseLibInternals.h>
|
||||
|
||||
|
||||
/**
|
||||
Transfers control to a function starting with a new stack.
|
||||
|
@ -15,7 +15,7 @@
|
||||
//
|
||||
// Include common header file for this module.
|
||||
//
|
||||
#include "CommonHeader.h"
|
||||
|
||||
|
||||
VOID
|
||||
EFIAPI
|
||||
|
@ -15,7 +15,7 @@
|
||||
//
|
||||
// Include common header file for this module.
|
||||
//
|
||||
#include "CommonHeader.h"
|
||||
|
||||
|
||||
UINT64
|
||||
EFIAPI
|
||||
|
@ -15,7 +15,7 @@
|
||||
//
|
||||
// Include common header file for this module.
|
||||
//
|
||||
#include "CommonHeader.h"
|
||||
|
||||
|
||||
UINT64
|
||||
EFIAPI
|
||||
|
@ -15,7 +15,8 @@
|
||||
//
|
||||
// Include common header file for this module.
|
||||
//
|
||||
#include "CommonHeader.h"
|
||||
#include <BaseLibInternals.h>
|
||||
|
||||
|
||||
__declspec (naked)
|
||||
VOID
|
||||
|
@ -15,7 +15,7 @@
|
||||
//
|
||||
// Include common header file for this module.
|
||||
//
|
||||
#include "CommonHeader.h"
|
||||
|
||||
|
||||
UINT32
|
||||
EFIAPI
|
||||
|
@ -15,7 +15,7 @@
|
||||
//
|
||||
// Include common header file for this module.
|
||||
//
|
||||
#include "CommonHeader.h"
|
||||
|
||||
|
||||
UINTN
|
||||
EFIAPI
|
||||
|
@ -15,7 +15,7 @@
|
||||
//
|
||||
// Include common header file for this module.
|
||||
//
|
||||
#include "CommonHeader.h"
|
||||
|
||||
|
||||
UINT64
|
||||
EFIAPI
|
||||
|
@ -15,7 +15,7 @@
|
||||
//
|
||||
// Include common header file for this module.
|
||||
//
|
||||
#include "CommonHeader.h"
|
||||
|
||||
|
||||
UINT64
|
||||
EFIAPI
|
||||
|
@ -15,7 +15,7 @@
|
||||
//
|
||||
// Include common header file for this module.
|
||||
//
|
||||
#include "CommonHeader.h"
|
||||
|
||||
|
||||
UINTN
|
||||
EFIAPI
|
||||
|
@ -17,7 +17,7 @@
|
||||
//
|
||||
// Include common header file for this module.
|
||||
//
|
||||
#include "CommonHeader.h"
|
||||
|
||||
|
||||
#include "../BaseLibInternals.h"
|
||||
|
||||
|
@ -15,7 +15,7 @@
|
||||
//
|
||||
// Include common header file for this module.
|
||||
//
|
||||
#include "CommonHeader.h"
|
||||
|
||||
|
||||
UINT64
|
||||
EFIAPI
|
||||
|
@ -15,7 +15,7 @@
|
||||
//
|
||||
// Include common header file for this module.
|
||||
//
|
||||
#include "CommonHeader.h"
|
||||
|
||||
|
||||
UINT64
|
||||
EFIAPI
|
||||
|
@ -15,7 +15,7 @@
|
||||
//
|
||||
// Include common header file for this module.
|
||||
//
|
||||
#include "CommonHeader.h"
|
||||
|
||||
|
||||
UINTN
|
||||
EFIAPI
|
||||
|
@ -15,7 +15,7 @@
|
||||
//
|
||||
// Include common header file for this module.
|
||||
//
|
||||
#include "CommonHeader.h"
|
||||
|
||||
|
||||
UINTN
|
||||
EFIAPI
|
||||
|
@ -15,7 +15,7 @@
|
||||
//
|
||||
// Include common header file for this module.
|
||||
//
|
||||
#include "CommonHeader.h"
|
||||
|
||||
|
||||
UINTN
|
||||
EFIAPI
|
||||
|
@ -15,7 +15,7 @@
|
||||
//
|
||||
// Include common header file for this module.
|
||||
//
|
||||
#include "CommonHeader.h"
|
||||
|
||||
|
||||
UINTN
|
||||
EFIAPI
|
||||
|
@ -15,7 +15,7 @@
|
||||
//
|
||||
// Include common header file for this module.
|
||||
//
|
||||
#include "CommonHeader.h"
|
||||
|
||||
|
||||
UINT16
|
||||
EFIAPI
|
||||
|
@ -15,7 +15,7 @@
|
||||
//
|
||||
// Include common header file for this module.
|
||||
//
|
||||
#include "CommonHeader.h"
|
||||
|
||||
|
||||
UINTN
|
||||
EFIAPI
|
||||
|
@ -15,7 +15,7 @@
|
||||
//
|
||||
// Include common header file for this module.
|
||||
//
|
||||
#include "CommonHeader.h"
|
||||
|
||||
|
||||
UINTN
|
||||
EFIAPI
|
||||
|
@ -15,7 +15,7 @@
|
||||
//
|
||||
// Include common header file for this module.
|
||||
//
|
||||
#include "CommonHeader.h"
|
||||
|
||||
|
||||
UINTN
|
||||
EFIAPI
|
||||
|
@ -15,7 +15,7 @@
|
||||
//
|
||||
// Include common header file for this module.
|
||||
//
|
||||
#include "CommonHeader.h"
|
||||
|
||||
|
||||
UINTN
|
||||
EFIAPI
|
||||
|
@ -15,7 +15,7 @@
|
||||
//
|
||||
// Include common header file for this module.
|
||||
//
|
||||
#include "CommonHeader.h"
|
||||
|
||||
|
||||
UINTN
|
||||
EFIAPI
|
||||
|
@ -15,7 +15,7 @@
|
||||
//
|
||||
// Include common header file for this module.
|
||||
//
|
||||
#include "CommonHeader.h"
|
||||
|
||||
|
||||
UINTN
|
||||
EFIAPI
|
||||
|
@ -15,7 +15,7 @@
|
||||
//
|
||||
// Include common header file for this module.
|
||||
//
|
||||
#include "CommonHeader.h"
|
||||
|
||||
|
||||
UINTN
|
||||
EFIAPI
|
||||
|
@ -15,7 +15,7 @@
|
||||
//
|
||||
// Include common header file for this module.
|
||||
//
|
||||
#include "CommonHeader.h"
|
||||
|
||||
|
||||
UINTN
|
||||
EFIAPI
|
||||
|
@ -15,7 +15,7 @@
|
||||
//
|
||||
// Include common header file for this module.
|
||||
//
|
||||
#include "CommonHeader.h"
|
||||
|
||||
|
||||
UINT16
|
||||
EFIAPI
|
||||
|
@ -15,7 +15,7 @@
|
||||
//
|
||||
// Include common header file for this module.
|
||||
//
|
||||
#include "CommonHeader.h"
|
||||
|
||||
|
||||
UINTN
|
||||
EFIAPI
|
||||
|
@ -15,7 +15,7 @@
|
||||
//
|
||||
// Include common header file for this module.
|
||||
//
|
||||
#include "CommonHeader.h"
|
||||
|
||||
|
||||
UINT16
|
||||
EFIAPI
|
||||
|
@ -15,7 +15,7 @@
|
||||
//
|
||||
// Include common header file for this module.
|
||||
//
|
||||
#include "CommonHeader.h"
|
||||
|
||||
|
||||
UINT16
|
||||
EFIAPI
|
||||
|
@ -15,7 +15,8 @@
|
||||
//
|
||||
// Include common header file for this module.
|
||||
//
|
||||
#include "CommonHeader.h"
|
||||
#include <BaseLibInternals.h>
|
||||
|
||||
|
||||
VOID
|
||||
EFIAPI
|
||||
|
@ -15,7 +15,7 @@
|
||||
//
|
||||
// Include common header file for this module.
|
||||
//
|
||||
#include "CommonHeader.h"
|
||||
|
||||
|
||||
UINT16
|
||||
EFIAPI
|
||||
|
@ -15,7 +15,8 @@
|
||||
//
|
||||
// Include common header file for this module.
|
||||
//
|
||||
#include "CommonHeader.h"
|
||||
#include <BaseLibInternals.h>
|
||||
|
||||
|
||||
VOID
|
||||
EFIAPI
|
||||
|
@ -15,7 +15,7 @@
|
||||
//
|
||||
// Include common header file for this module.
|
||||
//
|
||||
#include "CommonHeader.h"
|
||||
|
||||
|
||||
UINT16
|
||||
EFIAPI
|
||||
|
@ -15,7 +15,7 @@
|
||||
//
|
||||
// Include common header file for this module.
|
||||
//
|
||||
#include "CommonHeader.h"
|
||||
|
||||
|
||||
UINT64
|
||||
EFIAPI
|
||||
|
@ -15,7 +15,7 @@
|
||||
//
|
||||
// Include common header file for this module.
|
||||
//
|
||||
#include "CommonHeader.h"
|
||||
|
||||
|
||||
UINT64
|
||||
EFIAPI
|
||||
|
@ -15,7 +15,7 @@
|
||||
//
|
||||
// Include common header file for this module.
|
||||
//
|
||||
#include "CommonHeader.h"
|
||||
|
||||
|
||||
UINT64
|
||||
EFIAPI
|
||||
|
@ -15,7 +15,7 @@
|
||||
//
|
||||
// Include common header file for this module.
|
||||
//
|
||||
#include "CommonHeader.h"
|
||||
|
||||
|
||||
UINT64
|
||||
EFIAPI
|
||||
|
@ -15,7 +15,7 @@
|
||||
//
|
||||
// Include common header file for this module.
|
||||
//
|
||||
#include "CommonHeader.h"
|
||||
|
||||
|
||||
UINT64
|
||||
EFIAPI
|
||||
|
@ -15,7 +15,7 @@
|
||||
//
|
||||
// Include common header file for this module.
|
||||
//
|
||||
#include "CommonHeader.h"
|
||||
|
||||
|
||||
UINT64
|
||||
EFIAPI
|
||||
|
@ -15,7 +15,7 @@
|
||||
//
|
||||
// Include common header file for this module.
|
||||
//
|
||||
#include "CommonHeader.h"
|
||||
|
||||
|
||||
UINT64
|
||||
EFIAPI
|
||||
|
@ -15,7 +15,7 @@
|
||||
//
|
||||
// Include common header file for this module.
|
||||
//
|
||||
#include "CommonHeader.h"
|
||||
|
||||
|
||||
UINT64
|
||||
EFIAPI
|
||||
|
@ -15,7 +15,7 @@
|
||||
//
|
||||
// Include common header file for this module.
|
||||
//
|
||||
#include "CommonHeader.h"
|
||||
|
||||
|
||||
UINT64
|
||||
EFIAPI
|
||||
|
@ -15,7 +15,7 @@
|
||||
//
|
||||
// Include common header file for this module.
|
||||
//
|
||||
#include "CommonHeader.h"
|
||||
|
||||
|
||||
UINT64
|
||||
EFIAPI
|
||||
|
@ -15,7 +15,7 @@
|
||||
//
|
||||
// Include common header file for this module.
|
||||
//
|
||||
#include "CommonHeader.h"
|
||||
|
||||
|
||||
UINT16
|
||||
EFIAPI
|
||||
|
@ -15,7 +15,7 @@
|
||||
//
|
||||
// Include common header file for this module.
|
||||
//
|
||||
#include "CommonHeader.h"
|
||||
|
||||
|
||||
UINT16
|
||||
EFIAPI
|
||||
|
@ -15,7 +15,7 @@
|
||||
//
|
||||
// Include common header file for this module.
|
||||
//
|
||||
#include "CommonHeader.h"
|
||||
|
||||
|
||||
UINT64
|
||||
EFIAPI
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user