(svn r17528) -Codechange: use QSortT instead of qsort for sorting FiosItems

This commit is contained in:
rubidium
2009-09-13 17:39:33 +00:00
parent 67448246d3
commit ca7f6f5d7a
3 changed files with 10 additions and 12 deletions

View File

@@ -115,6 +115,6 @@ void FiosMakeSavegameName(char *buf, const char *name, size_t size);
/* Determines type of savegame (or tells it is not a savegame) */
FiosType FiosGetSavegameListCallback(SaveLoadDialogMode mode, const char *file, const char *ext, char *title, const char *last);
int CDECL compare_FiosItems(const void *a, const void *b);
int CDECL CompareFiosItems(const FiosItem *a, const FiosItem *b);
#endif /* FIOS_H */