file-loading.h 409 B

1234567891011121314151617
  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_File_keep ( Imagefile * im );
  10. void PUFL_Refresh_counters ( void );
  11. long PUFL_Get_file_size ( char * path );
  12. void PUFL_Close ( void );
  13. #endif