imgmgmt.h
Go to the documentation of this file.00001 #ifndef _USR_IMGMGMT_H
00002 #define _USR_IMGMGMT_H
00003
00004
00005
00006
00007
00008
00009
00010 FILE_LICENCE ( GPL2_OR_LATER );
00011
00012 struct image;
00013
00014 extern int imgfetch ( struct image *image, const char *uri_string,
00015 int ( * image_register ) ( struct image *image ) );
00016 extern int imgload ( struct image *image );
00017 extern int imgexec ( struct image *image );
00018 extern struct image * imgautoselect ( void );
00019 extern void imgstat ( struct image *image );
00020 extern void imgfree ( struct image *image );
00021
00022 #endif