home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / pmos2002.zip / DEF / DUMPFILE.DEF < prev    next >
Text File  |  1996-10-16  |  1KB  |  37 lines

  1. DEFINITION MODULE DumpFile;
  2.  
  3.         (****************************************************************)
  4.         (*                                                              *)
  5.         (*   Debugging aid: writes data out to a file DUMP.$$$          *)
  6.         (*                                                              *)
  7.         (*      Programmer:     P. Moylan                               *)
  8.         (*      Last edited:    16 October 1996                         *)
  9.         (*      Status:         OK                                      *)
  10.         (*                                                              *)
  11.         (****************************************************************)
  12.  
  13. IMPORT SYSTEM;
  14.  
  15. PROCEDURE Dump (data: ARRAY OF SYSTEM.LOC);
  16.  
  17.     (* Writes the data to the dump file. *)
  18.  
  19. PROCEDURE DumpString (message: ARRAY OF CHAR);
  20.  
  21.     (* Writes a character string. *)
  22.  
  23. PROCEDURE DumpCard (value: CARDINAL);
  24.  
  25.     (* Converts the number to a text string and writes it to the dump file. *)
  26.  
  27. PROCEDURE DumpHex (value: ARRAY OF SYSTEM.LOC);
  28.  
  29.     (* Converts the value to a hexadecimal text string and writes it to the dump file. *)
  30.  
  31. PROCEDURE DumpEOL;
  32.  
  33.     (* Writes an "end of line" to the dump file. *)
  34.  
  35. END DumpFile.
  36.  
  37.