iPXE
blob.h
Go to the documentation of this file.
1#ifndef _IPXE_BLOB_H
2#define _IPXE_BLOB_H
3
4/** @file
5 *
6 * Openable data blobs
7 *
8 */
9
10FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
11FILE_SECBOOT ( PERMITTED );
12
13#include <stdint.h>
14#include <ipxe/interface.h>
15
16extern int blob_open ( struct interface *xfer, const void *data, size_t len );
17
18#endif /* _IPXE_BLOB_H */
int blob_open(struct interface *xfer, const void *data, size_t len)
Open data blob.
Definition blob.c:110
ring len
Length.
Definition dwmac.h:226
uint8_t data[48]
Additional event data.
Definition ena.h:11
#define FILE_LICENCE(_licence)
Declare a particular licence as applying to a file.
Definition compiler.h:921
#define FILE_SECBOOT(_status)
Declare a file's UEFI Secure Boot permission status.
Definition compiler.h:951
Object interfaces.
An object interface.
Definition interface.h:125