/*
Copyright 1991 by the Massachusetts Institute of Technology

Permission to use, copy, modify, and distribute this
software and its documentation for any purpose and without
fee is hereby granted, provided that the above copyright
notice appear in all copies and that both that copyright
notice and this permission notice appear in supporting
documentation, and that the name of M.I.T. not be used in
advertising or publicity pertaining to distribution of the
software without specific, written prior permission.
M.I.T. makes no representations about the suitability of
this software for any purpose.  It is provided "as is"
without express or implied warranty.
*/

#define		MAX_BUTTONS		8
#define		MAX_MENU_LEN		6
#define		BUFSIZE			512
#define		HELL_FROZEN_OVER	0
#define		LONGNAMELEN		100
#define		SHORTNAMELEN		50

#define		NEXT			-1
#define		PREV			-2
#define		NEXTNEWS		-3
#define		PREVNEWS		-4
#define		UPDATE			-5
#define		NREF			-6
#define		PREF			-7
#define		FIRST			-8
#define		LAST			-9
#define		CURRENT			-10
#define		HIGHESTSEEN		-11
#define		INITIALIZE		-12
#define		LREF			-13
#define		FREF			-14

#define		BUTTONS_UPDATE		1
#define		BUTTONS_OFF		2
#define		BUTTONS_ON		3

#define		MAIN			1
#define		EDITMTGS		2
#define		LISTTRNS		3

/*
** In a chain of entryrecs, the head will be either a command widget or
** a menubutton, and any following entries will be command children
** of the menubutton.
*/

typedef struct entryrec {
        Widget          button;
        struct entryrec *nextrec;
} EntryRec;

static char rcsidh[] = "";
