/********************************************************************* rab.c PDP-11 C Define a default RAB Copyright 1989,1990, 1992 Digital Equipment Corporation All rights reserved. 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 and any copies shall not be provided to any other person. No title to or ownership of the software is hereby transferred. The information in this software is subject to change without notice. DIGITAL assumes no responsibility for the use, functionality or reliability of its software on equipment which is not supplied by DIGITAL. *********************************************************************/ #include struct A_RAB cc$rab = { RAB$C_BID, /* RB$BID RAB identifier */ RAB$C_BLN_SYNC, /* RB$BLN Syncronous RAB length (bytes) */ 0, /* User context */ 0, /* Internal stream identifier */ 0, /* Completion status code */ 0, /* Completion status value */ 0,0,0, /* Record file address */ 0, /* Record access mode */ 0, /* Key size (bytes) */ 0, /* Record processing option mask */ 0, /* User buffer size (bytes) */ 0, /* User buffer address */ 0, /* Record size */ 0, /* Record buffer address */ 0, /* Key buffer address */ 0, /* Key of reference */ 0, /* Multibuffer count */ 0, /* Multiblock count */ 0, /* Reserved */ 0, /* VFC control buffer address */ 0, /* FAB address */ 0, /* Virtual block number (VBN) or relative record number (RRN) */ 0,0,0,0,0, /* Reserved */ 0,0,0,0,0, 0,0,0,0,0, 0,0,0,0,0, 0,0,0,0,0, 0,0,0,0,0, 0,0,0,0,0, 0,0,0,0,0, 0,0,0,0,0, 0,0,0,0,0, 0,0,0,0,0, 0,0,0,0 }; struct S_RAB srab = { RAB$C_BID, /* RB$BID RAB identifier */ RAB$C_BLN_ASYNC,/* RB$BLN Asyncronous RAB length (bytes) */ 0, /* User context */ 0, /* Internal stream identifier */ 0, /* Completion status code */ 0, /* Completion status value */ 0,0,0, /* Record file address */ 0, /* Record access mode */ 0, /* Key size (bytes) */ 0, /* Record processing option mask */ 0, /* User buffer size (bytes) */ 0, /* User buffer address */ 0, /* Record size */ 0, /* Record buffer address */ 0, /* Key buffer address */ 0, /* Key of reference */ 0, /* Multibuffer count */ 0, /* Multiblock count */ 0, /* Reserved */ 0, /* VFC control buffer address */ 0, /* FAB address */ 0, /* Virtual block number (VBN) or relative record number (RRN) */ 0, /* Reserved */ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 };