home *** CD-ROM | disk | FTP | other *** search
/ Compendium Deluxe 2 / LSD and 17bit Compendium Deluxe - Volume II.iso / a / prog / amigae / stderr.lha / StdErr.readme < prev    next >
Encoding:
Text File  |  1994-09-07  |  1.6 KB  |  53 lines

  1. Short: Provide stderr port for E 3.0b
  2. Uploader: jvanriper@uncavx.unca.edu
  3. Author: Joseph E. Van Riper III
  4. Type: dev/e
  5. Long:
  6.  
  7. StdErr is an Amiga E module providing a flexible, durable,
  8. downright NICE standard error port, in an object oriented
  9. fashion (sorta).
  10.  
  11. You don't have to worry about global variables or arcane
  12. brew ha ha or whatever.. in fact, all the stderr commands
  13. are prefaced with 'err_', and otherwise look as closely like
  14. the standard Amiga E functions as possible (eg, err_WriteF
  15. is the function to write something to the stderr port).
  16.  
  17. Further, there's nothing to initialize!  StdErr handles it
  18. for you.  The only thing YOU have to do is make sure you
  19. call 'err_Dispose()' at the end of your program.
  20.  
  21. Be sure to either read the documentation or examine the
  22. example source code.
  23.  
  24. FEATURES:
  25.  
  26. Standard error port (รก la CONSOLE:).
  27. Error reports directed to a file (will automatically create
  28.   a header before the error, with date and time of error,
  29.   [err_New]).
  30. Automatic Fault/IoErr() handling (no more mysteries for your
  31.   users).
  32. Supports Workbench (err_Dispose is the key to this.. tells
  33.   the user how to close the window if it was opened).
  34. Direction of StdErr message may be changed at any time.
  35. Preface for Fault handling may be changed at any time (via
  36.   err_Name)
  37. Works with Amiga E 3.0b (for earlier versions of Amiga E,
  38.   you'll need to find an earlier version of StdErr to use as
  39.   a pmodule with EPP.. which isn't quite as slick as this
  40.   version).
  41.  
  42. THINGS TO DO:
  43.  
  44. Perhaps, when using a Workbench, open a window that can be
  45. closed by the gadget instead of having to press RETURN.
  46.  
  47. BUGS:
  48.  
  49. None noticed.
  50.  
  51. Should work on all normal Amiga computers.
  52.  
  53.