Google
 

Trailing-Edge - PDP-10 Archives - BB-P363B-SM_1985 - mcb/nml/nmlpdb.bli
There are 2 other files named nmlpdb.bli in the archive. Click here to see a list.
module NMLPDB	(
		ident = 'X03.00'
		) =
begin

!
!                    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:	DECnet-10/20 V3.0 Network Management Layer (NML)
!
! ABSTRACT:
!
!	Performs permanent data base processing for all entities.
!
! ENVIRONMENT:	TOPS-10/20 & MCB/RSX11 User mode under NML
!
! AUTHOR: Dale C. Gunn , CREATION DATE: 12-Nov-80
!
! MODIFIED BY:
!
!	, : VERSION
! 01	-
!--
!
! INCLUDE FILES:
!

library 'NMLLIB' ;                      ! All required definitions

!require 'NMLEXT' ;                      ! NML External routines

!
! TABLE OF CONTENTS
!

forward routine
        NML$PDB_READ,
        NML$PDB_CHANGE ;

!
! MACROS:
!

!
! EQUATED SYMBOLS:
!

!
! OWN STORAGE:
!

!
! EXTERNAL REFERENCES:
!
global routine %unquote NML$PDB_READ (FUNCTION,TYPE,ENTITY,QUALIFIER,
                                      SELECTOR,LENGTH,BUFFER) =

!++
! FUNCTIONAL DESCRIPTION:
!
!	Performs the NML NICE read function for NML permanent parameters.
!
! FORMAL PARAMETERS
!
!	FUNCTION  - Code to denote whether the specified parameter is to be
!                   defined or purged.
!       TYPE      - The NML entity type number of the entity to which the
!                   parameter pertains.
!       ENTITY    - Character sequence pointer to the entity id.
!       QUALIFIER - An optional character sequence pointer to a qualifier in
!                   parameter format.
!       SELECTOR  - For the return function, the class of entities to return.
!       LENGTH    - The address of a variable to be updated with the length
!                   of the data returned in the buffer.
!       BUFFER    - A character sequence pointer to the parameter buffer.
!
! IMPLICIT INPUTS
!
!	NONE.
!
! ROUTINE VALUE:
!
!	NML specified NICE return code.
!
! SIDE EFFECTS:
!
!	NONE.
!
!--

    begin

    return $NICE$ERR_OPF ; 

    end;				!End of NML$PDB_READ
global routine %unquote NML$PDB_CHANGE (FUNCTION,TYPE,ENTITY,QUALIFIER,
                                        LENGTH,BUFFER) =

!++
! FUNCTIONAL DESCRIPTION:
!
!	Performs the NML NICE change function for NML permanent parameters.
!
! FORMAL PARAMETERS
!
!	FUNCTION  - Code to denote whether the specified parameter is to be
!                   defined or purged.
!       TYPE      - The NML entity type number of the entity to which the
!                   parameter pertains.
!       ENTITY    - Character sequence pointer to the entity id.
!       QUALIFIER - An optional character sequence pointer to a qualifier in
!                   parameter format.
!       LENGTH    - The address of a variable which contains the length
!                   of the parameter data passed in the buffer.
!       BUFFER    - A character sequence pointer to the parameter buffer.
!
! IMPLICIT INPUTS
!
!	NONE.
!
! ROUTINE VALUE:
!
!	NML specified NICE return code.
!
! SIDE EFFECTS:
!
!	NONE.
!
!--

    begin

    return $NICE$ERR_OPF ;

    end;				!End of NML$PDB_CHANGE
end				!End of Module NMLPDB
eludom