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
|
/*
Copyright (c) 1990-1999 Info-ZIP. All rights reserved.
See the accompanying file LICENSE, version 1999-Oct-05 or later
(the contents of which are also included in zip.h) for terms of use.
If, for some reason, both of these files are missing, the Info-ZIP license
also may be found at: ftp://ftp.cdrom.com/pub/infozip/license.html
*/
#ifndef __MACOS_OSDEP_H
#define __MACOS_OSDEP_H 1
#ifndef MACOS
# define MACOS
#endif
#include <setjmp.h>
#include <types.h>
#include <signal.h>
#include <stdio.h>
#include <stdlib.h>
#include <unix.h>
#include <unistd.h>
#include <console.h>
#include <Errors.h>
#include <Files.h>
#include "unixlike.h"
#include "macglob.h"
#define NO_MKTEMP 1
#define PASSWD_FROM_STDIN 1
#define NO_SYMLINK 1
#define USE_ZIPMAIN 1
#define USE_CASE_MAP 1 /* case_map is used to ignore case in comparisons */
/*
#define DEBUG_TIME
*/
#if (!defined(NO_EF_UT_TIME) && !defined(USE_EF_UT_TIME))
# define USE_EF_UT_TIME
#endif
#undef IZ_CHECK_TZ
#ifndef ZP_NEED_MEMCOMPR
# define ZP_NEED_MEMCOMPR
#endif
#define EXDEV 18
#define PATHCUT ':'
/* file operations use "b" for binary */
#define FOPR "rb"
#define FOPM "r+b"
#define FOPW "wb"
/*
#define DEBUG
*/
/* These functions are defined as a macro instead of a function.
so we have to undefine them for replacing (see printf.c) */
#undef getc
#undef getchar
#undef putchar
void setfiletype(char *file, unsigned long Creator, unsigned long Type);
char *GetZipVersionsInfo(void);
char *GetZipVersionLocal(void);
char *GetZipCopyright(void);
void InitAllVars(void);
void PrintFileInfo(void);
int fprintf(FILE *file, const char *format, ...);
int printf(const char *format, ...);
void perror(const char *parm1);
int macgetch(void);
int MacOpen(const char *path,int oflag,...);
FILE *MacFopen(const char *path,const char *mode);
#define fopen(path, mode) MacFopen(path, mode)
#define open(path, oflag) MacOpen(path, oflag)
char *GetComment(char *filename);
int readlink(char *path, char *buf, int size);
void PrintStatProgress(char *msg);
void InformProgress(const long progressMax, const long progressSoFar );
void ShowCounter(Boolean reset);
void leftStatusString(char *status);
#define PROCNAME(n) (action == ADD || action == UPDATE ? wild(n) : \
procname(n, 1))
#endif /* __MACOS_OSDEP_H */
|