mirror of
https://github.com/acidanthera/OpenCorePkg.git
synced 2025-12-08 19:25:01 +00:00
37 lines
736 B
C
37 lines
736 B
C
/** @file
|
|
Copyright (c) 2020, PMheart. All rights reserved.
|
|
SPDX-License-Identifier: BSD-3-Clause
|
|
**/
|
|
|
|
#ifndef OC_USER_BOOT_SERVICES_H
|
|
#define OC_USER_BOOT_SERVICES_H
|
|
|
|
#include <Uefi.h>
|
|
#include <Library/UefiLib.h>
|
|
#include <Library/UefiApplicationEntryPoint.h>
|
|
#include <Library/UefiBootServicesTableLib.h>
|
|
#include <Library/DebugLib.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
extern EFI_BOOT_SERVICES mBootServices;
|
|
extern EFI_SYSTEM_TABLE mSystemTable;
|
|
extern EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL mConOut;
|
|
|
|
STATIC
|
|
EFI_TPL
|
|
EFIAPI
|
|
DummyRaiseTPL (
|
|
IN EFI_TPL NewTpl
|
|
);
|
|
|
|
STATIC
|
|
EFI_STATUS
|
|
EFIAPI
|
|
NullTextOutputString (
|
|
IN EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL *This,
|
|
IN CHAR16 *String
|
|
);
|
|
|
|
#endif // OC_USER_BOOT_SERVICES_H
|