mirror of
https://git.proxmox.com/git/efi-boot-shim
synced 2025-05-09 18:24:11 +00:00

Function prototype/implementation mismatch. Change-Id: I89aaae1b49d0372d3aed76fc21c194e0ae55f72e Signed-off-by: Andrew Boie <andrew.p.boie@intel.com>
10 lines
257 B
C
10 lines
257 B
C
#ifndef _NETBOOT_H_
|
|
#define _NETBOOT_H_
|
|
|
|
extern BOOLEAN findNetboot(EFI_HANDLE image_handle);
|
|
|
|
extern EFI_STATUS parseNetbootinfo(EFI_HANDLE image_handle);
|
|
|
|
extern EFI_STATUS FetchNetbootimage(EFI_HANDLE image_handle, VOID **buffer, UINT64 *bufsiz);
|
|
#endif
|