Google
 

Trailing-Edge - PDP-10 Archives - BB-P363B-SM_1985 - mcb/nml/nmulib.req
There are 3 other files named nmulib.req in the archive. Click here to see a list.
! NET:<DECNET20-V3P1.NMU>NMULIB.REQ.3 12-Jun-81 11:01:18, Edit by JENNESS
!    Massive readability changes to all files in the library.
! NET:<DECNET20-V3P1.NMU>NMULIB.REQ.2 16-Apr-81 13:50:40, Edit by JENNESS
!    Add NMRSP (Response macros) and NMARCH (Architecture) require files.
! NET:<DECNET20-V3P1.NMU>NMULIB.REQ.4 24-Mar-81 15:12:37, Edit by JENNESS
!    Add DEBUG require file.
! NET:<DECNET20-V3P1.NMU>NMULIB.REQ.3  3-Feb-81 10:13:38, Edit by JENNESS
!    Delete NMU.REQ file.  Not needed any more.  Put conditions directly
!	into this file.
! NMULIB - Network Management Utilities library
!
!                    COPYRIGHT (c) 1980, 1981, 1982
!                    DIGITAL EQUIPMENT CORPORATION
!                        Maynard, Massachusetts
!
!     This software is furnished under a license and may  be  used
!     and copied only in accordance with the terms of such license
!     and with the inclusion of the above copyright notice.   This
!     software  or any other copies thereof may not be provided or
!     otherwise made available to any other person.  No  title  to
!     and ownership of the software is hereby transferred.
!
!     The information  in  this  software  is  subject  to  change
!     without  notice  and should not be construed as a commitment
!     by DIGITAL EQUIPMENT CORPORATION.
!
!     DIGITAL assumes no responsibility for the use or reliability
!     of  its  software  on  equipment  which  is  not supplied by
!     DIGITAL.
!

!++
! Facility: LSG DECnet Network Management
!
! Abstract: This library is used by the modules of the
!           Network Management Utilities.
!
! Environment: TOPS10/TOPS20 user mode, MCB RSX task level
!              BLISS-36, BLISS-32 and BLISS-16
!
! Author: Steven M. Jenness, Creation date: 10-Dec-80
!
!--
!
! Table of contents
!
!
!	SYSTYP	    System type definition
!	XPORT	    Machine transportability package
!	STRLIB	    String processing library
!	NETLIB	    Protocol message processing library
!	NMARCH      Network Management Architecture definitions
!	DEBUG	    Debugging facility
!	NMRSP	    NICE Response processing macros
!	NMUCOM	    Utility common definitions
!	NMUT20	    TOPS20 utility internal definitions
!	NMUT10	    TOPS10 utility internal definitions
!	NMUMCB	    MCB Utility internal definitions
!       NMUCMI      Utility internal transportable definitions
!	NMLCOM	    NML common definitions
!	NCPCOM	    NCP common definitions
!	NMINI	    System initilization definitions
!
!
! Include files
!

require 'SYSTYP';                       ! Get system type definition

switches list (norequire);		! Suppress XPORT listing

require 'BLI:XPORT';			! Transportability package

switches list (require);

require 'STRLIB';                       ! String processing library

require 'NETLIB';                       ! Protocol message processing library

require 'NMARCH';			! NM Architecture definitions

require 'DEBUG';			! Debugging facility

require 'NMRSP';			! NICE Response processing macros

require 'NMUCOM';			! Utility common definitions

require                          	! Utility internal definitions

%if $TOPS20 %then 'NMUT20' %fi
%if $TOPS10 %then 'NMUT10' %fi
%if $MCB    %then 'NMUMCB' %fi;

require 'NMUCMI';                       ! Utility internal transportable defs

require 'NMLCOM';			! NML common definitions

require 'NCPCOM';			! NCP common definitions

require 'NMINI';			! System initilization definitions

![End of NMULIB.REQ]