file-loading.h 328 B

123456789101112131415
  1. #ifndef FILE_LOADING_H_GUARD_
  2. #define FILE_LOADING_H_GUARD_
  3. #include "global-state.h"
  4. #include <stdbool.h>
  5. bool PUFL_Add_directory ( char * path );
  6. void PUFL_Process_directories ( void );
  7. void PUFL_Init ( void );
  8. void PUFL_File_delete ( Imagefile * im );
  9. void PUFL_Refresh_counters ( void );
  10. void PUFL_Close ( void );
  11. #endif