Mercurial > emacs
view src/vmsproc.h @ 26836:7c90254477b0
(INTERVAL_SRC): Include composite.h.
(INTERVAL_OBJ): Include composite.o.
(SOME_MACHINE_OBJECTS): Include composite.o.
(casefiddle.o) (dispnew.o) (indent.o) (process.o) (search.o)
(syntax.o) (window.o) (xdisp.o) (xfaces.o) (xterm.o) (print.o):
Depend on composite.h.
(doc.o): Depend on charset.h.
(keyboard.o) (textprop.o) (intervals.o): Depend on INTERVAL_SRC.
(composite.o): New target.
author | Kenichi Handa <handa@m17n.org> |
---|---|
date | Wed, 15 Dec 1999 00:01:14 +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;