2
0

telephonymgrui.pp 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. {$MACRO ON}
  2. {$define Rsc := }
  3. (******************************************************************************
  4. *
  5. * Copyright (c) 2000 Palm, Inc. or its subsidiaries.
  6. * All rights reserved.
  7. *
  8. * File: TelephonyMgrUI.h
  9. *
  10. * Release: Palm OS SDK 4.0 (63220)
  11. *
  12. * Description:
  13. * This is the header
  14. *
  15. * History:
  16. * May 23, 2000 ARO Initial Release
  17. * May,30, 2000 PPL Add Pin code notification
  18. * Nov 11, 2000 PPL Remove unused staff
  19. * Dec 03, 2000 LFe add flags
  20. *
  21. *****************************************************************************)
  22. unit telephonymgrui;
  23. interface
  24. uses palmos;
  25. (***********************************************************************
  26. * Structure definition - to move to a public header file
  27. ***********************************************************************)
  28. const
  29. kTelNotifyErrorDetailsVersion = 1;
  30. telNotifyErrorEvent = Rsc('terr');
  31. telNotifyEnterCodeEvent = Rsc('tpin');
  32. kTelTryAgainBit = $00000001;
  33. kTelNoSetUpButtonBit = $00000002;
  34. kTelAutoTryAgainBit = $00000004;
  35. kTelAutoSetUpButtonBit = $00000008;
  36. type
  37. TelNotifyErrorDetailsType = record
  38. version: UInt16;
  39. error: Err;
  40. ioFlags: UInt32;
  41. messageP: PChar;
  42. end;
  43. TelNotifyErrorDetailsTag = TelNotifyErrorDetailsType;
  44. TelNotifyErrorDetailsPtr = ^TelNotifyErrorDetailsType;
  45. implementation
  46. end.