mirror of
https://git.proxmox.com/git/efi-boot-shim
synced 2025-06-14 10:53:21 +00:00

The license statements in our source files were getting to be a giant mess, and mostly they all just say the same thing. I've switched most of it to SPDX labels, but left copyright statements in place (where they were not obviously incorrect copy-paste jobs that I did...). If there's some change here you don't think is valid, let me know and we can fix it up together. Signed-off-by: Peter Jones <pjones@redhat.com>
18 lines
477 B
C
18 lines
477 B
C
// SPDX-License-Identifier: BSD-2-Clause-Patent
|
|
/*
|
|
* Copyright 2015 SUSE LINUX GmbH <glin@suse.com>
|
|
*
|
|
* Significant portions of this code are derived from Tianocore
|
|
* (http://tianocore.sf.net) and are Copyright 2009-2012 Intel
|
|
* Corporation.
|
|
*/
|
|
|
|
#ifndef SHIM_HTTPBOOT_H
|
|
#define SHIM_HTTPBOOT_H
|
|
|
|
extern BOOLEAN find_httpboot(EFI_HANDLE device);
|
|
extern EFI_STATUS httpboot_fetch_buffer(EFI_HANDLE image, VOID **buffer,
|
|
UINT64 *buf_size);
|
|
|
|
#endif /* SHIM_HTTPBOOT_H */
|