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

⟦f3f38b1c8⟧ TextFile

    Length: 480 (0x1e0)
    Types: TextFile
    Names: »misc.h«

Derivation

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

TextFile


#include <stdio.h>
#include <signal.h>
#include <strings.h>
#include <sys/time.h>

#ifndef	TRUE
#define	TRUE 	1
#endif

#ifndef	FALSE
#define	FALSE	0
#endif


#define CLUBS 		1
#define DIAMONDS	2
#define HEARTS		3
#define SPADES		4

#define MIN_RANK	1	/*  2  */
#define MAX_RANK	13	/* Ace */
#define MAX_SUIT	4	/* 1..4 */

#define	ROUND_WINDOW	1
#define	LEAD_WINDOW	2
#define INP_WINDOW	3
#define	TEXT_WINDOW	4
#define	PLAY_WINDOW	5
#define	SCORE_WINDOW	6
#define	MESG_WINDOW	7