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
|
#include "Types.r"
/*--vend ¥ Vendor Information Template (for Conflict Catcher) -----------------------*/
type 'vend' {
longint; /* version (0) */
pstring; /* name */
pstring; /* address */
pstring; /* voice phone */
pstring; /* fax phone */
pstring; /* info URL */
pstring; /* update URL */
pstring; /* e-mail URL */
};
resource 'vers' (2, purgeable) {
2,
0,
final,
0,
verUS,
"2.0",
"MIT Kerberos for the Macintosh 2.0"
};
resource 'vend' (-20640, purgeable) {
0,
"MIT Information Systems MacDev",
"77 Massachusetts Avenue, E40-318, Cambridge, MA 02139",
"",
"",
"http://mit.edu/macdev/www/",
"",
"mailto:macdev@mit.edu"
};
|