* include/grub/dl.h (grub_dl_load_file): Don't export.

This commit is contained in:
Vladimir 'phcoder' Serbinenko 2012-02-26 23:44:39 +01:00
parent 50159add1e
commit d87893d5dc
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2012-02-26 Vladimir Serbinenko <phcoder@gmail.com>
* include/grub/dl.h (grub_dl_load_file): Don't export.
2012-02-26 Vladimir Serbinenko <phcoder@gmail.com>
* grub-core/disk/diskfilter.c (grub_diskfilter_open): Remove useless

View file

@ -146,7 +146,7 @@ struct grub_dl
};
typedef struct grub_dl *grub_dl_t;
grub_dl_t EXPORT_FUNC(grub_dl_load_file) (const char *filename);
grub_dl_t grub_dl_load_file (const char *filename);
grub_dl_t EXPORT_FUNC(grub_dl_load) (const char *name);
grub_dl_t grub_dl_load_core (void *addr, grub_size_t size);
int EXPORT_FUNC(grub_dl_unload) (grub_dl_t mod);