mirror of
https://git.proxmox.com/git/efi-boot-shim
synced 2025-06-14 14:48:19 +00:00
15 lines
270 B
C
15 lines
270 B
C
// SPDX-License-Identifier: BSD-2-Clause-Patent
|
|
/*
|
|
* dp.h - device path helper functions
|
|
* Copyright Peter Jones <pjones@redhat.com>
|
|
*/
|
|
|
|
#ifndef DP_H_
|
|
#define DP_H_
|
|
|
|
int
|
|
is_removable_media_path(EFI_LOADED_IMAGE *li);
|
|
|
|
#endif /* !DP_H_ */
|
|
// vim:fenc=utf-8:tw=75:noet
|