DataMuseum.dk

Presents historical artifacts from the history of:

DKUUG/EUUG Conference tapes

This is an automatic "excavation" of a thematic subset of
artifacts from Datamuseum.dk's BitArchive.

See our Wiki for more about DKUUG/EUUG Conference tapes

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - metrics - download
Index: T g

⟦fbc76f9bc⟧ TextFile

    Length: 565 (0x235)
    Types: TextFile
    Names: »globals.c«

Derivation

└─⟦b20c6495f⟧ Bits:30007238 EUUGD18: Wien-båndet, efterår 1987
    └─⟦this⟧ »EUUGD18/General/Spacewar/globals.c« 

TextFile

/*
 * Spacewar - file that declares all global lists
 *
 * Copyright 1984 obo Systems, Inc.
 * Copyright 1984 Dan Rosenblatt
 */

#include "spacewar.h"
#ifndef VMS
#include <sys/types.h>
#else /* BSD SYSIII SYSV */
#include <types.h>
#endif /* VMS */
#include "universe.h"
#include "torp.h"
#include "sys.h"
#include "obj.h"
#include "login.h"
#include "crft.h"
#include "aln.h"

struct aln alnlst[MAXALN];
struct crft crftlst[MAXCRFT];
struct login loginlst[MAXLOGIN];
struct obj objlst[MAXOBJ];
struct torp torplst[MAXTORP];
struct universe univlst[MAXUNIVERSE];