1 #ifndef CLIB_DATEBROWSER_PROTOS_H 2 #define CLIB_DATEBROWSER_PROTOS_H 3 4 /* 5 datebrowser.gadget C prototypes 6 7 Copyright © 2002 The MorphOS Development Team, All Rights Reserved. 8 */ 9 10 #ifndef INTUITION_INTUITION_H 11 # include <intuition/intuition.h> 12 #endif 13 14 #ifndef INTUITION_CLASSES_H 15 # include <intuition/classes.h> 16 #endif 17 18 19 #ifdef __cplusplus 20 extern "C" { 21 #endif /* __cplusplus */ 22 23 Class *DATEBROWSER_GetClass( VOID ); 24 UWORD JulianWeekDay( ULONG day, ULONG month, LONG year ); 25 UWORD JulianMonthDays( ULONG month, LONG year ); 26 BOOL JulianLeapYear( LONG year ); 27 28 #ifdef __cplusplus 29 } 30 #endif /* __cplusplus */ 31 32 33 #endif /* CLIB_DATEBROWSER_PROTOS_H */