2007-01-12 06:05:27 +00:00
|
|
|
#ifndef _USR_IMGMGMT_H
|
|
|
|
|
#define _USR_IMGMGMT_H
|
|
|
|
|
|
|
|
|
|
/** @file
|
|
|
|
|
*
|
|
|
|
|
* Image management
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
|
2007-01-12 07:22:20 +00:00
|
|
|
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 );
|
2007-01-12 07:32:46 +00:00
|
|
|
extern struct image * imgautoselect ( void );
|
2007-01-12 06:05:27 +00:00
|
|
|
extern void imgstat ( struct image *image );
|
2007-01-12 07:22:20 +00:00
|
|
|
extern void imgfree ( struct image *image );
|
2007-01-12 06:05:27 +00:00
|
|
|
|
|
|
|
|
#endif /* _USR_IMGMGMT_H */
|