/********************************************************************* rmsorg.c PDP-11 C Define RMS Organizations used 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. *********************************************************************/ #define RMS$ORG$IDX$CRE /* Indicate support for Indexed file organization CREATE operation */ #define RMS$ORG$IDX$DEL /* Indicate support for Indexed file organization DELETE operation */ #define RMS$ORG$IDX$FIN /* Indicate support for Indexed file organization FIND operation */ #define RMS$ORG$IDX$GET /* Indicate support for Indexed file organization GET operation */ #define RMS$ORG$IDX$PUT /* Indicate support for Indexed file organization PUT operation */ #define RMS$ORG$IDX$UPD /* Indicate support for Indexed file organization UPDATE operation */ #define RMS$ORG$REL$CRE /* Indicate support for Relative file organization CREATE operation */ #define RMS$ORG$REL$DEL /* Indicate support for Relative file organization DELETE operation */ #define RMS$ORG$REL$FIN /* Indicate support for Relative file organization FIND operation */ #define RMS$ORG$REL$GET /* Indicate support for Relative file organization GET operation */ #define RMS$ORG$REL$PUT /* Indicate support for Relative file organization PUT operation */ #define RMS$ORG$REL$UPD /* Indicate support for Relative file organization UPDATE operation */ #define RMS$ORG$SEQ$CRE /* Indicate support for Sequential file organization CREATE operation */ #define RMS$ORG$SEQ$DEL /* Indicate support for Sequential file organization DELETE operation */ #define RMS$ORG$SEQ$FIN /* Indicate support for Sequential file organization FIND operation */ #define RMS$ORG$SEQ$GET /* Indicate support for Sequential file organization GET operation */ #define RMS$ORG$SEQ$PUT /* Indicate support for Sequential file organization PUT operation */ #define RMS$ORG$SEQ$UPD /* Indicate support for Sequential file organization UPDATE operation */ #define RMS$ORG$DIR$CRE /* Indicate support for DIR file organization CREATE operation */ #define RMS$ORG$DIR$DEL /* Indicate support for DIR file organization DELETE operation */ #define RMS$ORG$DIR$FIN /* Indicate support for DIR file organization FIND operation */ #define RMS$ORG$DIR$GET /* Indicate support for DIR file organization GET operation */ #define RMS$ORG$DIR$PUT /* Indicate support for DIR file organization PUT operation */ #define RMS$ORG$DIR$UPD /* Indicate support for DIR file organization UPDATE operation */ #include