Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

imgmgmt.h 454B

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 ( const char *filename, const char *name,
  10. struct image **new_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 */