home *** CD-ROM | disk | FTP | other *** search
/ The Datafile PD-CD 4 / DATAFILE_PDCD4.iso / utilities / utilsd / evntshell / Docs / Debug < prev    next >
Encoding:
Text File  |  1993-04-26  |  1.3 KB  |  60 lines

  1. PROCshell_TraceExit
  2. Params =>
  3.          none
  4.  
  5. Closes the trace file if it is open. Normally
  6. only called by the EvntShell library when the
  7. application closes down.
  8.  
  9. --------------------------------------------------------
  10.  
  11. PROCshell_Tracef0()
  12. Params =>
  13.          str trace output
  14.  
  15. Writes the given string into the trace file if
  16. it is open. If <PROCshell_TraceInit> was called
  17. with a null filename ("") then the trace output
  18. will be broadcast using Acorn's message system
  19. to be picked up and displayed by !ShellDBug if
  20. it is running.
  21.  
  22. --------------------------------------------------------
  23.  
  24. PROCshell_TraceInit()
  25. Params =>
  26.          str file name for trace output
  27.              (can be "" - see below)
  28.  
  29. Initialises the trace file (must be called
  30. before any other trace functions). If the
  31. file name is "" then no file is opened, trace
  32. output is broadcast as a user message to be
  33. displayed by !ShellDBug.
  34.  
  35. --------------------------------------------------------
  36.  
  37. FNshell_TraceIsOn
  38. Params  =>
  39.           none
  40.  
  41.         <=
  42.           TRUE if trace is enabled, FALSE otherwise.
  43.  
  44. --------------------------------------------------------
  45.  
  46. PROCshell_TraceOff
  47. Params  =>
  48.           none
  49.  
  50. Turns off trace output.
  51.  
  52. --------------------------------------------------------
  53.  
  54. PROCshell_TraceOn
  55. Params  =>
  56.           none
  57.  
  58. Turns on trace output.
  59.  
  60. --------------------------------------------------------