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 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339
|
/*
Copyright (c) 1990-2009 Info-ZIP. All rights reserved.
See the accompanying file LICENSE, version 2009-Jan-02 or later
(the contents of which are also included in unzip.h) for terms of use.
If, for some reason, all these files are missing, the Info-ZIP license
also may be found at: ftp://ftp.info-zip.org/pub/infozip/license.html
*/
//******************************************************************************
//
// File: WINCE.H
//
// Description: This file declares all the Win32 APIs and C runtime functions
// that the Info-ZIP code calls, but are not implemented natively
// on Windows CE. See WINCE.CPP for the implementation.
//
// Copyright: All the source files for Pocket UnZip, except for components
// written by the Info-ZIP group, are copyrighted 1997 by Steve P.
// Miller. The product "Pocket UnZip" itself is property of the
// author and cannot be altered in any way without written consent
// from Steve P. Miller.
//
// Disclaimer: All project files are provided "as is" with no guarantee of
// their correctness. The authors are not liable for any outcome
// that is the result of using this source. The source for Pocket
// UnZip has been placed in the public domain to help provide an
// understanding of its implementation. You are hereby granted
// full permission to use this source in any way you wish, except
// to alter Pocket UnZip itself. For comments, suggestions, and
// bug reports, please write to stevemil@pobox.com.
//
//
// Date Name History
// -------- ------------ -----------------------------------------------------
// 02/01/97 Steve Miller Created (Version 1.0 using Info-ZIP UnZip 5.30)
//
//******************************************************************************
#ifndef __WINCE_H__
#define __WINCE_H__
#ifdef __cplusplus
extern "C" {
#endif
//******************************************************************************
//***** For all platforms - Our debug output function
//******************************************************************************
// If we are building for debug, we implement the DebugOut() function. If we are
// building for release, then we turn all calls to DebugOut() into no-ops. The
// Microsoft compiler (and hopefully others) will not generate any code at all
// for the retail version of DebugOut() defined here. This works much better
// than trying to create a variable argument macro - something C/C++ does not
// support cleanly.
#ifdef DEBUG
void DebugOut(LPCTSTR szFormat, ...);
#else
__inline void DebugOut(LPCTSTR szFormat, ...) {}
#endif
//******************************************************************************
//***** Windows NT Native
//******************************************************************************
#if !defined(_WIN32_WCE)
#ifndef UNICODE
#include <stdio.h>
#endif
#include <io.h>
#include <time.h>
#include <fcntl.h>
#include <sys\stat.h>
#endif
//******************************************************************************
//***** Windows CE Native
//******************************************************************************
#if defined(_WIN32_WCE)
#if defined(__WINCE_CPP)
// internal, suppress "import linkage" specifier
# define ZCRTIMP
#else
// do not use import linkage specifier either; symbols are provided locally
# define ZCRTIMP
#endif
#ifndef ZeroMemory
#define ZeroMemory(Destination,Length) memset(Destination, 0, Length)
#endif
#ifdef _MBCS
// WinCE C RTL does not provide the setlocale function
# define setlocale(category, locale)
#endif
// A few forgotten defines in Windows CE's TCHAR.H
#ifndef _stprintf
#define _stprintf wsprintf
#endif
#if _WIN32_WCE < 211 //sr551b functions in stdlib CE300
#ifndef _vsntprintf
#define _vsntprintf(d,c,f,a) wvsprintf(d,f,a)
#endif
#ifndef _vsnwprintf
#define _vsnwprintf(d,c,f,a) wvsprintf(d,f,a)
#endif
#endif //end sr551b
//******************************************************************************
//***** SYS\TYPES.H functions
//******************************************************************************
#ifndef _OFF_T_DEFINED
typedef long _off_t;
#define _OFF_T_DEFINED
#endif
#ifndef _TIME_T_DEFINED
typedef long time_t;
#define _TIME_T_DEFINED
#endif
//******************************************************************************
//***** CTYPE.H functions
//******************************************************************************
#if _WIN32_WCE < 300
ZCRTIMP int __cdecl isupper(int);
#endif
_CRTIMP int __cdecl tolower(int);
// This is a coarse approximation to ASCII isalpha(), it returns TRUE not only
// on all ASCII letters but also on punctuation chars in the range of 0x40-0x7F
#ifndef isalpha
#define isalpha(c) (((c) & 0xC0) == 0xC0)
#endif
//******************************************************************************
//***** FCNTL.H functions
//******************************************************************************
#ifndef _O_RDONLY // do not redefine existing FCNTL.H constants
#define _O_RDONLY 0x0000 // open for reading only
#define _O_WRONLY 0x0001 // open for writing only
#define _O_RDWR 0x0002 // open for reading and writing
#define _O_APPEND 0x0008 // writes done at eof
#define _O_CREAT 0x0100 // create and open file
#define _O_TRUNC 0x0200 // open and truncate
#define _O_EXCL 0x0400 // open only if file doesn't already exist
//# define _O_TEXT 0x4000 // file mode is text (translated)
#define _O_BINARY 0x8000 // file mode is binary (untranslated)
#endif // _O_RDONLY (and alikes...) undefined
#ifndef O_RDONLY // do not redefine existing FCNTL.H constants
#define O_RDONLY _O_RDONLY
#define O_WRONLY _O_WRONLY
#define O_RDWR _O_RDWR
#define O_APPEND _O_APPEND
#define O_CREAT _O_CREAT
#define O_TRUNC _O_TRUNC
#define O_EXCL _O_EXCL
#define O_TEXT _O_TEXT
#define O_BINARY _O_BINARY
//#define O_RAW _O_BINARY
//#define O_TEMPORARY _O_TEMPORARY
//#define O_NOINHERIT _O_NOINHERIT
//#define O_SEQUENTIAL _O_SEQUENTIAL
//#define O_RANDOM _O_RANDOM
#endif // O_RDONLY (and other old-fashioned constants) undefined
//******************************************************************************
//***** IO.H functions
//******************************************************************************
ZCRTIMP int __cdecl chmod(const char *, int);
ZCRTIMP int __cdecl close(int);
ZCRTIMP int __cdecl isatty(int);
ZCRTIMP long __cdecl lseek(int, long, int);
ZCRTIMP int __cdecl open(const char *, int, ...);
ZCRTIMP int __cdecl read(int, void *, unsigned int);
#if _WIN32_WCE < 211
ZCRTIMP int __cdecl setmode(int, int);
#else
# define setmode _setmode
#endif
ZCRTIMP int __cdecl unlink(const char *);
//******************************************************************************
//***** STDIO.H functions
//******************************************************************************
#if _WIN32_WCE < 211 //sr551b functions in stdlib CE300
//typedef struct _iobuf FILE;
typedef int FILE;
#define stdin ((int*)-2)
#define stdout ((int*)-3)
#define stderr ((int*)-4)
#define EOF (-1)
ZCRTIMP int __cdecl fflush(FILE *);
ZCRTIMP char * __cdecl fgets(char *, int, FILE *);
ZCRTIMP int __cdecl fileno(FILE *);
ZCRTIMP FILE * __cdecl fopen(const char *, const char *);
ZCRTIMP int __cdecl fprintf(FILE *, const char *, ...);
ZCRTIMP int __cdecl fclose(FILE *);
ZCRTIMP int __cdecl putc(int, FILE *);
ZCRTIMP int __cdecl sprintf(char *, const char *, ...);
#endif // _WIN32_WCE < 211
#if _WIN32_WCE >= 211
// CE falsely uses (FILE *) pointer args for UNIX style I/O functions that
// normally expect numeric file handles (e.g. setmode())
# undef fileno
# define fileno(strm) (strm)
#endif // _WIN32_WCE < 211
#ifndef POCKET_UNZIP
ZCRTIMP void __cdecl perror(const char* errorText);
#endif
#ifdef USE_FWRITE
ZCRTIMP void __cdecl setbuf(FILE *, char *);
#endif
//******************************************************************************
//***** STDLIB.H functions
//******************************************************************************
#ifdef _MBCS
#ifndef MB_CUR_MAX
# define MB_CUR_MAX 2
#endif
ZCRTIMP int __cdecl mblen(const char *mbc, size_t mbszmax);
#endif /* _MBCS */
#if _WIN32_WCE >= 211
# define errno ((int)GetLastError())
#endif
#ifdef _WIN32_WCE_EMULATION
// The emulation runtime library lacks a required element for setjmp/longjmp,
// disable the recovery functionality for now.
# undef setjmp
# define setjmp(buf) 0
# undef longjmp
# define longjmp(buf, rv)
#endif
//******************************************************************************
//***** STRING.H functions
//******************************************************************************
ZCRTIMP int __cdecl _stricmp(const char *, const char *);
ZCRTIMP char * __cdecl _strupr(char *);
ZCRTIMP char * __cdecl strerror(int errnum);
ZCRTIMP char * __cdecl strrchr(const char *, int);
//******************************************************************************
//***** TIME.H functions
//******************************************************************************
#ifndef _TM_DEFINED
struct tm {
int tm_sec; // seconds after the minute - [0,59]
int tm_min; // minutes after the hour - [0,59]
int tm_hour; // hours since midnight - [0,23]
int tm_mday; // day of the month - [1,31]
int tm_mon; // months since January - [0,11]
int tm_year; // years since 1900
// int tm_wday; // days since Sunday - [0,6]
// int tm_yday; // days since January 1 - [0,365]
int tm_isdst; // daylight savings time flag
};
#define _TM_DEFINED
#endif
ZCRTIMP struct tm * __cdecl localtime(const time_t *);
// tzset is not supported on native WCE, define it as a NOP macro
#ifndef tzset
# define tzset()
#endif
//******************************************************************************
//***** SYS\STAT.H functions
//******************************************************************************
struct stat {
// _dev_t st_dev;
// _ino_t st_ino;
unsigned short st_mode;
// short st_nlink;
// short st_uid;
// short st_gid;
// _dev_t st_rdev;
_off_t st_size;
// time_t st_atime;
time_t st_mtime;
// time_t st_ctime;
};
#define _S_IFMT 0170000 // file type mask
#define _S_IFDIR 0040000 // directory
//#define _S_IFCHR 0020000 // character special
//#define _S_IFIFO 0010000 // pipe
#define _S_IFREG 0100000 // regular
#define _S_IREAD 0000400 // read permission, owner
#define _S_IWRITE 0000200 // write permission, owner
#define _S_IEXEC 0000100 // execute/search permission, owner
#define S_IFMT _S_IFMT
#define S_IFDIR _S_IFDIR
//#define S_IFCHR _S_IFCHR
//#define S_IFREG _S_IFREG
#define S_IREAD _S_IREAD
#define S_IWRITE _S_IWRITE
#define S_IEXEC _S_IEXEC
ZCRTIMP int __cdecl stat(const char *, struct stat *);
//******************************************************************************
#endif // _WIN32_WCE
#ifdef __cplusplus
} // extern "C"
#endif
#endif // __WINCE_H__
|