summaryrefslogtreecommitdiffstats
path: root/src/include/usr/imgmgmt.h
blob: f0484106b5d9ca20e586afed4aaf96661a527f05 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef _USR_IMGMGMT_H
#define _USR_IMGMGMT_H

/** @file
 *
 * Image management
 *
 */

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 struct image * imgautoselect ( void );
extern void imgstat ( struct image *image );
extern void imgfree ( struct image *image );

#endif /* _USR_IMGMGMT_H */