home *** CD-ROM | disk | FTP | other *** search
/ Gold Fish 3 / goldfish_volume_3.bin / files / util / boot / newalerthook / product-info < prev   
Encoding:
Fred Fish's Product-Info  |  1995-10-22  |  1.5 KB  |  72 lines

  1. # This file contains product information that can be used by
  2. # KingFisher 2.0 and other similar tools.
  3.  
  4. .name
  5. NewAlertHook
  6. .type
  7. System Patch
  8. .short
  9. Enhanced Alert display mechanism
  10. .description
  11. Many people don't understand Amiga system error codes displayed
  12. in the alerts.  These codes contain a lot of information and it's
  13. hard to learn what they mean.  This program tries to improve the
  14. alerts by adding the following information:
  15.  
  16.      - Name of program that caused the alert.
  17.      - Complete text description of the error.
  18.  
  19. NewAlertHook has to be installed by the AddModule utility (also
  20. included) by
  21.  
  22.       AddModule NewAlertHook INIT
  23.  
  24. The INIT switch causes NewAlertHook to initialize itself without
  25. rebooting the system.
  26. .version
  27. 40.3
  28. .date
  29. 1994.12.12
  30. .author
  31. Martin Mares
  32. .requirements
  33. Requires OS2.04+
  34. .distribution
  35. Copyrighted but Freely Redistributable
  36. .email
  37. mjsoft@k332.feld.cvut.cz>.
  38. .source
  39. Includes source in Assembler
  40. .docs
  41. NewAlertHook.doc
  42. AddModule.doc
  43. .described-by
  44. Dan Fish (daf@starfish.amigalib.com)
  45. .submittal
  46. Downloaded via ftp from wuarchive.wustl.edu.
  47. .aminet-dir
  48. util/boot
  49. .execute
  50. set choice `RequestChoice "NewAlertHook" "Please select an option" "View Readme" "View Doc 1" "View Doc 2" "Run Program" "Cancel"`
  51.  
  52. if $choice EQ "0"
  53.   quit 5
  54. endif
  55.  
  56. if $choice EQ "1"
  57.   MetaTool NewAlertH.readme TEXT
  58. endif
  59.  
  60. if $choice EQ "2"
  61.   MetaTool NewAlertHook.doc TEXT
  62. endif
  63.  
  64. if $choice EQ "3"
  65.   MetaTool AddModule.doc TEXT
  66. endif
  67.  
  68. if $choice EQ "4"
  69.   assign libs: Libs/ ADD
  70.   AddModule NewAlertHook INIT
  71. endif
  72.