implemented QSE_DIR_SORT.

changed the way directory listing is formatted.
This commit is contained in:
2013-04-04 15:04:45 +00:00
parent 010b5fb9c0
commit 33d7fd632c
17 changed files with 472 additions and 368 deletions

View File

@ -54,20 +54,12 @@ typedef enum qse_dir_errnum_t qse_dir_errnum_t;
enum qse_dir_flag_t
{
QSE_DIR_MBSPATH = (1 << 0),
QSE_DIR_SORT = (1 << 1),
QSE_DIR_STAT = (1 << 2)
QSE_DIR_SORT = (1 << 1)
};
struct qse_dir_ent_t
{
const qse_char_t* name;
struct
{
int type;
qse_foff_t size;
qse_ntime_t tmmod;
} stat;
};
#ifdef __cplusplus