Mercurial > emacs
view src/vmsproc.h @ 25038:740d12d42387
(--with-png, HAVE_PNG): New.
(toplevel): Add checks for machine/soundcard.h and sys/soundcard.h.
(USE_TOOLKIT_SCROLL_BARS): New.
(HAVE_XAW3D): New.
(--with-tiff, HAVE_TIFF): Added.
(HAVE_JPEG, --with-jpeg): Added.
(--with-xpm, HAVE_XPM): New.
author | Gerd Moellmann <gerd@gnu.org> |
---|---|
date | Wed, 21 Jul 1999 21:43:52 +0000 |
parents | 3165b2697c78 |
children |
line wrap: on
line source
/* Structure for storing VMS specific information for an EMACS process We use the event flags 1-23 for processes, keyboard input and timer */ /* Same as MAXDESC in process.c */ #define MAX_EVENT_FLAGS 23 typedef struct { char inputBuffer[1024]; short inputChan; short outputChan; short busy; int pid; int eventFlag; int exitStatus; short iosb[4]; } VMS_PROC_STUFF;