(svn r6560) - Codechange: Minor fix; add missing #include guards and comments, and correct svn properties on bmp.[ch]

This commit is contained in:
peter1138
2006-09-28 18:42:35 +00:00
parent d525bf4278
commit 192137258a
22 changed files with 41 additions and 17 deletions

5
date.h
View File

@@ -1,5 +1,8 @@
/* $Id$ */
#ifndef DATE_H
#define DATE_H
/**
* 1 day is 74 ticks; _date_fract used to be uint16 and incremented by 885. On
* an overflow the new day begun and 65535 / 885 = 74.
@@ -52,3 +55,5 @@ extern DateFract _date_fract;
void SetDate(Date date);
void ConvertDateToYMD(Date date, YearMonthDay *ymd);
Date ConvertYMDToDate(Year year, Month month, Day day);
#endif /* DATE_H */