Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

imgmgmt.h 516B

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