summaryrefslogtreecommitdiff
path: root/libgammu/misc/win32-dirent.h
diff options
context:
space:
mode:
Diffstat (limited to 'libgammu/misc/win32-dirent.h')
-rw-r--r--libgammu/misc/win32-dirent.h56
1 files changed, 56 insertions, 0 deletions
diff --git a/libgammu/misc/win32-dirent.h b/libgammu/misc/win32-dirent.h
new file mode 100644
index 0000000..d5afd5d
--- /dev/null
+++ b/libgammu/misc/win32-dirent.h
@@ -0,0 +1,56 @@
+/* w32_dirent.c - Posix emulation layer for Sylpheed (Claws)
+ *
+ * This file is part of w32lib.
+ *
+ * w32lib is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * w32lib is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
+ * USA.
+ *
+ * For more information and a list of changes, see w32lib.h
+ */
+
+#ifndef __helper__win32_dirent_h_
+#define __helper__win32_dirent_h_
+
+#ifdef __MINGW32__
+#include <dirent.h>
+#else
+
+#include <stdio.h>
+
+/* For struct _finddata_t */
+#include <io.h>
+
+struct dirent {
+ long d_ino;
+ unsigned short d_reclen;
+ size_t d_namlen;
+ char d_name[FILENAME_MAX];
+};
+
+typedef struct
+{
+ struct _finddata_t dd_dta;
+ struct dirent dd_dir;
+ HANDLE dd_handle;
+ int dd_stat;
+ char dd_name[1];
+} DIR;
+
+DIR *opendir( const char *name );
+int closedir( DIR *dir );
+struct dirent *readdir( DIR *dir );
+
+#endif
+#endif