home *** CD-ROM | disk | FTP | other *** search
- /*
- * month.h : Data types and external defs for month stuff
- *
- * George Ferguson (ferguson@cs.rochester.edu), 27 Oct 1990.
- *
- * $Id: month.h,v 1.1 90/11/07 11:23:04 ferguson Exp $
- */
-
- typedef struct _DayButtonData {
- int day,month,year;
- Pixmap pixmap;
- Widget button; /* Command */
- } DayButtonData;
- typedef struct _MonthFormData {
- int month,year;
- DayButtonData *days[42];
- Widget label; /* Label */
- Widget form; /* Form */
- } MonthFormData;
-
- extern MonthFormData *createMonthFormData();
- extern void setMonthFormData();
- extern void selectDay();
-