You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

imgmgmt.h 483B

1234567891011121314151617181920
  1. #ifndef _USR_IMGMGMT_H
  2. #define _USR_IMGMGMT_H
  3. /** @file
  4. *
  5. * Image management
  6. *
  7. */
  8. struct image;
  9. extern int imgfetch ( struct image *image, const char *uri_string,
  10. int ( * image_register ) ( struct image *image ) );
  11. extern int imgload ( struct image *image );
  12. extern int imgexec ( struct image *image );
  13. extern struct image * imgautoselect ( void );
  14. extern void imgstat ( struct image *image );
  15. extern void imgfree ( struct image *image );
  16. #endif /* _USR_IMGMGMT_H */