/********************************************************************************************************************************/ /* Created: 30-Mar-2010 17:29:48 by OpenVMS SDL EV3-3 */ /* Source: 30-MAR-2010 17:29:21 $1$DGA7274:[STARLET_H.SRC]STARDEFAE.SDI;1 */ /********************************************************************************************************************************/ /*** MODULE $CBODEF ***/ #ifndef __CBODEF_LOADED #define __CBODEF_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 /*+ */ /* Define Create Buffer Object bits */ /*- */ #define CBO$M_RETSVA 0x1 #define CBO$M_EXMAXLIM 0x2 #define CBO$M_SVA_32 0x4 #define CBO$M_NOSVA 0x8 #define CBO$M_SYSBUFOBJ 0x10 #ifdef __NEW_STARLET typedef struct _create_buffer_object_flags { unsigned cbo$v_retsva : 1; /* (Priv) Return SVA, not PVA, of object */ unsigned cbo$v_exmaxlim : 1; /* (Priv) Bypass MAXBOBMEM check (VMS development use only) */ unsigned cbo$v_sva_32 : 1; /* Allocate SVA from S0 space, $CREATE_BUFOBJ_64 only */ unsigned cbo$v_nosva : 1; /* Do not allocate any system space */ unsigned cbo$v_sysbufobj : 1; /* System buffer object (no process ties) */ unsigned cbo$v_filler : 27; } CREATE_BUFFER_OBJECT_FLAGS; #else /* __OLD_STARLET */ struct create_buffer_object_flags { unsigned cbo$v_retsva : 1; /* (Priv) Return SVA, not PVA, of object */ unsigned cbo$v_exmaxlim : 1; /* (Priv) Bypass MAXBOBMEM check (VMS development use only) */ unsigned cbo$v_sva_32 : 1; /* Allocate SVA from S0 space, $CREATE_BUFOBJ_64 only */ unsigned cbo$v_nosva : 1; /* Do not allocate any system space */ unsigned cbo$v_sysbufobj : 1; /* System buffer object (no process ties) */ unsigned cbo$v_filler : 27; } ; #endif /* #ifdef __NEW_STARLET */ #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 /* __CBODEF_LOADED */