mirror of
https://github.com/CloverHackyColor/CloverBootloader.git
synced 2024-11-10 09:40:53 +01:00
24 lines
564 B
C
24 lines
564 B
C
/*
|
|
* PlatformDriverOverride.h
|
|
*
|
|
* Created on: 16 Apr 2020
|
|
* Author: jief
|
|
*/
|
|
|
|
#ifndef PLATFORM_PLATFORMDRIVEROVERRIDE_H_
|
|
#define PLATFORM_PLATFORMDRIVEROVERRIDE_H_
|
|
|
|
|
|
/** Registers given PriorityDrivers (NULL terminated) to highest priority during connecting controllers.
|
|
* Does this by installing our EFI_PLATFORM_DRIVER_OVERRIDE_PROTOCOL
|
|
* or by overriding existing EFI_PLATFORM_DRIVER_OVERRIDE_PROTOCOL.GetDriver.
|
|
*/
|
|
void
|
|
RegisterDriversToHighestPriority (
|
|
IN EFI_HANDLE *PriorityDrivers
|
|
);
|
|
|
|
|
|
|
|
#endif /* PLATFORM_PLATFORMDRIVEROVERRIDE_H_ */
|