X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=include%2Fdirentz.h;h=38835117660bedfaf5883b302fac35c055117a3e;hb=b9093505b17a074e79137ed64595c8269f77d330;hp=25477d55604e159be19ecf73e776efb090aeb7c7;hpb=5f8ba9f35bd3c9aeafe26613021f2edd141b8611;p=idzebra-moved-to-github.git diff --git a/include/direntz.h b/include/direntz.h index 25477d5..3883511 100644 --- a/include/direntz.h +++ b/include/direntz.h @@ -4,15 +4,22 @@ * Sebastian Hammer, Adam Dickmeiss * * $Log: direntz.h,v $ - * Revision 1.1 1997-09-09 13:38:03 adam + * Revision 1.2 1997-09-17 12:19:09 adam + * Zebra version corresponds to YAZ version 1.4. + * Changed Zebra server so that it doesn't depend on global common_resource. + * + * Revision 1.1 1997/09/09 13:38:03 adam * Partial port to WIN95/NT. * * */ + + #ifdef WINDOWS +/* make own version of dirent */ #include struct dirent { - char d_name[MAX_PATH+1]; + char d_name[MAX_PATH]; }; typedef struct DIR DIR; @@ -21,5 +28,6 @@ DIR *opendir (const char *path); struct dirent *readdir (DIR *dd); void closedir (DIR *dd); #else +/* include UNIX version */ #include #endif