/usr/include/efivar/efiboot-loadopt.h is in libefiboot-dev 30-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 | /*
* libefiboot - library for the manipulation of EFI boot variables
* Copyright 2012-2015 Red Hat, Inc.
* Copyright (C) 2001 Dell Computer Corporation <Matt_Domsch@dell.com>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 2.1 of the
* License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, see
* <http://www.gnu.org/licenses/>.
*
*/
#ifndef _EFIBOOT_LOADOPT_H
#define _EFIBOOT_LOADOPT_H 1
typedef struct efi_load_option_s efi_load_option;
extern ssize_t efi_loadopt_create(uint8_t *buf, ssize_t size,
uint32_t attributes, efidp dp,
ssize_t dp_size, unsigned char *description,
uint8_t *optional_data,
size_t optional_data_size)
__attribute__((__nonnull__ (6)));
extern efidp efi_loadopt_path(efi_load_option *opt, ssize_t limit)
__attribute__((__nonnull__ (1)));
extern const unsigned char const * efi_loadopt_desc(efi_load_option *opt,
ssize_t limit)
__attribute__((__visibility__ ("default")))
__attribute__((__nonnull__ (1)));
extern uint32_t efi_loadopt_attrs(efi_load_option *opt)
__attribute__((__nonnull__ (1)))
__attribute__((__visibility__ ("default")));
extern void efi_loadopt_attr_set(efi_load_option *opt, uint16_t attr)
__attribute__((__nonnull__ (1)))
__attribute__((__visibility__ ("default")));
extern void efi_loadopt_attr_clear(efi_load_option *opt, uint16_t attr)
__attribute__((__nonnull__ (1)))
__attribute__((__visibility__ ("default")));
extern uint16_t efi_loadopt_pathlen(efi_load_option *opt, ssize_t limit)
__attribute__((__nonnull__ (1)))
__attribute__((__visibility__ ("default")));
extern int efi_loadopt_optional_data(efi_load_option *opt, size_t opt_size,
unsigned char **datap, size_t *len)
__attribute__((__nonnull__ (1,3)))
__attribute__((__visibility__ ("default")));
extern ssize_t efi_loadopt_args_from_file(uint8_t *buf, ssize_t size,
char *filename)
__attribute__((__nonnull__ (3)))
__attribute__((__visibility__ ("default")));
extern ssize_t efi_loadopt_args_as_utf8(uint8_t *buf, ssize_t size,
uint8_t *utf8)
__attribute__((__nonnull__ (3)))
__attribute__((__visibility__ ("default")));
extern ssize_t efi_loadopt_args_as_ucs2(uint16_t *buf, ssize_t size,
uint8_t *utf8)
__attribute__((__nonnull__ (3)))
__attribute__((__visibility__ ("default")));
extern ssize_t efi_loadopt_optional_data_size(efi_load_option *opt, size_t size)
__attribute__((__nonnull__ (1)))
__attribute__((__visibility__ ("default")));
extern int efi_loadopt_is_valid(efi_load_option *opt, size_t size)
__attribute__((__nonnull__ (1)))
__attribute__((__visibility__ ("default")));
#endif /* _EFIBOOT_LOADOPT_H */
|