home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 2: Applications / Linux Cubed Series 2 - Applications.iso / editors / emacs / xemacs / xemacs-1.004 / xemacs-1 / xemacs-19.13 / src / vmsproc.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-11-28  |  469 b   |  24 lines

  1. /*
  2.     Structure for storing VMS specific information for an EMACS process
  3.  
  4.     We use the event flags 1-23 for processes, keyboard input and timer
  5. */
  6.  
  7. /* Synched up with: Not synched with FSF. */
  8.  
  9. /*
  10.     Same as MAXDESC in process.c
  11. */
  12. #define    MAX_EVENT_FLAGS        23
  13.  
  14. typedef  struct {
  15.     char    inputBuffer[1024];
  16.     short    inputChan;
  17.     short    outputChan;
  18.     short    busy;
  19.     int        pid;
  20.     int        eventFlag;
  21.     int        exitStatus;
  22.     short       iosb[4];
  23. } VMS_PROC_STUFF;
  24.