fatalalert.pp 800 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. {$MACRO ON}
  2. (******************************************************************************
  3. *
  4. * Copyright (c) 1994-2000 Palm, Inc. or its subsidiaries.
  5. * All rights reserved.
  6. *
  7. * File: FatalAlert.h
  8. *
  9. * Release: Palm OS SDK 4.0 (63220)
  10. *
  11. * Description:
  12. * This file defines the system Fatal Alert support.
  13. *
  14. * History:
  15. * September 12, 1994 Created by Art Lamb
  16. *
  17. *****************************************************************************)
  18. unit fatalalert;
  19. interface
  20. uses palmos, coretraps;
  21. // Value returned by SysFatalAlert
  22. const
  23. fatalReset = 0;
  24. fatalEnterDebugger = 1;
  25. fatalDoNothing = $FFFF;
  26. function SysFatalAlert(const msg: PChar): UInt16; syscall sysTrapSysFatalAlert;
  27. procedure SysFatalAlertInit; syscall sysTrapSysFatalAlertInit;
  28. implementation
  29. end.