fallout2-ce/src/select_file_list.h

13 lines
286 B
C
Raw Normal View History

2022-05-19 01:51:26 -07:00
#ifndef SELECT_FILE_LIST_H
#define SELECT_FILE_LIST_H
2022-09-23 05:43:44 -07:00
namespace fallout {
2022-05-19 01:51:26 -07:00
int _compare(const void* a1, const void* a2);
char** _getFileList(const char* pattern, int* fileNameListLengthPtr);
void _freeFileList(char** fileList);
2022-09-23 05:43:44 -07:00
} // namespace fallout
2022-05-19 01:51:26 -07:00
#endif /* SELECT_FILE_LIST_H */