ftp.nice.ch/pub/next/games/action/Tetris1.3.N.bs.tar.gz#/Tetris1.3/Source/Parser.h

This is Parser.h in view mode; [Download] [Up]

/* Generated by Interface Builder */

#import <objc/Object.h>
typedef enum {INTEGER, CHAR, FLOAT, BOOLEAN, STRING, LIST} types;

typedef struct _symbolEntry {
	char *name;
	int link;						  // Index to next entry for block
	types type;
	int value;						  // Make anon. union
	void *valuePtr;
	int level;						  // Allow nested structures
} symbolEntry;


@interface Parser:Object
{
	int lastSymbolNum;		  // Last index value + 1
	symbolEntry *symbolTable[100];
}


@end

These are the contents of the former NiCE NeXT User Group NeXTSTEP/OpenStep software archive, currently hosted by Netfuture.ch.