/*
 * Copyright 1988, 1989, 1990, 1991 Massachusetts Institute of Technology
 */
#ifdef SEAMLESS
#include "../../GlibExt/GSeamless.h"
typedef struct _command {
  struct timeval time;  /* elapsed time correponding to frame */
  int frame;
  int action;    	/* SEARCH, ROLL, SWITCH, or RELEASE */
  int in_arg;    	/* in point or volume */
  int out_arg;		/* out point or volume */
  int spec_arg;		/* speed or switching mask */
  int volume;
  int resource; 
  struct _command *next;    /* next list item */
} command;

#endif /* SEAMLESS */
