[sword-svn] r2392 - trunk/src/utilfuns/win32
chrislit at crosswire.org
chrislit at crosswire.org
Thu May 7 19:21:19 MST 2009
Author: chrislit
Date: 2009-05-07 19:21:19 -0700 (Thu, 07 May 2009)
New Revision: 2392
Modified:
trunk/src/utilfuns/win32/dirent.h
Log:
additions to dirent.h per Greg's suggestions
Modified: trunk/src/utilfuns/win32/dirent.h
===================================================================
--- trunk/src/utilfuns/win32/dirent.h 2009-05-08 02:02:16 UTC (rev 2391)
+++ trunk/src/utilfuns/win32/dirent.h 2009-05-08 02:21:19 UTC (rev 2392)
@@ -17,6 +17,8 @@
#ifndef DIRENT_INCLUDED
#define DIRENT_INCLUDED
+#include <defs.h>
+
typedef struct DIR DIR;
struct dirent
@@ -24,9 +26,9 @@
char *d_name;
};
-DIR *opendir(const char *);
-int closedir(DIR *);
-struct dirent *readdir(DIR *);
-void rewinddir(DIR *);
+SWDLLEXPORT DIR *opendir(const char *);
+SWDLLEXPORT int closedir(DIR *);
+SWDLLEXPORT struct dirent *readdir(DIR *);
+SWDLLEXPORT void rewinddir(DIR *);
#endif
More information about the sword-cvs
mailing list