From 0015a97826319e469e1614932749ab315f28f0fb Mon Sep 17 00:00:00 2001 From: faust3 Date: Fri, 25 Apr 2003 10:00:18 +0000 Subject: alternative timer and glob emulation code for mingw32 port git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@9984 b3059339-0415-0410-9bf9-f77b7e298cf2 --- osdep/glob-win.c | 91 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 91 insertions(+) create mode 100644 osdep/glob-win.c (limited to 'osdep/glob-win.c') diff --git a/osdep/glob-win.c b/osdep/glob-win.c new file mode 100644 index 0000000000..08ec3c2a6c --- /dev/null +++ b/osdep/glob-win.c @@ -0,0 +1,91 @@ +#include +#include + +#include "../config.h" + +#ifndef HAVE_GLOB +#ifdef __MINGW32__ +#undef DATADIR +#include +#include "glob.h" + +int glob(const char *pattern, int flags, + int (*errfunc)(const char *epath, int eerrno), glob_t *pglob) +{ + HANDLE searchhndl; + WIN32_FIND_DATA found_file; + if(errfunc)printf("glob():ERROR:Sorry errfunc not supported by this implementation\n"); + if(flags)printf("glob():ERROR:Sorry no flags supported by this globimplementation\n"); + //printf("PATTERN \"%s\"\n",pattern); + pglob->gl_pathc = 0; + searchhndl = FindFirstFile( pattern,&found_file); + if(searchhndl == INVALID_HANDLE_VALUE) + { + if(GetLastError() == ERROR_FILE_NOT_FOUND) + { + pglob->gl_pathc = 0; + //printf("could not find a file matching your search criteria\n"); + return 1; + } + else + { + //printf("glob():ERROR:FindFirstFile: %i\n",GetLastError()); + return 1; + } + } + pglob->gl_pathv = malloc(sizeof(char*)); + pglob->gl_pathv[0] = strdup(found_file.cFileName); + pglob->gl_pathc++; + while(1) + { + if(!FindNextFile(searchhndl,&found_file)) + { + if(GetLastError()==ERROR_NO_MORE_FILES) + { + //printf("glob(): no more files found\n"); + break; + } + else + { + //printf("glob():ERROR:FindNextFile:%i\n",GetLastError()); + return 1; + } + } + else + { + //printf("glob: found file %s\n",found_file.cFileName); + pglob->gl_pathc++; + pglob->gl_pathv = realloc(pglob->gl_pathv,pglob->gl_pathc * sizeof(char*)); + pglob->gl_pathv[pglob->gl_pathc-1] = strdup(found_file.cFileName); + } + } + FindClose(searchhndl); + return 0; +} + +void globfree(glob_t *pglob) +{ + int i; + for(i=0; i gl_pathc ;i++) + { + free(pglob->gl_pathv[i]); + } + free(pglob->gl_pathv); +} +#endif /*__MINGW32__*/ +#endif /*HAVE_GLOB*/ + +#if 0 +int main(){ + glob_t gg; + printf("globtest\n"); + glob( "*.jpeg",0,NULL,&gg ); + { + int i; + for(i=0;i