diff options
author | Stefan Bucur <stefanb@zytor.com> | 2008-06-11 15:20:25 +0300 |
---|---|---|
committer | Stefan Bucur <stefanb@zytor.com> | 2008-06-11 15:20:25 +0300 |
commit | 19f9ce0fe3b9f2a1e6ed2ef0c46d99f87066a4c4 (patch) | |
tree | 54e9009fb770c4d8b15b55afd42b8985a272e39e /elf/elf_module.h | |
parent | 3254fd09e82313547090e449fd1870f17b88c0c1 (diff) | |
download | syslinux-elf-19f9ce0fe3b9f2a1e6ed2ef0c46d99f87066a4c4.tar.gz syslinux-elf-19f9ce0fe3b9f2a1e6ed2ef0c46d99f87066a4c4.tar.xz syslinux-elf-19f9ce0fe3b9f2a1e6ed2ef0c46d99f87066a4c4.zip |
Added support for searching symbols
Diffstat (limited to 'elf/elf_module.h')
-rw-r--r-- | elf/elf_module.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/elf/elf_module.h b/elf/elf_module.h index 46bbfd3b..8a8d4830 100644 --- a/elf/elf_module.h +++ b/elf/elf_module.h @@ -73,4 +73,6 @@ extern int module_load(struct elf_module *module); // Unloads the module from the system and releases all the associated memory extern int module_unload(struct elf_module *module); +extern Elf32_Sym *module_find_symbol(const char *name, struct elf_module *module); + #endif /*ELF_MODULE_H_*/ |