/usr/include/pi-datebook.h is in libpisock-dev 0.12.5-dfsg-2build2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 | /*
* $Id: pi-datebook.h,v 1.23 2006/11/22 22:52:25 adridg Exp $
*
* pi-datebook.h - Support for Palm "Classic" Datebook application
*
* This library is free software; you can redistribute it and/or modify it
* under the terms of the GNU Library General Public License as published by
* the Free Software Foundation; either version 2 of the License, or (at
* your option) any later version.
*
* This library is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library
* General Public License for more details.
*
* You should have received a copy of the GNU Library General Public License
* along with this library; if not, write to the Free Software Foundation,
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#ifndef _PILOT_DATEBOOK_H_
#define _PILOT_DATEBOOK_H_
#include <time.h>
#include "pi-appinfo.h"
#include "pi-buffer.h"
#ifdef __cplusplus
extern "C" {
#endif
typedef enum {
datebook_v1,
} datebookType;
extern char *DatebookAlarmTypeNames[];
extern char *DatebookRepeatTypeNames[];
enum alarmTypes { advMinutes, advHours, advDays };
enum repeatTypes {
repeatNone,
repeatDaily,
repeatWeekly,
repeatMonthlyByDay,
repeatMonthlyByDate,
repeatYearly
};
/* This enumeration normally isn't of much use, as you can get just
as useful results by taking the value mod 7 to get the day of the
week, and div 7 to get the week value, with week 4 (of 0) meaning
the last, be it fourth or fifth.
*/
enum DayOfMonthType {
dom1stSun, dom1stMon, dom1stTue, dom1stWen, dom1stThu,
dom1stFri,
dom1stSat,
dom2ndSun, dom2ndMon, dom2ndTue, dom2ndWen, dom2ndThu,
dom2ndFri,
dom2ndSat,
dom3rdSun, dom3rdMon, dom3rdTue, dom3rdWen, dom3rdThu,
dom3rdFri,
dom3rdSat,
dom4thSun, dom4thMon, dom4thTue, dom4thWen, dom4thThu,
dom4thFri,
dom4thSat,
domLastSun, domLastMon, domLastTue, domLastWen, domLastThu,
domLastFri,
domLastSat
};
typedef struct Appointment {
int event; /* Is this a timeless event? */
struct tm begin, end; /* When does this appointment start and end? */
int alarm; /* Should an alarm go off? */
int advance; /* How far in advance should it be? */
int advanceUnits; /* What am I measuring the advance in? */
enum repeatTypes repeatType; /* How should I repeat this appointment, if at all? */
int repeatForever; /* Do repetitions end at some date? */
struct tm repeatEnd; /* What date do they end on? */
int repeatFrequency; /* Should I skip an interval for each repetition? */
enum DayOfMonthType repeatDay; /* for repeatMonthlyByDay */
int repeatDays[7]; /* for repeatWeekly */
int repeatWeekstart; /* What day did the user decide starts the week? */
int exceptions; /* How many repetitions are their to be ignored? */
struct tm *exception; /* What are they? */
char *description; /* What is the description of this appointment? */
char *note; /* Is there a note to go along with it? */
} Appointment_t;
typedef struct AppointmentAppInfo {
struct CategoryAppInfo category;
int startOfWeek;
} AppointmentAppInfo_t;
extern void free_Appointment
PI_ARGS((struct Appointment *));
extern int unpack_Appointment
PI_ARGS((struct Appointment *, const pi_buffer_t *record, datebookType type));
extern int pack_Appointment
PI_ARGS((const struct Appointment *, pi_buffer_t *record, datebookType type));
extern int unpack_AppointmentAppInfo
PI_ARGS((struct AppointmentAppInfo *, const unsigned char *AppInfo,
size_t len));
extern int pack_AppointmentAppInfo
PI_ARGS((const struct AppointmentAppInfo *, unsigned char *AppInfo,
size_t len));
#ifdef __cplusplus
};
#endif
#endif /* _PILOT_DATEBOOK_H_ */
|