home *** CD-ROM | disk | FTP | other *** search
EPOC OPL Source | 1998-11-02 | 1.2 KB | 42 lines |
-
-
- rem ALARM.OXH version 1.01
- rem Header File for ALARM1.OPX
- rem (c)Copyright Otfried Cheong 1998
- rem See Readme.txt for conditions of use
-
- CONST KAlarmClockOnce& = 0
- CONST KAlarmClockNext24hours& = 1
- CONST KAlarmClockDaily& = 2
- CONST KAlarmClockWeekly& = 3
- CONST KAlarmClockWorkday& = 4
-
- CONST KAlarmNotSet& = 0
- CONST KAlarmSet& = 1
- CONST KAlarmDisabled& = 2
-
- CONST KAlarmSoundOn& = 0
- CONST KAlarmSoundOff& = 1
- CONST KAlarmQuietPeriod& = 2
-
- CONST KMaxAlarmMessage% = $80
- CONST KMaxAlarmSoundName% = $20
-
- DECLARE OPX ALARM1,&10000b94,$101
- AlmSetClockAlarm:(alarmNumber&,seconds&,message$,sound$,repeat&) : 1
- AlmAlarmState&:(alarmNumber&) : 2
- AlmAlarmEnable:(aEnable&, alarmNumber&) : 3
- AlmAlarmDelete:(alarmNumber&) : 4
- AlmQuietPeriodCancel: : 5
- AlmQuietPeriodUntil:(dtime&) : 6
- AlmQuietPeriodSet:(minutes&) : 7
- AlmSetAlarmSound:(aEnable&) : 8
- AlmAlarmSoundState&: : 9
- WldFindCity:(cityName$, callbackName$) : 10
- WldSunlight:(cityName$, sunrise&, sunset&, theday&) : 11
- WldHome$: : 12
- END DECLARE
-
-
-
-