home *** CD-ROM | disk | FTP | other *** search
/ Aminet 33 / Aminet 33 - October 1999.iso / Aminet / dev / gui / ClassFree_src.lha / ClassFree_src / CFlistviewclass / debug.doc < prev    next >
Encoding:
Text File  |  1998-06-22  |  1.8 KB  |  89 lines

  1.  
  2.  NAME
  3.       DLopencon - Open debug console.
  4.  
  5.  SYNOPSIS
  6.       console = DLopencon()
  7.  
  8.       APTR DLopencon(void);
  9.  
  10.  FUNCTION
  11.       This opens a console window and returns an abstact pointer
  12.       to it. This pointer must be suplied as the first argument
  13.       to other debug.lib functions.
  14.  
  15.  INPUTS
  16.       None
  17.  
  18.  RESULTS
  19.       A pointer to the debug.lib console.
  20.  
  21.  BUGS
  22.       None (they are all features, as they say.. ;)
  23.  
  24.  SEE ALSO
  25.  
  26.       DLclosecon()
  27.  
  28. -
  29.  
  30.  NAME
  31.       DLprintf() - Print formated output to debug.lib console.
  32.  
  33.  SYNOPSIS
  34.       DLprintf( console, fmt, ...)
  35.  
  36.       void DLprintf( APTR, STRPTR, ...);
  37.  
  38.  FUNCTION
  39.       Formats non-float arguments and prints them to the
  40.       debug.lib console window.
  41.  
  42.  INPUTS
  43.       console   - The abstract pointer returned by previous
  44.                   call to DLopencon().
  45.       fmt       - exec RawDoFmt()-like formatstring.
  46.  
  47.  RESULTS
  48.       String is printed.
  49.  
  50.  NOTES
  51.       This call is executed syncronously and therefore adds
  52.       a certain amount of overhead to the function in which
  53.       it is used. For input handlers such as a the gadget
  54.       class handleinput method usage should be kept to an
  55.       minimum. It is possible that the handler will fail to
  56.       process some events, and this could have unexpected
  57.       results, i.e. guru..
  58.  
  59.  SEE ALSO
  60.       RawDoFmt(), A book on C stdio.
  61.  
  62.  
  63. -
  64.  
  65.  NAME
  66.       DLclosecon - Close a debug.lib console.
  67.  
  68.  SYNOPSIS
  69.       DLclosecon( console)
  70.  
  71.       void DLclosecon( APTR);
  72.  
  73.  FUNCTION
  74.       When you are done using the console you must
  75.       use this function to close it.
  76.  
  77.  INPUTS
  78.       console  - Abtract debug.lib console pointer
  79.                  returned by call to DLopencon.
  80.  
  81.  RESULTS
  82.       The debug.lib console is closed.
  83.  
  84.  BUGS
  85.       None (How hard can closing a window be.. :)
  86.  
  87.  SEE ALSO
  88.       DLopencon()
  89.