summaryrefslogtreecommitdiff
path: root/fpcsrc/packages/palmunits/src/privaterecords.pp
blob: e2cc1b613619a26151d0f12b7d047667fbfb91c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{$MACRO ON}

(******************************************************************************
 *
 * Copyright (c) 1996-2000 Palm, Inc. or its subsidiaries.
 * All rights reserved.
 *
 * File: PrivateRecords.h
 *
 * Release: Palm OS SDK 4.0 (63220)
 *
 * Description:
 *   This header file defines a generic private record maintainance dialogs, etc.
 *
 * History:
 *    6/23/99. Created by Craig Skinner
 *
 *****************************************************************************)

unit privaterecords;

interface

uses palmos, coretraps;

// Defines needed for hidden record visual determination.
type
  privateRecordViewEnum = Enum;

const
  showPrivateRecords = $00;
  maskPrivateRecords = Succ(showPrivateRecords);
  hidePrivateRecords = Succ(maskPrivateRecords);

//-----------------------------------------------------------------------
// Prototypes
//-----------------------------------------------------------------------

function SecSelectViewStatus: privateRecordViewEnum; syscall sysTrapSecSelectViewStatus;

function SecVerifyPW(newSecLevel: privateRecordViewEnum): Boolean; syscall sysTrapSecVerifyPW;

implementation

end.