w32cfg.h
上传用户:andy_li
上传日期:2007-01-06
资源大小:1019k
文件大小:7k
源码类别:

压缩解压

开发平台:

MultiPlatform

  1. /*---------------------------------------------------------------------------
  2.     Win32 specific configuration section:
  3.   ---------------------------------------------------------------------------*/
  4. #ifndef __w32cfg_h
  5. #define __w32cfg_h
  6. #if (defined(__CYGWIN__) && !defined(__CYGWIN32__))
  7. #  define __CYGWIN32__        /* new versions of CygWin may not define this */
  8. #endif
  9. #include <sys/types.h>        /* off_t, time_t, dev_t, ... */
  10. #include <sys/stat.h>
  11. #include <io.h>               /* read(), open(), etc. */
  12. #include <time.h>
  13. #if (defined(__RSXNT__) || defined(__EMX__)) && !defined(tzset)
  14. #  define tzset _tzset
  15. #endif
  16. #ifdef __MINGW32__
  17.    extern void _tzset(void);  /* this is missing in <time.h> */
  18. #  ifndef tzset
  19. #    define tzset _tzset
  20. #  endif
  21. #endif
  22. #include <memory.h>
  23. #if (!defined(__RSXNT__) && !defined(__CYGWIN32__))
  24. #  include <direct.h>         /* mkdir() */
  25. #endif
  26. #include <fcntl.h>
  27. #ifdef __CYGWIN32__
  28. #  include <unistd.h>
  29.    extern int setmode(int, int);        /* this is missing in <fcntl.h> */
  30. #endif
  31. #if (defined(MSC) || defined(__WATCOMC__) || defined(__MINGW32__))
  32. #  include <sys/utime.h>
  33. #else
  34. #  include <utime.h>
  35. #endif
  36. #if defined(FILEIO_C)
  37. #  ifndef __CYGWIN32__
  38. #    include <conio.h>
  39. #  endif
  40. #  include <windows.h>
  41. #  ifdef __RSXNT__
  42. #    include "win32/rsxntwin.h"
  43. #  endif
  44. #endif
  45. #if (defined(ENVARGS_C) || defined(EXTRACT_C) || defined(UNZIP_C) || 
  46.      defined(ZCRYPT_INTERNAL))
  47. #  include <windows.h>
  48. #  ifdef __RSXNT__
  49. #    include "win32/rsxntwin.h"
  50. #  endif
  51. #endif
  52. #if (defined(__CYGWIN32__) || defined(__MINGW32__))
  53.    /* the following definitions are missing in their <windows.h> */
  54. #  ifndef AnsiToOem
  55. #    define AnsiToOem CharToOemA
  56. #  endif
  57. #  ifndef OemToAnsi
  58. #    define OemToAnsi OemToCharA
  59. #  endif
  60. #endif
  61. #define DIR_END       '\'      /* OS uses '\' as directory separator */
  62. #define DIR_END2      '/'       /* also check for '/' (RTL may convert) */
  63. #ifndef DATE_FORMAT
  64. #  define DATE_FORMAT DF_MDY
  65. #endif
  66. #define lenEOL        2
  67. #define PutNativeEOL  {*q++ = native(CR); *q++ = native(LF);}
  68. #if (defined(__RSXNT__) && !defined(HAVE_MKTIME))
  69. #  define HAVE_MKTIME           /* use mktime() in time conversion routines */
  70. #endif
  71. #if (defined(__CYGWIN32__) && defined(HAVE_MKTIME))
  72. #  undef HAVE_MKTIME            /* Cygnus' mktime() implementation is buggy */
  73. #endif
  74. #if (!defined(NT_TZBUG_WORKAROUND) && !defined(NO_NT_TZBUG_WORKAROUND))
  75. #  define NT_TZBUG_WORKAROUND
  76. #endif
  77. #if (!defined(NO_EF_UT_TIME) && !defined(USE_EF_UT_TIME))
  78. #  define USE_EF_UT_TIME
  79. #endif
  80. #if (!defined(NOTIMESTAMP) && !defined(TIMESTAMP))
  81. #  define TIMESTAMP
  82. #endif
  83. #if (!defined(NO_NTSD_EAS) && !defined(NTSD_EAS))
  84. #  define NTSD_EAS      /* enable NTSD support unless explicitly suppressed */
  85. #endif
  86. /* handlers for OEM <--> ANSI string conversions */
  87. #ifdef __RSXNT__
  88.    /* RSXNT uses OEM coded strings in functions supplied by C RTL */
  89. #  ifdef CRTL_CP_IS_ISO
  90. #    undef CRTL_CP_IS_ISO
  91. #  endif
  92. #  ifndef CRTL_CP_IS_OEM
  93. #    define CRTL_CP_IS_OEM
  94. #  endif
  95. #else
  96.    /* "real" native WIN32 compilers use ANSI coded strings in C RTL calls */
  97. #  ifndef CRTL_CP_IS_ISO
  98. #    define CRTL_CP_IS_ISO
  99. #  endif
  100. #  ifdef CRTL_CP_IS_OEM
  101. #    undef CRTL_CP_IS_OEM
  102. #  endif
  103. #endif
  104. #ifdef CRTL_CP_IS_ISO
  105.    /* C RTL's file system support assumes ANSI coded strings */
  106. #  define ISO_TO_INTERN(src, dst)  {if ((src) != (dst)) strcpy((dst), (src));}
  107. #  define OEM_TO_INTERN(src, dst)  OemToAnsi(src, dst)
  108. #  define INTERN_TO_ISO(src, dst)  {if ((src) != (dst)) strcpy((dst), (src));}
  109. #  define INTERN_TO_OEM(src, dst)  AnsiToOem(src, dst)
  110. #endif /* CRTL_CP_IS_ISO */
  111. #ifdef CRTL_CP_IS_OEM
  112.    /* C RTL's file system support assumes OEM coded strings */
  113. #  define ISO_TO_INTERN(src, dst)  AnsiToOem(src, dst)
  114. #  define OEM_TO_INTERN(src, dst)  {if ((src) != (dst)) strcpy((dst), (src));}
  115. #  define INTERN_TO_ISO(src, dst)  OemToAnsi(src, dst)
  116. #  define INTERN_TO_OEM(src, dst)  {if ((src) != (dst)) strcpy((dst), (src));}
  117. #endif /* CRTL_CP_IS_OEM */
  118. #define _OEM_INTERN(str1) OEM_TO_INTERN(str1, str1)
  119. #define _ISO_INTERN(str1) ISO_TO_INTERN(str1, str1)
  120. #ifndef WINDLL
  121.    /* Despite best intentions, for the command-line version UzpPassword()
  122.     * could return either character set, depending on whether running under
  123.     * Win95 (DOS-session) or WinNT (native WinNT command interpreter)! */
  124. #  define STR_TO_CP2(dst, src)  (AnsiToOem(src, dst), dst)
  125. #  define STR_TO_CP3(dst, src)  (OemToAnsi(src, dst), dst)
  126. #else
  127.    /* The WINDLL front end is known to supply ISO/ANSI-coded passwords! */
  128. #  define STR_TO_CP2(dst, src)  (AnsiToOem(src, dst), dst)
  129. #endif
  130. /* dummy defines to disable these functions, they are not needed */
  131. #define STR_TO_OEM
  132. #define STR_TO_ISO
  133. /* Static variables that we have to add to Uz_Globs: */
  134. #define SYSTEM_SPECIFIC_GLOBALS 
  135.     int created_dir, renamed_fullpath, fnlen;
  136.     unsigned nLabelDrive;
  137.     char lastRootPath[4];
  138.     int lastVolOldFAT, lastVolLocTim;
  139.     char *rootpath, *buildpathHPFS, *buildpathFAT, *endHPFS, *endFAT;
  140.     char *dirname, *wildname, matchname[FILNAMSIZ];
  141.     int rootlen, have_dirname, dirnamelen, notfirstcall;
  142.     zvoid *wild_dir;
  143. /* created_dir, renamed_fullpath, fnlen, and nLabelDrive are used by   */
  144. /*    both mapname() and checkdir().                                   */
  145. /* lastRootPath and lastVolOldFAT are used by IsVolumeOldFAT().        */
  146. /* rootlen, rootpath, buildpathHPFS, buildpathFAT, endHPFS, and endFAT */
  147. /*    are used by checkdir().                                          */
  148. /* wild_dir, dirname, wildname, matchname[], dirnamelen, have_dirname, */
  149. /*    and notfirstcall are used by do_wild().                          */
  150. #if (defined(_MSC_VER) && !defined(MSC))
  151. #  define MSC
  152. #endif
  153. /* This replacement for C-RTL-supplied getch() (or similar) functionality
  154.  * avoids leaving unabsorbed LFs in the keyboard buffer under Windows95,
  155.  * and supports the <ALT>+[0]<digit><digit><digit> feature.
  156.  */
  157. int getch_win32  OF((void));
  158. /* This patch of stat() is useful for at least two compilers.  It is   */
  159. /* difficult to take a stat() of a root directory under Windows95, so  */
  160. /* zstat_win32() detects that case and fills in suitable values.       */
  161. #ifndef __RSXNT__
  162. #  ifndef W32_STATROOT_FIX
  163. #    define W32_STATROOT_FIX
  164. #  endif
  165. #endif /* !__RSXNT__ */
  166. #if (defined(NT_TZBUG_WORKAROUND) || defined(W32_STATROOT_FIX))
  167. #  define W32_STAT_BANDAID
  168. #  if (defined(NT_TZBUG_WORKAROUND) && defined(REENTRANT))
  169. #    define __W32STAT_GLOBALS__     Uz_Globs *pG,
  170. #    define __W32STAT_G__           pG,
  171. #  else
  172. #    define __W32STAT_GLOBALS__
  173. #    define __W32STAT_G__
  174. #  endif
  175. #  undef SSTAT
  176. #  ifdef WILD_STAT_BUG
  177. #    define SSTAT(path, pbuf) (iswild(path) || zstat_win32(__W32STAT_G__ path, pbuf))
  178. #  else
  179. #    define SSTAT(path, pbuf) zstat_win32(__W32STAT_G__ path, pbuf)
  180. #  endif
  181. #endif
  182. #ifdef __WATCOMC__
  183. #  ifdef __386__
  184. #    ifndef WATCOMC_386
  185. #      define WATCOMC_386
  186. #    endif
  187. #    define __32BIT__
  188. #    undef far
  189. #    define far
  190. #    undef near
  191. #    define near
  192. /* Get asm routines to link properly without using "__cdecl": */
  193. #    ifndef USE_ZLIB
  194. #      pragma aux crc32         "_*" parm caller [] value [eax] modify [eax]
  195. #      pragma aux get_crc_table "_*" parm caller [] value [eax] 
  196.                                       modify [eax ecx edx]
  197. #    endif /* !USE_ZLIB */
  198. #  endif /* __386__ */
  199. #  ifndef EPIPE
  200. #    define EPIPE -1
  201. #  endif
  202. #  define PIPE_ERROR (errno == EPIPE)
  203. #endif /* __WATCOMC__ */
  204. #endif /* !__w32cfg_h */