-- File DBStoragePrint.mesa
-- Last edited by MBrown on August 2, 1980  10:14 PM


  DIRECTORY
    DBCommon USING[DBPage];

DBStoragePrint: DEFINITIONS = BEGIN

  PrintPage: PROC[--dbPage--DBCommon.DBPage, --p--LONG POINTER, --fullPrint--BOOLEAN];
    -- Prints a formatted representation of page dbPage, read-accessible via pointer p,
    --using IODefs for output.

END.--DBStoragePrint


--  Module History

Created by MBrown on June 1, 1980  10:03 PM

Changed by MBrown on August 2, 1980  10:15 PM
-- Make it PrintPage, not PrintVecPage; hence no VecPageP is needed here.