diff options
author | Przemyslaw Skibinski <inikep@gmail.com> | 2016-12-22 09:58:58 (GMT) |
---|---|---|
committer | Przemyslaw Skibinski <inikep@gmail.com> | 2016-12-22 09:58:58 (GMT) |
commit | fea95c156761ee10d32a4f12105ebd90c67d4f47 (patch) | |
tree | ec2cffd748088b15927b85282444baef5b243fc5 /programs/util.h | |
parent | e6af952f8495de3a9e3cabb9a21e0ba4d7d28ff0 (diff) | |
download | lz4-fea95c156761ee10d32a4f12105ebd90c67d4f47.zip lz4-fea95c156761ee10d32a4f12105ebd90c67d4f47.tar.gz lz4-fea95c156761ee10d32a4f12105ebd90c67d4f47.tar.bz2 |
use FindFirstFileA and FindNextFileA on Windows
Diffstat (limited to 'programs/util.h')
-rw-r--r-- | programs/util.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/programs/util.h b/programs/util.h index c670c20..f3ff1b2 100644 --- a/programs/util.h +++ b/programs/util.h @@ -283,7 +283,7 @@ UTIL_STATIC int UTIL_prepareFileList(const char *dirName, char** bufStart, size_ { char* path; int dirLength, fnameLength, pathLength, nbFiles = 0; - WIN32_FIND_DATA cFile; + WIN32_FIND_DATAA cFile; HANDLE hFile; dirLength = (int)strlen(dirName); @@ -295,7 +295,7 @@ UTIL_STATIC int UTIL_prepareFileList(const char *dirName, char** bufStart, size_ path[dirLength+1] = '*'; path[dirLength+2] = 0; - hFile=FindFirstFile(path, &cFile); + hFile=FindFirstFileA(path, &cFile); if (hFile == INVALID_HANDLE_VALUE) { fprintf(stderr, "Cannot open directory '%s'\n", dirName); return 0; @@ -332,7 +332,7 @@ UTIL_STATIC int UTIL_prepareFileList(const char *dirName, char** bufStart, size_ } } free(path); - } while (FindNextFile(hFile, &cFile)); + } while (FindNextFileA(hFile, &cFile)); FindClose(hFile); return nbFiles; |