view src/vmsproc.h @ 17938:8471e43d4f72

[This finishes the change log for the changes in the previous version.] Add properties for new commands. Move all the no-op commands to the end, and add some. Add many commands for ligatures and for letters with diacritics and other non-English special characters. (texinfo-multitable): New Texinfo cmd. (texinfo-end-multitable): New function. (texinfo-multitable-widths): New function. (texinfo-multitable-extract-row): New function. (texinfo-multitable-item): New function. (texinfo-format-timestamp): New Texinfo cmd. (texinfo-format-kbd-regexp): New variable. (texinfo-format-kbd-end-regexp): New variable. (texinfo-format-kbd): New function for @kbd. (texinfo-format-ifeq): New Texinfo cmd. (texinfo-format-pounds): Likewise. (texinfo-format-refill): Handle *'s specially at line start.
author Richard M. Stallman <rms@gnu.org>
date Sat, 24 May 1997 20:50:37 +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;