blob: bae36d1b1c924015a64db77aad9fbdccbf7d31ff (
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
|
{$MACRO ON}
(******************************************************************************
*
* Copyright (c) 1994-2000 Palm, Inc. or its subsidiaries.
* All rights reserved.
*
* File: SelDay.h
*
* Release: Palm OS SDK 4.0 (63220)
*
* Description:
* This file defines the date picker month object's structures
* and routines.
*
* History:
* November 10, 1994 Created by Roger Flores
*
*****************************************************************************)
unit selday;
interface
uses palmos, coretraps, datetime, day;
const
daySelectorMinYear = firstYear;
daySelectorMaxYear = lastYear;
function SelectDayV10(var month, day, year: Int16; const title: PChar): Boolean; syscall sysTrapSelectDayV10;
function SelectDay(const selectDayBy: SelectDayType; var month, day, year: Int16; const title: PChar): Boolean; syscall sysTrapSelectDay;
implementation
end.
|