mirror of
https://git.proxmox.com/git/efi-boot-shim
synced 2025-10-04 14:00:21 +00:00
13 lines
347 B
C
13 lines
347 B
C
// SPDX-License-Identifier: BSD-2-Clause-Patent
|
|
|
|
#ifndef SHIM_NETBOOT_H
|
|
#define SHIM_NETBOOT_H
|
|
|
|
extern BOOLEAN findNetboot(EFI_HANDLE image_handle);
|
|
|
|
extern EFI_STATUS parseNetbootinfo(EFI_HANDLE image_handle, CHAR8 *name);
|
|
|
|
extern EFI_STATUS FetchNetbootimage(EFI_HANDLE image_handle, VOID **buffer, UINT64 *bufsiz);
|
|
|
|
#endif /* SHIM_NETBOOT_H */
|