2
0

privaterecords.pp 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {$MACRO ON}
  2. (******************************************************************************
  3. *
  4. * Copyright (c) 1996-2000 Palm, Inc. or its subsidiaries.
  5. * All rights reserved.
  6. *
  7. * File: PrivateRecords.h
  8. *
  9. * Release: Palm OS SDK 4.0 (63220)
  10. *
  11. * Description:
  12. * This header file defines a generic private record maintainance dialogs, etc.
  13. *
  14. * History:
  15. * 6/23/99. Created by Craig Skinner
  16. *
  17. *****************************************************************************)
  18. unit privaterecords;
  19. interface
  20. uses palmos, coretraps;
  21. // Defines needed for hidden record visual determination.
  22. type
  23. privateRecordViewEnum = Enum;
  24. const
  25. showPrivateRecords = $00;
  26. maskPrivateRecords = Succ(showPrivateRecords);
  27. hidePrivateRecords = Succ(maskPrivateRecords);
  28. //-----------------------------------------------------------------------
  29. // Prototypes
  30. //-----------------------------------------------------------------------
  31. function SecSelectViewStatus: privateRecordViewEnum; syscall sysTrapSecSelectViewStatus;
  32. function SecVerifyPW(newSecLevel: privateRecordViewEnum): Boolean; syscall sysTrapSecVerifyPW;
  33. implementation
  34. end.