File: load-options.h

package info (click to toggle)
shim 15.8-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 15,124 kB
  • sloc: ansic: 168,639; asm: 1,714; sh: 1,294; makefile: 1,151; python: 284
file content (20 lines) | stat: -rw-r--r-- 482 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// SPDX-License-Identifier: BSD-2-Clause-Patent
/*
 * load-options.h - all the stuff we need to parse the load options
 */

#ifndef SHIM_ARGV_H_
#define SHIM_ARGV_H_

EFI_STATUS generate_path_from_image_path(EFI_LOADED_IMAGE *li,
					 CHAR16 *ImagePath,
					 CHAR16 **PathName);

EFI_STATUS parse_load_options(EFI_LOADED_IMAGE *li);

extern CHAR16 *second_stage;
extern void *load_options;
extern UINT32 load_options_size;

#endif /* !SHIM_ARGV_H_ */
// vim:fenc=utf-8:tw=75:noet