]> git.proxmox.com Git - mirror_edk2.git/blame - MdeModulePkg/Universal/PlatformDriverOverride/PlatformDriOverrideDxe/PlatformDriOverride.h
Patch to remove STATIC modifier. This is on longer recommended by EFI Framework codin...
[mirror_edk2.git] / MdeModulePkg / Universal / PlatformDriverOverride / PlatformDriOverrideDxe / PlatformDriOverride.h
CommitLineData
a6f164a7 1/** @file
2
3Copyright (c) 2007, Intel Corporation
4All rights reserved. This program and the accompanying materials
5are licensed and made available under the terms and conditions of the BSD License
6which accompanies this distribution. The full text of the license may be found at
7http://opensource.org/licenses/bsd-license.php
8
9THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
10WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
11
12Module Name:
13
14 PlatformDriOverride.h
15
16Abstract:
17
18
19**/
20
21#ifndef PLATFORM_DRI_OVERRIDE_H_
22#define PLATFORM_DRI_OVERRIDE_H_
23
60c93673 24#include <Uefi.h>
fe1e36e5 25
26#include <Library/DebugLib.h>
27#include <Library/UefiDriverEntryPoint.h>
28#include <Library/BaseLib.h>
a6f164a7 29#include <Library/PlatDriOverLib.h>
30
a6f164a7 31EFI_STATUS
32EFIAPI
33GetDriver (
34 IN EFI_PLATFORM_DRIVER_OVERRIDE_PROTOCOL * This,
35 IN EFI_HANDLE ControllerHandle,
36 IN OUT EFI_HANDLE * DriverImageHandle
37 );
38
a6f164a7 39EFI_STATUS
40EFIAPI
41GetDriverPath (
42 IN EFI_PLATFORM_DRIVER_OVERRIDE_PROTOCOL * This,
43 IN EFI_HANDLE ControllerHandle,
44 IN OUT EFI_DEVICE_PATH_PROTOCOL **DriverImagePath
45 );
46
a6f164a7 47EFI_STATUS
48EFIAPI
49DriverLoaded (
50 IN EFI_PLATFORM_DRIVER_OVERRIDE_PROTOCOL * This,
51 IN EFI_HANDLE ControllerHandle,
52 IN EFI_DEVICE_PATH_PROTOCOL * DriverImagePath,
53 IN EFI_HANDLE DriverImageHandle
54 );
55#endif