dirent.h: export DLL functions
authorAdam Dickmeiss <adam@indexdata.dk>
Wed, 19 May 2010 12:39:34 +0000 (14:39 +0200)
committerAdam Dickmeiss <adam@indexdata.dk>
Wed, 19 May 2010 12:39:34 +0000 (14:39 +0200)
include/yaz/dirent.h

index 1f5d68f..b565ec2 100644 (file)
@@ -43,9 +43,9 @@ struct dirent {
 
 typedef struct DIR DIR;
 
-DIR *opendir (const char *path);
-struct dirent *readdir (DIR *dd);
-void closedir (DIR *dd);
+YAZ_EXPORT DIR *opendir (const char *path);
+YAZ_EXPORT struct dirent *readdir (DIR *dd);
+YAZ_EXPORT void closedir (DIR *dd);
 
 YAZ_END_CDECL