diff 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
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/osdep/glob.h	Fri Apr 25 10:00:18 2003 +0000
@@ -0,0 +1,16 @@
+#include "../config.h"
+
+#ifndef HAVE_GLOB
+#ifdef __MINGW32__
+typedef struct {
+  size_t gl_pathc;
+  char **gl_pathv;
+  size_t gl_offs;
+} glob_t;
+
+void globfree(glob_t *pglob);
+
+int  glob(const char *pattern, int flags, int (*errfunc)(const char *epath, int eerrno), glob_t *pglob);
+
+#endif
+#endif