Skip to content

Latest commit

 

History

History
123 lines (86 loc) · 2.68 KB

zip.c

File metadata and controls

123 lines (86 loc) · 2.68 KB
 
Jul 7, 2001
Jul 7, 2001
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/*
* ZIP support routines for PhysicsFS.
*
* Please see the file LICENSE in the source's root directory.
*
* This file written by Ryan C. Gordon.
*/
#include <stdio.h>
#include <stdlib.h>
#define __PHYSICSFS_INTERNAL__
#include "physfs_internal.h"
#if (!defined PHYSFS_SUPPORTS_ZIP)
#error PHYSFS_SUPPORTS_ZIP must be defined.
#endif
Jul 8, 2001
Jul 8, 2001
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
extern const DirFunctions __PHYSFS_DirFunctions_ZIP;
extern const FileFunctions __PHYSFS_FileHandle_ZIP;
static int ZIP_read(FileHandle *handle, void *buffer,
unsigned int objSize, unsigned int objCount)
{
} /* ZIP_read */
static int ZIP_eof(FileHandle *handle)
{
} /* ZIP_eof */
static int ZIP_tell(FileHandle *handle)
{
} /* ZIP_tell */
static int ZIP_seek(FileHandle *handle, int offset)
{
} /* ZIP_seek */
static int ZIP_fileClose(FileHandle *handle)
{
} /* ZIP_fileClose */
static int ZIP_isArchive(const char *filename, int forWriting)
{
} /* ZIP_isArchive */
static DirHandle *ZIP_openArchive(const char *name, int forWriting)
{
} /* ZIP_openArchive */
static LinkedStringList *ZIP_enumerateFiles(DirHandle *r, const char *dirname)
{
} /* ZIP_enumerateFiles */
static int ZIP_exists(DirHandle *r, const char *name)
{
} /* ZIP_exists */
static int ZIP_isDirectory(DirHandle *r, const char *name)
{
} /* ZIP_isDirectory */
static int ZIP_isSymLink(DirHandle *r, const char *name)
{
} /* ZIP_isSymLink */
static FileHandle *ZIP_openRead(DirHandle *r, const char *filename)
{
} /* ZIP_openRead */
static void ZIP_dirClose(DirHandle *r)
{
} /* ZIP_dirClose */
Jul 7, 2001
Jul 7, 2001
88
89
90
static const FileFunctions __PHYSFS_FileHandle_ZIP =
{
Jul 8, 2001
Jul 8, 2001
91
92
93
94
95
96
ZIP_read, /* read() method */
NULL, /* write() method */
ZIP_eof, /* eof() method */
ZIP_tell, /* tell() method */
ZIP_seek, /* seek() method */
ZIP_fileClose, /* fileClose() method */
Jul 7, 2001
Jul 7, 2001
97
98
99
100
101
};
const DirFunctions __PHYSFS_DirFunctions_ZIP =
{
Jul 8, 2001
Jul 8, 2001
102
103
104
105
106
107
108
109
110
111
112
113
ZIP_isArchive, /* isArchive() method */
ZIP_openArchive, /* openArchive() method */
ZIP_enumerateFiles, /* enumerateFiles() method */
ZIP_exists, /* exists() method */
ZIP_isDirectory, /* isDirectory() method */
ZIP_isSymLink, /* isSymLink() method */
ZIP_openRead, /* openRead() method */
NULL, /* openWrite() method */
NULL, /* openAppend() method */
NULL, /* remove() method */
NULL, /* mkdir() method */
ZIP_dirClose, /* dirClose() method */
Jul 7, 2001
Jul 7, 2001
114
115
116
117
118
119
120
121
122
};
const __PHYSFS_ArchiveInfo __PHYSFS_ArchiveInfo_ZIP =
{
"ZIP",
"PkZip/WinZip/Info-Zip compatible"
};
/* end of zip.c ... */