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

压缩解压

开发平台:

MultiPlatform

  1. //******************************************************************************
  2. //
  3. // File:        WINCE.H
  4. //
  5. // Description: This file declares all the Win32 APIs and C runtime functions
  6. //              that the Info-ZIP code calls, but are not implemented natively
  7. //              on Windows CE.  See WINCE.CPP for the implementation.
  8. //
  9. // Copyright:   All the source files for Pocket UnZip, except for components
  10. //              written by the Info-ZIP group, are copyrighted 1997 by Steve P.
  11. //              Miller.  The product "Pocket UnZip" itself is property of the
  12. //              author and cannot be altered in any way without written consent
  13. //              from Steve P. Miller.
  14. //
  15. // Disclaimer:  All project files are provided "as is" with no guarantee of
  16. //              their correctness.  The authors are not liable for any outcome
  17. //              that is the result of using this source.  The source for Pocket
  18. //              UnZip has been placed in the public domain to help provide an
  19. //              understanding of its implementation.  You are hereby granted
  20. //              full permission to use this source in any way you wish, except
  21. //              to alter Pocket UnZip itself.  For comments, suggestions, and
  22. //              bug reports, please write to stevemil@pobox.com.
  23. //
  24. //
  25. // Date      Name          History
  26. // --------  ------------  -----------------------------------------------------
  27. // 02/01/97  Steve Miller  Created (Version 1.0 using Info-ZIP UnZip 5.30)
  28. //
  29. //******************************************************************************
  30. #ifndef __WINCE_H__
  31. #define __WINCE_H__
  32. #ifdef __cplusplus
  33. extern "C" {
  34. #endif
  35. //******************************************************************************
  36. //***** For all platforms - Our debug output function
  37. //******************************************************************************
  38. // If we are building for debug, we implement the DebugOut() function. If we are
  39. // building for release, then we turn all calls to DebugOut() into no-ops.  The
  40. // Microsoft compiler (and hopefully others) will not generate any code at all
  41. // for the retail version of DebugOut() defined here.  This works much better
  42. // than trying to create a variable argument macro - something C/C++ does not 
  43. // support cleanly.
  44. #ifdef DEBUG
  45. void DebugOut(LPCTSTR szFormat, ...);
  46. #else
  47. __inline void DebugOut(LPCTSTR szFormat, ...) {}
  48. #endif
  49. //******************************************************************************
  50. //***** Windows NT Native
  51. //******************************************************************************
  52. #if !defined(_WIN32_WCE)
  53. #include <io.h>
  54. #include <time.h>
  55. #include <fcntl.h>
  56. #include <sysstat.h>
  57. #endif
  58. //******************************************************************************
  59. //***** Windows CE Native
  60. //******************************************************************************
  61. #if defined(_WIN32_WCE)
  62. #ifndef ZeroMemory
  63. #define ZeroMemory(Destination,Length) memset(Destination, 0, Length)
  64. #endif
  65. // A few forgotten defines in Windows CE's TCHAR.H
  66. #ifndef _stprintf
  67. #define _stprintf wsprintf
  68. #endif
  69. #ifndef _vsnwprintf
  70. #define _vsntprintf(d,c,f,a) wvsprintf(d,f,a)
  71. #endif
  72. //******************************************************************************
  73. //***** SYSTYPES.H functions
  74. //******************************************************************************
  75. typedef long _off_t;
  76. typedef long time_t;
  77. //******************************************************************************
  78. //***** CTYPE.H functions
  79. //******************************************************************************
  80. _CRTIMP int __cdecl isupper(int);
  81. _CRTIMP int __cdecl tolower(int);
  82. //******************************************************************************
  83. //***** FCNTL.H functions
  84. //******************************************************************************
  85. #define _O_RDONLY 0x0000   // open for reading only
  86. //#define _O_WRONLY  0x0001   // open for writing only
  87. //#define _O_RDWR    0x0002   // open for reading and writing
  88. //#define _O_APPEND  0x0008   // writes done at eof
  89. //#define _O_CREAT   0x0100   // create and open file
  90. //#define _O_TRUNC   0x0200   // open and truncate
  91. //#define _O_EXCL    0x0400   // open only if file doesn't already exist
  92. //#define _O_TEXT    0x4000   // file mode is text (translated)
  93. #define _O_BINARY 0x8000   // file mode is binary (untranslated)
  94. #define O_RDONLY  _O_RDONLY
  95. //#define O_WRONLY   _O_WRONLY
  96. //#define O_RDWR     _O_RDWR
  97. //#define O_APPEND   _O_APPEND
  98. //#define O_CREAT    _O_CREAT
  99. //#define O_TRUNC    _O_TRUNC
  100. //#define O_EXCL     _O_EXCL
  101. //#define O_TEXT     _O_TEXT
  102. #define O_BINARY  _O_BINARY
  103. //#define O_RAW      _O_BINARY
  104. //#define O_TEMPORARY   _O_TEMPORARY
  105. //#define O_NOINHERIT   _O_NOINHERIT
  106. //#define O_SEQUENTIAL  _O_SEQUENTIAL
  107. //#define O_RANDOM   _O_RANDOM
  108. //******************************************************************************
  109. //***** IO.H functions
  110. //******************************************************************************
  111. _CRTIMP int __cdecl chmod(const char *, int);
  112. _CRTIMP int __cdecl close(int);
  113. _CRTIMP int __cdecl isatty(int);
  114. _CRTIMP long __cdecl lseek(int, long, int);
  115. _CRTIMP int __cdecl open(const char *, int, ...);
  116. _CRTIMP int __cdecl read(int, void *, unsigned int);
  117. _CRTIMP int __cdecl setmode(int, int);
  118. _CRTIMP int __cdecl unlink(const char *);
  119. //******************************************************************************
  120. //***** STDIO.H functions
  121. //******************************************************************************
  122. //typedef struct _iobuf FILE;
  123. typedef int FILE;
  124. #define stdin  ((int*)-2)
  125. #define stdout ((int*)-3)
  126. #define stderr ((int*)-4)
  127. #define EOF    (-1)
  128. _CRTIMP int __cdecl fflush(FILE *);
  129. _CRTIMP char * __cdecl fgets(char *, int, FILE *);
  130. _CRTIMP int __cdecl fileno(FILE *);
  131. _CRTIMP FILE * __cdecl fopen(const char *, const char *);
  132. _CRTIMP int __cdecl fprintf(FILE *, const char *, ...);
  133. _CRTIMP int __cdecl fclose(FILE *);
  134. _CRTIMP int __cdecl putc(int, FILE *);
  135. _CRTIMP int __cdecl sprintf(char *, const char *, ...);
  136. //******************************************************************************
  137. //***** STRING.H functions
  138. //******************************************************************************
  139. _CRTIMP int     __cdecl _stricmp(const char *, const char *);
  140. _CRTIMP char *  __cdecl _strupr(char *);
  141. _CRTIMP char *  __cdecl strrchr(const char *, int);
  142. //******************************************************************************
  143. //***** TIME.H functions
  144. //******************************************************************************
  145. #ifndef _TM_DEFINED
  146. struct tm {
  147.    int tm_sec;     // seconds after the minute - [0,59]
  148.    int tm_min;     // minutes after the hour - [0,59]
  149.    int tm_hour;    // hours since midnight - [0,23]
  150.    int tm_mday;    // day of the month - [1,31]
  151.    int tm_mon;     // months since January - [0,11]
  152.    int tm_year;    // years since 1900
  153. // int tm_wday;    // days since Sunday - [0,6]
  154. // int tm_yday;    // days since January 1 - [0,365]
  155.    int tm_isdst;   // daylight savings time flag
  156. };
  157. #define _TM_DEFINED
  158. #endif
  159. _CRTIMP struct tm * __cdecl localtime(const time_t *);
  160. //******************************************************************************
  161. //***** SYSSTAT.H functions
  162. //******************************************************************************
  163. struct stat {
  164. // _dev_t st_dev;
  165. // _ino_t st_ino;
  166.    unsigned short st_mode;
  167. // short st_nlink;
  168. // short st_uid;
  169. // short st_gid;
  170. // _dev_t st_rdev;
  171.    _off_t st_size;
  172. // time_t st_atime;
  173.    time_t st_mtime;
  174. // time_t st_ctime;
  175. };
  176. #define _S_IFMT   0170000  // file type mask
  177. #define _S_IFDIR  0040000  // directory
  178. //#define _S_IFCHR   0020000  // character special
  179. //#define _S_IFIFO   0010000  // pipe
  180. #define _S_IFREG  0100000  // regular
  181. #define _S_IREAD  0000400  // read permission, owner
  182. #define _S_IWRITE 0000200  // write permission, owner
  183. #define _S_IEXEC  0000100  // execute/search permission, owner
  184. #define S_IFMT  _S_IFMT
  185. #define S_IFDIR  _S_IFDIR
  186. //#define S_IFCHR  _S_IFCHR
  187. //#define S_IFREG  _S_IFREG
  188. #define S_IREAD  _S_IREAD
  189. #define S_IWRITE _S_IWRITE
  190. #define S_IEXEC  _S_IEXEC
  191. _CRTIMP int __cdecl stat(const char *, struct stat *);
  192. //******************************************************************************
  193. #endif // _WIN32_WCE
  194. #ifdef __cplusplus
  195. } // extern "C"
  196. #endif
  197. #endif // __WINCE_H__