Search hinting support

This commit is contained in:
Vladimir 'phcoder' Serbinenko 2009-12-28 14:02:23 +01:00
parent 64fd18edbc
commit 7b74857658
3 changed files with 31 additions and 13 deletions

View file

@ -19,8 +19,11 @@
#ifndef GRUB_SEARCH_HEADER
#define GRUB_SEARCH_HEADER 1
void grub_search_fs_file (const char *key, const char *var, int no_floppy);
void grub_search_fs_uuid (const char *key, const char *var, int no_floppy);
void grub_search_label (const char *key, const char *var, int no_floppy);
void grub_search_fs_file (const char *key, const char *var, int no_floppy,
const char **hints, unsigned nhints);
void grub_search_fs_uuid (const char *key, const char *var, int no_floppy,
const char **hints, unsigned nhints);
void grub_search_label (const char *key, const char *var, int no_floppy,
const char **hints, unsigned nhints);
#endif