aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/cal_struct.h
diff options
context:
space:
mode:
authorCraig Small <csmall@src.gnome.org>1998-02-10 10:07:15 +0800
committerCraig Small <csmall@src.gnome.org>1998-02-10 10:07:15 +0800
commite97cbbe9d7bef12023e2e2b6a92380bcadb9a17e (patch)
tree39987a5019bcb662bc768e0696f5d5a4b0565d39 /calendar/gui/cal_struct.h
parente362a4d4aeb1830a7c39a17d4cca86c85cf62246 (diff)
downloadgsoc2013-evolution-e97cbbe9d7bef12023e2e2b6a92380bcadb9a17e.tar.gz
gsoc2013-evolution-e97cbbe9d7bef12023e2e2b6a92380bcadb9a17e.tar.zst
gsoc2013-evolution-e97cbbe9d7bef12023e2e2b6a92380bcadb9a17e.zip
added repeat values
svn path=/trunk/; revision=9
Diffstat (limited to 'calendar/gui/cal_struct.h')
-rw-r--r--calendar/gui/cal_struct.h19
1 files changed, 16 insertions, 3 deletions
diff --git a/calendar/gui/cal_struct.h b/calendar/gui/cal_struct.h
index 77420cf9ff..411036c7aa 100644
--- a/calendar/gui/cal_struct.h
+++ b/calendar/gui/cal_struct.h
@@ -1,14 +1,27 @@
+#define MAX_SZ 30
+
+enum RepeatType {
+ Single,
+ Days,
+ Months,
+ WeekDays,
+ MonthDays
+};
+
+
struct actionitem {
char date[MAX_SZ];
- char time[MAX_SZ];
-}
+ int time; /* Minutes past midnight */
+};
struct event {
struct actionitem start;
struct actionitem end;
+ enum RepeatType repeat;
+ int repeatcount;
char description[MAX_SZ];
char subtype[MAX_SZ];
GList *properties;
-}
+};
2005-04-04 20:52:34 +0800 Add ipv6gen 0.8, iPv6 prefix generator.' href='/~lantw44/cgit/freebsd-ports/commit/net-mgmt/ipv6gen/Makefile?id=c6527a496cdf8e5d2dd8f7067bb44ca57aa07aed'>c6527a496cdf
aceb0084431d
c6527a496cdf

aceb0084431d
49056bafcba5
aceb0084431d

f29a218fcd1f

c6527a496cdf

aceb0084431d


c6527a496cdf

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
                       
                   
                        



                                     
                     

         
                                
                   

                                                                   

                      

           


                                                                                           

                      
PORTNAME=   ipv6gen
PORTVERSION=    1.0
CATEGORIES= net-mgmt

MAINTAINER= vlada@devnull.cz
COMMENT=    IPv6 prefix generator

LICENSE=    GPLv2

NO_BUILD=
USES=       perl5 shebangfix
USE_PERL5=  run
SHEBANG_FILES=  ipv6gen.pl check-overlap.pl
PLIST_FILES=    bin/ipv6gen bin/check-overlap man/man1/ipv6gen.1.gz
USE_GITHUB= yes
GH_ACCOUNT= vladak

do-install:
    ${INSTALL_SCRIPT} ${WRKSRC}/ipv6gen.pl ${STAGEDIR}${PREFIX}/bin/ipv6gen
    ${INSTALL_SCRIPT} ${WRKSRC}/check-overlap.pl ${STAGEDIR}${PREFIX}/bin/check-overlap
    ${INSTALL_MAN} ${WRKSRC}/ipv6gen.1 ${STAGEDIR}${PREFIX}/man/man1/ipv6gen.1

.include <bsd.port.mk>