1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141
|
/* System description file for Windows NT.
Copyright (C) 1997, 1998 Free Software Foundation, Inc.
This file is part of Web2C.
Web2C 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, or (at your option)
any later version.
Web2C 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 Web2C; see the file COPYING. If not, write to
the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
#ifndef KPATHSEA_WIN32LIB_H
#define KPATHSEA_WIN32LIB_H
/*
* Define symbols to identify the version of Unix this is.
* Define all the symbols that apply correctly.
*/
#ifndef DOSISH
#define DOSISH
#endif
#ifndef MAXPATHLEN
#define MAXPATHLEN _MAX_PATH
#endif
#define HAVE_DUP2 1
#define HAVE_RENAME 1
#define HAVE_RMDIR 1
#define HAVE_MKDIR 1
#define HAVE_GETHOSTNAME 1
#define HAVE_RANDOM 1
#define USE_UTIME 1
#define HAVE_MOUSE 1
#define HAVE_TZNAME 1
/* These have to be defined because our compilers treat __STDC__ as being
defined (most of them anyway). */
#define access _access
#define alloca _alloca
#define chdir _chdir
#define chmod _chmod
#define close _close
#define creat _creat
#define dup _dup
#define dup2 _dup2
#define execlp _execlp
#define execvp _execvp
#define fdopen _fdopen
#define fileno _fileno
#define getpid _getpid
#define getwd(dir) GetCurrentDirectory(MAXPATHLEN, dir)
#define index strchr
#define isatty _isatty
#define itoa _itoa
#define link _link
#define lseek _lseek
#define mkdir _mkdir
#define mktemp _mktemp
#define open _open
#define pipe _pipe
#if 0
#define popen _popen
#define pclose _pclose
#endif
#define putenv _putenv
#define read _read
#define rmdir _rmdir
#define setmode _setmode
#define spawnlp _spawnlp
#define stat _stat
#define strcasecmp _stricmp
#define strdup _strdup
#define strncasecmp _strnicmp
#define unlink _unlink
#define umask _umask
#define utime _utime
#define write _write
#define S_IFMT _S_IFMT
#define S_IFDIR _S_IFDIR
#define S_IFCHR _S_IFCHR
#define S_IFIFO _S_IFIFO
#define S_IFREG _S_IFREG
#define S_IREAD _S_IREAD
#define S_IWRITE _S_IWRITE
#define S_IEXEC _S_IEXEC
#define S_IXUSR _S_IEXEC
#define S_IXGRP _S_IEXEC
#define S_IXOTH _S_IEXEC
#define S_IRUSR _S_IREAD
#define S_IWUSR _S_IWRITE
#define O_RDWR _O_RDWR
#define O_CREAT _O_CREAT
#define O_TRUNC _O_TRUNC
#define O_RDONLY _O_RDONLY
#define O_WRONLY _O_WRONLY
#define O_APPEND _O_APPEND
#define O_TEXT _O_TEXT
#define O_BINARY _O_BINARY
/* Define this so that winsock.h definitions don't get included when
windows.h is... For this to have proper effect, config.h must
always be included before windows.h. */
#define _WINSOCKAPI_ 1
#include <windows.h>
/* Defines size_t and alloca (). */
#include <malloc.h>
/* For proper declaration of environ. */
#include <stdlib.h>
#include <io.h>
#include <fcntl.h>
#include <stdio.h>
#include <process.h>
/* Web2C takes care of ensuring that these are defined. */
#ifdef max
#undef max
#undef min
#endif
/* Functions from win32lib.c */
extern FILE *popen(const char *, const char *);
extern int pclose(FILE *);
/* ============================================================ */
#endif /* not KPATHSEA_WIN32LIB_H */
|