File: jdw.h

package info (click to toggle)
macutils 2.0b3-17.1
  • links: PTS
  • area: main
  • in suites: forky, sid
  • size: 1,264 kB
  • sloc: ansic: 12,737; makefile: 661
file content (23 lines) | stat: -rwxr-xr-x 438 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#define	J_MAGIC		0
#define J_TYPE		6
#define J_AUTH		10
#define	J_FINFO		14
#define	J_DATALENGTH	22
#define J_RSRCLENGTH	26
#define	J_CTIME		30
#define	J_MTIME		34
#define	J_FLENGTH	38

struct fileHdr {
	char		magic[6];
	unsigned long	type;
	unsigned long	auth;
	char		finfo[8];
	unsigned long	dataLength;
	unsigned long	rsrcLength;
	unsigned long	ctime;
	unsigned long	mtime;
	char		flength;
	char		fname[32];	/* actually flength */
};