mirror of
https://github.com/CloverHackyColor/CloverBootloader.git
synced 2024-11-23 11:35:19 +01:00
7c0aa811ec
Signed-off-by: Sergey Isakov <isakov-sl@bk.ru>
25 lines
431 B
C
25 lines
431 B
C
/** @file
|
|
|
|
RuntimeServices overrides module.
|
|
|
|
By dmazar, 26/09/2012
|
|
|
|
**/
|
|
|
|
#ifndef __DMP_RUNTIME_SERVICES_H__
|
|
#define __DMP_RUNTIME_SERVICES_H__
|
|
|
|
|
|
/** Original runtime services. */
|
|
extern EFI_RUNTIME_SERVICES gOrgRS;
|
|
|
|
|
|
EFI_STATUS EFIAPI
|
|
OvrRuntimeServices(EFI_RUNTIME_SERVICES *RS);
|
|
|
|
EFI_STATUS EFIAPI
|
|
RestoreRuntimeServices(EFI_RUNTIME_SERVICES *RS);
|
|
|
|
|
|
#endif // __DMP_RUNTIME_SERVICES_H__
|