2007-01-12 06:05:27 +00:00
|
|
|
#ifndef _USR_IMGMGMT_H
|
|
|
|
|
#define _USR_IMGMGMT_H
|
|
|
|
|
|
|
|
|
|
/** @file
|
|
|
|
|
*
|
|
|
|
|
* Image management
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
|
2009-05-01 15:41:06 +01:00
|
|
|
FILE_LICENCE ( GPL2_OR_LATER );
|
|
|
|
|
|
2007-01-12 10:07:56 +00:00
|
|
|
struct image;
|
|
|
|
|
|
2007-08-02 20:18:32 +01:00
|
|
|
extern int imgfetch ( struct image *image, const char *uri_string,
|
|
|
|
|
int ( * image_register ) ( struct image *image ) );
|
2007-01-12 07:22:20 +00:00
|
|
|
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 */
|