Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #ifndef _FINDFILES
- #define _FINDFILES
- #include <fxlib.h>
- typedef struct {
- char* name;
- char* path;
- int size;
- } File;
- int lenght(FONTCHARACTER* str);
- FONTCHARACTER* str2FONTCHARACTER(char* source, FONTCHARACTER* dest);
- char* FONTCHARACTER2str(FONTCHARACTER* source, char* dest);
- char* filename(char* completePath);
- int fileListLenght(File* list);
- File* joinFilelists(File* list1, File* list2, int deleteSources);
- int countFiles(char* mask);
- File* findFiles(char* mask);
- void freeFilelist(File* list);
- int openFile(char* path, char* mode);
- #endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement