[INTERPRETER]

* BUG: Synchronize the 'gambas.h' header with the internal date management 
  changes of rev. #5871.


git-svn-id: svn://localhost/gambas/trunk@5873 867c0c6c-44f3-4631-809d-bfa615b0a4ec
This commit is contained in:
Benoît Minisini 2013-10-12 07:11:39 +00:00
parent d309fe5598
commit b60772bfad

View file

@ -643,14 +643,14 @@ typedef
typedef typedef
struct { struct {
short year; int year;
short month; int month;
short day; int day;
short hour; int hour;
short min; int min;
short sec; int sec;
short weekday; int weekday;
short msec; int msec;
} }
GB_DATE_SERIAL; GB_DATE_SERIAL;