home *** CD-ROM | disk | FTP | other *** search
-
- /*
- * VMS System Dependent Message Headers
- *
- * This program is the CONFIDENTIAL and PROPRIETARY property
- * of FairCom(R) Corporation. Any unauthorized use, reproduction or
- * transfer of this program is strictly prohibited.
- *
- * Copyright (c) 1987, 1988, 1989 FairCom Corporation
- * (Subject to limited distribution and
- * restricted disclosure only.)
- * *** ALL RIGHTS RESERVED ***
- *
- * 4006 West Broadway
- * Columbia, MO 65203
- *
- *
- * c-tree(R) Version 4.3
- * Release C
- * February 7, 1989 17:30
- *
- */
-
- /* system dependent headers */
- #include <types.h>
- #include <unixio.h>
- #include <descrip.h> /* has string descriptor structure */
- #include <iodef.h> /* return values for system services */
- #include <ssdef.h> /* return values for system services */
- #include <psldef.h> /* values for setting up mailboxes */
- #include <lnmdef.h>
- #include <string.h>
- #include <stdlib.h> /* necessary for getcwd function */
- static $DESCRIPTOR(SERVER,"SERVER"); /* server mailbox name */
- static $DESCRIPTOR(SHADOW,"SHADOW"); /* server mailbox name */
- LOCAL unsigned short srvid,apxid,shdid;
-
- #define MXMSG 12 /* max messages in server's mailbox */
-
- struct iosbdef {
- unsigned short status; /* completion status code */
- short count; /* bytes transfered length */
- unsigned int devinfo; /* device information */
- }iosb;
-
- struct dsc$descriptor_s user; /* string descriptor for mailbox*/
- unsigned short dummy; /* holder for vms mailbox channel*/
- char usrstr[30]; /* string to hold logical name for mbx*/
-
- /* LTYPE is the number of bytes from the beginning of the message to
- ** the c-tree portion of the message.
- */
- #define LTYPE 4
-
- /* end of ctmssg.vms */
-