blob: ca4c7b2a44317446255850dd0a60b28360d800c4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#ifndef _IPXE_EFI_SERVICE_H
#define _IPXE_EFI_SERVICE_H
/** @file
*
* EFI service binding
*
*/
FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
#include <ipxe/efi/efi.h>
extern int efi_service_add ( EFI_HANDLE service, EFI_GUID *binding,
EFI_HANDLE *handle );
extern int efi_service_del ( EFI_HANDLE service, EFI_GUID *binding,
EFI_HANDLE handle );
#endif /* _IPXE_EFI_SERVICE_H */
|