summaryrefslogtreecommitdiffstats
path: root/src/include/usr
diff options
context:
space:
mode:
authorMichael Brown2007-01-12 08:22:20 +0100
committerMichael Brown2007-01-12 08:22:20 +0100
commitf135a37f3050a40ad5399e150169ba6b880fe47d (patch)
treeae82ed4470bf1f0b09b23fbc8018541ed07735cb /src/include/usr
parentAdd free_image (diff)
downloadipxe-f135a37f3050a40ad5399e150169ba6b880fe47d.tar.gz
ipxe-f135a37f3050a40ad5399e150169ba6b880fe47d.tar.xz
ipxe-f135a37f3050a40ad5399e150169ba6b880fe47d.zip
Cleaner separation between imgXXX() functions and image_cmd.c
Diffstat (limited to 'src/include/usr')
-rw-r--r--src/include/usr/imgmgmt.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/include/usr/imgmgmt.h b/src/include/usr/imgmgmt.h
index da58ffb18..86a65da50 100644
--- a/src/include/usr/imgmgmt.h
+++ b/src/include/usr/imgmgmt.h
@@ -7,6 +7,11 @@
*
*/
+extern int imgfetch ( const char *filename, const char *name,
+ struct image **new_image );
+extern int imgload ( struct image *image );
+extern int imgexec ( struct image *image );
extern void imgstat ( struct image *image );
+extern void imgfree ( struct image *image );
#endif /* _USR_IMGMGMT_H */