.pg .x d__stdescr .x Obsolete Macros > d__stdescr .lt ------------------------------------------------------------------------ D_STDESCR .BLKx length [address] [allot] ------------------------------------------------------------------------ .el .b 3 This macro will allocate the dynamic string descriptor structure using the storage type specified: .b One the following directives must be used in place of .BLK^&x\&. .b .lt .BLKA addresses (longwords) .BLKB bytes .BLKD double-precision floating-point (quadwords) .BLKF single-precision floaging-point (longwords) .BLKG G_floating (quadwords) .BLKH H_floating (octawords) .BLKL longwords .BLKO octawords .BLKQ quadwords .BLKW words .el .b If ^&address\& is specified as the asterisk character (i.e. _*), the D__STDESCR macro will also generate the appropriate block storage allocation directive. .b If ^&address\& is not specified, no storage allocation directive is generated; you must then follow the D__STDESCR macro with the appropriate storage allocation directive. .b If ^&address\& is specified and allot is specified as the asterisk character, the D__STDESCR macro will generate the appropriate block storage allocation directive and assign it to the label address. .b For example: .b .lt var dynamic_descr: d_stdescr .blkb 0 .el .b will generate the following code: .b .lt dynamic_descr: .byte dsc$k_dtype_t .byte dsc$k_class_d .word 0 .address 0 .el .b See also DESCR, D__DESCR, and STDESCR.