home *** CD-ROM | disk | FTP | other *** search
/ TOS Silver 2000 / TOS Silver 2000.iso / programm / MM2_DEV / S / TEST / ALERT.M < prev    next >
Encoding:
Text File  |  1994-01-18  |  274 b   |  16 lines

  1. MODULE Alert;
  2.  
  3. FROM EasyGEM0 IMPORT FormAlert, WrapAlert;
  4. IMPORT GEMDOS, PrgCtrl;
  5.  
  6. VAR c: CARDINAL;
  7.  
  8. BEGIN
  9.   FormAlert (2, "[1][Terminate via][GEMDOS|PrgCtrl]", c);
  10.   IF c = 2 THEN
  11.     PrgCtrl.TermProcess (-39);
  12.   ELSE
  13.     GEMDOS.Term (-39);
  14.   END
  15. END Alert.
  16.