diff options
| author | Michael Brown | 2007-01-12 08:22:20 +0100 |
|---|---|---|
| committer | Michael Brown | 2007-01-12 08:22:20 +0100 |
| commit | f135a37f3050a40ad5399e150169ba6b880fe47d (patch) | |
| tree | ae82ed4470bf1f0b09b23fbc8018541ed07735cb /src/include/usr | |
| parent | Add free_image (diff) | |
| download | ipxe-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.h | 5 |
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 */ |
