Annotation of parser3/src/lib/ltdl/config_fixed.h, revision 1.3
1.1 paf 1: /* pa_config_fixed.h. */
2: /* Configure file for autoconf-disabled platforms */
3: /* tested only with MS Visual C++ V6 */
4:
5: #define HAVE_CTYPE_H 1
1.2 paf 6: #define HAVE_ERRNO_H 1
7: #define HAVE_MEMCPY 1
8: #define HAVE_MEMMOVE 1
1.1 paf 9: #define HAVE_MEMORY_H 1
1.2 paf 10: # include <memory.h>
1.1 paf 11: #define HAVE_STDIO_H 1
12: #define HAVE_STDLIB_H 1
1.2 paf 13: #define HAVE_STRCHR 1
14: #define HAVE_STRCMP 1
15: #define HAVE_STRINGS_H 1
1.1 paf 16: #define HAVE_STRING_H 1
1.2 paf 17: #define HAVE_STRRCHR 1
18: #define HAVE_SYS_STAT_H 1
19: #define HAVE_SYS_TYPES_H 1
20: #define LTDL_OBJDIR ".libs/"
1.1 paf 21: #define LTDL_SHLIB_EXT ".dll"
1.2 paf 22: /*
23: MS is shy to admit it implements stdc when compiled with lang extensions
24: without lang extensions libltdl does not compile
25: */
26: #define __STDC__ 1
27: #define error_t int
28: #define inline __inline
1.1 paf 29:
1.2 paf 30: #define R_OK 4
1.1 paf 31:
1.2 paf 32: /* dirent.h replacement */
33: #include <windows.h>
34: #include <io.h>
35: #define access(name, flags) _access(name, flags)
36: struct dirent {
37: char *d_name;
38: };
39: typedef void DIR;
40:
41: #define LT_D_NAMLEN(dirent) (0)
42:
1.3 ! paf 43: #define opendir(name) 0
! 44: #define readdir(dir) 0
! 45: #define closedir(dir) 0
E-mail: