/*
 * Copyright 1988, 1989, 1990, 1991 Massachusetts Institute of Technology
 */
/* This is here because it makes inputs look much more like
   incompetent RPDs */

#ifndef INPUT_DRIVER_H
#define INPUT_DRIVER_H

typedef struct
{
  char devname[32];
  char volume[128];
  Output output_chans[MAXSERVEROUTS];
  int outputnum[MAXSERVEROUTS];
} INPUT, *INPUT_ptr;

#endif /* INPUT_DRIVER_H */

INPUT_ptr inpututil_open();
