1
mirror of https://github.com/mpv-player/mpv synced 2024-10-14 11:54:36 +02:00
mpv/osdep/glob.h
diego fb20d201d7 Unify include paths, -I.. is in CFLAGS.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@16986 b3059339-0415-0410-9bf9-f77b7e298cf2
2005-11-14 00:30:37 +00:00

17 lines
293 B
C

#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