/*
 *  This is the file buttons.c for xvdp.  It created all the buttons
 *  for player display.
 *
 *  Created:    8/25/88
 *  By:         Chris D. Peterson 
 *  
 *
 *      $Source: /u1/Video/tools/Xvdp/RCS/xvdp.h,v $
 *      $Author: kit $
 *      $Header: xvdp.h,v 1.1 88/08/26 12:46:44 kit Exp $
 *	
 *  	Copyright 1988 by the Massachusetts Institute of Technology.
 *
 *	For further information on copyright and distribution 
 *	see the file mit-copyright.h
 */

#include "mit-copyright.h"

#define streq(a, b) ( strcmp(a,b) == 0 )

void PrintWarning(), PrintError();

typedef void (*FVoid)();      /* function pointer typedef */

#define FRAME  0
#define SLOW   1
#define NORMAL 2
#define FAST   3


