summary refs log tree commit diff stats
path: root/src/common/dirent.h
diff options
context:
space:
mode:
authorberkeviktor@aol.com <berkeviktor@aol.com>2011-02-24 04:13:14 +0100
committerberkeviktor@aol.com <berkeviktor@aol.com>2011-02-24 04:13:14 +0100
commitf16af8be941b596dedac3bf4e371ee2d21f4b598 (patch)
tree4b825dc642cb6eb9a060e54bf8d69288fbee4904 /src/common/dirent.h
parentc6a031659b54230099c863b7ccdc03de4a4c7a2d (diff)
nuke the repo
Diffstat (limited to 'src/common/dirent.h')
-rw-r--r--src/common/dirent.h28
1 files changed, 0 insertions, 28 deletions
diff --git a/src/common/dirent.h b/src/common/dirent.h
deleted file mode 100644
index cbb753e6..00000000
--- a/src/common/dirent.h
+++ /dev/null
@@ -1,28 +0,0 @@
-#ifndef DIRENT_H
-#define DIRENT_H
-
-#include <windows.h>
-#include <string.h>
-#include <assert.h>
-
-typedef struct dirent
-{
-   char d_name[MAX_PATH + 1]; /* current dir entry (multi-byte char string) */
-   WIN32_FIND_DATAA data;     /* file attributes */
-}  dirent;
-
-typedef struct DIR
-{
-   dirent current;            /* Current directory entry */
-   int    cached;             /* Indicates un-processed entry in memory */
-   HANDLE search_handle;      /* File search handle */
-   char   patt[MAX_PATH + 3]; /* search pattern (3 = pattern + "\\*\0") */
-} DIR;
-
-/* Forward declarations */
-DIR *opendir (const char *dirname);
-struct dirent *readdir (DIR *dirp);
-int closedir (DIR *dirp);
-void rewinddir(DIR* dirp);
-
-#endif /*DIRENT_H*/