home *** CD-ROM | disk | FTP | other *** search
Fred Fish's Product-Info | 1995-10-22 | 1.5 KB | 72 lines |
- # This file contains product information that can be used by
- # KingFisher 2.0 and other similar tools.
-
- .name
- NewAlertHook
- .type
- System Patch
- .short
- Enhanced Alert display mechanism
- .description
- Many people don't understand Amiga system error codes displayed
- in the alerts. These codes contain a lot of information and it's
- hard to learn what they mean. This program tries to improve the
- alerts by adding the following information:
-
- - Name of program that caused the alert.
- - Complete text description of the error.
-
- NewAlertHook has to be installed by the AddModule utility (also
- included) by
-
- AddModule NewAlertHook INIT
-
- The INIT switch causes NewAlertHook to initialize itself without
- rebooting the system.
- .version
- 40.3
- .date
- 1994.12.12
- .author
- Martin Mares
- .requirements
- Requires OS2.04+
- .distribution
- Copyrighted but Freely Redistributable
- .email
- mjsoft@k332.feld.cvut.cz>.
- .source
- Includes source in Assembler
- .docs
- NewAlertHook.doc
- AddModule.doc
- .described-by
- Dan Fish (daf@starfish.amigalib.com)
- .submittal
- Downloaded via ftp from wuarchive.wustl.edu.
- .aminet-dir
- util/boot
- .execute
- set choice `RequestChoice "NewAlertHook" "Please select an option" "View Readme" "View Doc 1" "View Doc 2" "Run Program" "Cancel"`
-
- if $choice EQ "0"
- quit 5
- endif
-
- if $choice EQ "1"
- MetaTool NewAlertH.readme TEXT
- endif
-
- if $choice EQ "2"
- MetaTool NewAlertHook.doc TEXT
- endif
-
- if $choice EQ "3"
- MetaTool AddModule.doc TEXT
- endif
-
- if $choice EQ "4"
- assign libs: Libs/ ADD
- AddModule NewAlertHook INIT
- endif
-