comparison osdep/glob.h @ 9983:14c92818ab75

alternative timer and glob emulation code for mingw32 port
author faust3
date Fri, 25 Apr 2003 10:00:18 +0000
parents
children 08cac43f1e38
comparison
equal deleted inserted replaced
9982:cd76f332bdee 9983:14c92818ab75
1 #include "../config.h"
2
3 #ifndef HAVE_GLOB
4 #ifdef __MINGW32__
5 typedef struct {
6 size_t gl_pathc;
7 char **gl_pathv;
8 size_t gl_offs;
9 } glob_t;
10
11 void globfree(glob_t *pglob);
12
13 int glob(const char *pattern, int flags, int (*errfunc)(const char *epath, int eerrno), glob_t *pglob);
14
15 #endif
16 #endif