mirror of
https://github.com/alexbatalov/fallout2-ce.git
synced 2025-02-24 18:40:02 +00:00
13 lines
286 B
C++
13 lines
286 B
C++
#ifndef SELECT_FILE_LIST_H
|
|
#define SELECT_FILE_LIST_H
|
|
|
|
namespace fallout {
|
|
|
|
int _compare(const void* a1, const void* a2);
|
|
char** _getFileList(const char* pattern, int* fileNameListLengthPtr);
|
|
void _freeFileList(char** fileList);
|
|
|
|
} // namespace fallout
|
|
|
|
#endif /* SELECT_FILE_LIST_H */
|