comparison arogue5/network.h @ 63:0ed67132cf10

Import Advanced Rogue 5.8 from the Roguelike Restoration Project (r1490)
author elwin
date Thu, 09 Aug 2012 22:58:48 +0000
parents
children
comparison
equal deleted inserted replaced
62:0ef99244acb8 63:0ed67132cf10
1 /*
2 * Networking information -- should not vary among networking machines
3 *
4 * Advanced Rogue
5 * Copyright (C) 1984, 1985 Michael Morgan, Ken Dalka and AT&T
6 * All rights reserved.
7 *
8 * See the file LICENSE.TXT for full copyright and licensing information.
9 */
10
11 #define SYSLEN 9
12 #define LOGLEN 8
13 #define NUMNET 6
14 #undef NUMNET
15 struct network {
16 char *system;
17 char *rogue;
18 };
19 extern struct network Network[];
20
21 /* This system's name -- should not be defined if uname() is available */