/***************************************************************************/ /** **/ /** HPE CONFIDENTIAL. This software is confidential proprietary software **/ /** licensed by Hewlett-Packard Enterprise Development, LP, and is not **/ /** authorized to be used, duplicated OR disclosed to anyone without the **/ /** prior written permission of HPE. **/ /** © 2023 Copyright Hewlett-Packard Enterprise Development, LP **/ /** **/ /** VMS SOFTWARE, INC. CONFIDENTIAL. This software is confidential **/ /** proprietary software licensed by VMS Software, Inc., and is not **/ /** authorized to be used, duplicated or disclosed to anyone without **/ /** the prior written permission of VMS Software, Inc. **/ /** © 2023 Copyright VMS Software, Inc. **/ /** **/ /***************************************************************************/ /********************************************************************************************************************************/ /* Created: 9-Nov-2023 12:06:48 by OpenVMS SDL V3.7 */ /* Source: 21-APR-1993 10:53:55 $1$DGA8345:[LIB_H.SRC]SPNBDEF.SDL;1 */ /********************************************************************************************************************************/ /*** MODULE $SPNBDEF ***/ #ifndef __SPNBDEF_LOADED #define __SPNBDEF_LOADED 1 #pragma __nostandard /* This file uses non-ANSI-Standard features */ #pragma __member_alignment __save #pragma __nomember_alignment #ifdef __INITIAL_POINTER_SIZE /* Defined whenever ptr size pragmas supported */ #pragma __required_pointer_size __save /* Save the previously-defined required ptr size */ #pragma __required_pointer_size __short /* And set ptr size default to 32-bit pointers */ #endif #ifdef __cplusplus extern "C" { #define __unknown_params ... #define __optional_params ... #else #define __unknown_params #define __optional_params ... #endif #ifndef __struct #if !defined(__VAXC) #define __struct struct #else #define __struct variant_struct #endif #endif #ifndef __union #if !defined(__VAXC) #define __union union #else #define __union variant_union #endif #endif /*+ */ /* SPNB - SCA POLLER NAME BLOCK */ /* */ /* THIS DATA STRUCTURE CONTAINS A LIST OF PROCESS NAMES WHICH WILL */ /* BE SEARCHED FOR ON THE GIVEN REMOTE NODE. */ /*- */ #define SPNB$C_HDRSIZ 24 /*SIZE OF HEADER */ #define SPNB$S_SPNBDEF 25 typedef struct _spnb { struct _spnb *spnb$l_flink; /*FWD LINK */ struct _spnb *spnb$l_blink; /*BCK LINK */ unsigned short int spnb$w_size; /*STRUCTURE SIZE IN BYTES */ unsigned char spnb$b_type; /*SCS STRUCTURE TYPE */ unsigned char spnb$b_subtyp; /*SCS STRUCTURE SUBTYPE FOR SPNB */ unsigned int spnb$l_sb; /*SYSTEM BLOCK OF REMOTE NOTE */ int (*spnb$l_routine)(); /*ADDRESS OF ROUTINE TO BE CALLED WHEN PROCESS FOUND */ unsigned char spnb$b_index; /*INDEX INTO PROCESS LIST OF NEXT PROCESS TO SEARCH FOR */ unsigned short int spnb$w_refc; /*NUMBER OF REFERENCES TO SPNB */ unsigned char spnb$b_free [1]; /*FREE BYTE */ unsigned char spnb$b_namlst; /*START OF VARIABLE LENGTH LIST OF ADDRESSES OF PROCESS NAMES */ /*LIST IS ZERO TERMINATED */ } SPNB; #pragma __member_alignment __restore #ifdef __INITIAL_POINTER_SIZE /* Defined whenever ptr size pragmas supported */ #pragma __required_pointer_size __restore /* Restore the previously-defined required ptr size */ #endif #ifdef __cplusplus } #endif #pragma __standard #endif /* __SPNBDEF_LOADED */