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.
14 lines
380 B
14 lines
380 B
10 years ago
|
#ifndef __TEMPFILES_H
|
||
|
#define __TEMPFILES_H
|
||
|
|
||
|
#include "libr.h"
|
||
|
|
||
|
void cleanup_folder(char *temp_folder);
|
||
|
void register_handle_cleanup(libr_file *handle);
|
||
|
void unregister_handle_cleanup(libr_file *handle);
|
||
|
void register_internal_handle(libr_file *handle);
|
||
|
void register_folder_cleanup(char *temp_folder);
|
||
|
char *libr_extract_resources(libr_file *handle);
|
||
|
|
||
|
#endif /* __TEMPFILES_H */
|