blob: 8cfc5459da9169e2a2667026d6eceef1e94ca409 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
--- macunpack/sit.h.orig Fri Apr 16 00:15:41 1999
+++ macunpack/sit.h Fri Apr 16 00:15:56 1999
@@ -24,7 +24,7 @@
typedef long OSType;
-typedef struct sitHdr { /* 22 bytes */
+struct sitHdr { /* 22 bytes */
OSType signature; /* = 'SIT!' -- for verification */
unsigned short numFiles; /* number of files in archive */
unsigned long arcLength; /* length of entire archive incl.
@@ -34,7 +34,7 @@
char reserved[7];
};
-typedef struct fileHdr { /* 112 bytes */
+struct fileHdr { /* 112 bytes */
unsigned char compRMethod; /* rsrc fork compression method */
unsigned char compDMethod; /* data fork compression method */
unsigned char fName[64]; /* a STR63 */
|