view src/vmsproc.h @ 16270:4547dae187e9

(vertical_scroll_bar_type): Add enumerated none/left/right type for identifying vertical scroll bars. (struct frame): Use vertical_scroll_bar_type. (FRAME_HAS_VERTICAL_SCROLL_BARS): Use vertical scroll bar type. (FRAME_VERTICAL_SCROLL_BAR_TYPE): New macro. (FRAME_HAS_VERTICAL_SCROLL_BARS_ON_LEFT): New macros. (FRAME_HAS_VERTICAL_SCROLL_BARS_ON_RIGHT): New macros. (FRAME_SCROLL_BAR_WIDTH, FRAME_LEFT_SCROLL_BAR_WIDTH): New macros. (FRAME_WINDOW_WIDTH, FRAME_WINDOW_WIDTH_ARG): New macros. (SET_FRAME_WIDTH): New macro. (WINDOW_VERTICAL_SCROLL_BAR_COLUMN): Modify to handle left-side croll bars too.
author Richard M. Stallman <rms@gnu.org>
date Sat, 21 Sep 1996 22:31:58 +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;