mirror of
https://git.proxmox.com/git/grub2
synced 2025-10-04 04:25:10 +00:00
15 lines
488 B
C
15 lines
488 B
C
#ifndef GRUB_DEVICEITER_MACHINE_UTIL_HEADER
|
|
#define GRUB_DEVICEITER_MACHINE_UTIL_HEADER 1
|
|
|
|
#include <config.h>
|
|
|
|
typedef int (*grub_util_iterate_devices_hook_t) (const char *name,
|
|
int is_floppy, void *data);
|
|
|
|
void grub_util_iterate_devices (grub_util_iterate_devices_hook_t hook,
|
|
void *hook_data, int floppy_disks);
|
|
void grub_util_emit_devicemap_entry (FILE *fp, char *name, int is_floppy,
|
|
int *num_fd, int *num_hd);
|
|
|
|
#endif /* ! GRUB_DEVICEITER_MACHINE_UTIL_HEADER */
|