/************************************************************************ ** * ** Copyright © 1996 Digital Equipment Corporation. * ** All rights reserved. * ** * ** Redistribution and use in source and binary forms are permitted * ** provided that the above copyright notice and this paragraph are * ** duplicated in all such forms and that any documentation, * ** advertising materials, and other materials related to such * ** distribution and use acknowledge that the software was developed * ** by Digital Equipment Corporation. The name of the * ** Corporation may not be used to endorse or promote products derived * ** from this software without specific prior written permission. * ** THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR * ** IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED * ** WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. * ** * ************************************************************************* ** * ** Important Note: * ** * ** This coding example uses privileged OpenVMS interfaces. * ** OpenVMS does not guarantee that these interfaces will * ** be supported indefinitely, and may change these interfaces * ** without prior notice. * ** * ************************************************************************* **++ ** FACILITY: ** ** ppp_lib.h. ** ** ABSTRACT: ** ** Constant defintions and external defines of variables for use with the library routines ** ** AUTHORS: ** ** Patrick Crilly, Networks Engineering (Australia). ** ** CREATION DATE: ** ** 29-February-1996 ** ** MODIFICATION HISTORY: ** ** 17-December-1996 Barry W. Kierstein ** Replaced the standard Digital copyright with ** one compatible with the CMU copyright. ** ** 1-August-1996 Barry W. Kierstein ** Added "Important Note" disclaimer. ** ** 24-July-1996 Barry W. Kierstein ** Corrected copyright notice. ** ** 29-February-1996 Original version. ** **-- */ #ifndef _PPP_LIB_H_ #define _PPP_LIB_H_ /* ** Define the constants for the vectors ** that can be returned. ** */ #define PPP_MGMT_RTNS 0 #define PPP_FSM_RTNS 1 #define PPP_VCI_RTNS 2 #define PPP_LST_RTN 2 /* last entry in table */ /* ** Prototypes */ void *PPPD$LIBRTNS( int vectorCode ); #endif /* _PPP_LIB_H */