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 t

⟦3679f43cf⟧ TextFile

    Length: 656 (0x290)
    Types: TextFile
    Names: »talk.h«

Derivation

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

TextFile

/*	@(#)talk.h 1.1 86/02/05 SMI; from UCB 1.2 83/04/23	*/

#include <curses.h>
#include <utmp.h>

#define	forever		for(;;)

#define	BUF_SIZE	512
#define PUT		1
#define GET		2
#define TYPE		buf.type
#define	WN		buf.wn
#define ROW		buf.row
#define COL		buf.col
#define STR		buf.string

FILE *popen();
int quit(), sleeper();

extern int sockt;
extern int curses_initialized;
extern int invitation_waiting;

extern char *current_state;
extern int current_line;

typedef struct xwin {
	WINDOW *x_win;
	int x_nlines;
	int x_ncols;
	int x_line;
	int x_col;
} xwin_t;

extern xwin_t comwin[19];

typedef struct {
	char	type, wn, row, col;
	char	string[40];
} BMSG;