oops, I forgot to include the header file
[ira/wip.git] / source3 / include / clitar.h
1 /*
2  * Unix SMB/Netbios implementation. 
3  * Version 3.0
4  * clitar file format
5  * Copyright (C) Andrew Tridgell              2000
6  * 
7  * This program is free software; you can redistribute it and/or modify it
8  * under the terms of the GNU General Public License as published by the
9  * Free Software Foundation; either version 2 of the License, or (at your
10  * option) any later version.
11  * 
12  * This program is distributed in the hope that it will be useful, but WITHOUT
13  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
14  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
15  * more details.
16  * 
17  * You should have received a copy of the GNU General Public License along with
18  * this program; if not, write to the Free Software Foundation, Inc., 675
19  * Mass Ave, Cambridge, MA 02139, USA.  
20  */
21
22 #ifndef _CLITAR_H
23 #define _CLITAR_H
24
25 #define TBLOCK 512
26 #define NAMSIZ 100
27 union hblock {
28   char dummy[TBLOCK];
29   struct header {
30     char name[NAMSIZ];
31     char mode[8];
32     char uid[8];
33     char gid[8];
34     char size[12];
35     char mtime[12];
36     char chksum[8];
37     char linkflag;
38     char linkname[NAMSIZ];
39   } dbuf;
40 };
41
42 #endif /* _CLITAR_H */