added concrete implementations of putc(), getc(), getchar() and gets()
[tangerine.git] / workbench / classes / zune / calendar / calendar_private.h
blobfcf50104f02a0b954074cb4eb7bd268a277503aa
1 #ifndef _CALENDAR_PRIVATE_H_
2 #define _CALENDAR_PRIVATE_H_
4 #include <exec/types.h>
5 #include <utility/date.h>
6 #include <libraries/mui.h>
8 /*** Instance data **********************************************************/
9 struct Calendar_DATA
11 struct MUI_EventHandlerNode ehn;
12 struct ClockData clockdata;
13 STRPTR *daylabels;
14 STRPTR defdaylabels[12];
15 WORD cellwidth, base_cellwidth;
16 WORD cellheight, base_cellheight;
17 WORD mwday; /* weekday of 1st of month */
18 WORD old_mday;
19 LONG firstweekday;
22 #endif /* _CALENDAR_PRIVATE_H_ */