[BACK]Return to network.h CVS log [TXT][DIR] Up to [contributed] / early-roguelike / arogue5

Annotation of early-roguelike/arogue5/network.h, Revision 1.1.1.1

1.1       rubenllo    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 */

CVSweb