project_files/hwc/rtl/types.h
branchwebgl
changeset 8047 25a4daa6473c
parent 8044 796f2653f21d
child 8050 c82b68016c68
--- a/project_files/hwc/rtl/types.h	Tue Nov 13 22:24:30 2012 +0100
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,39 +0,0 @@
-#ifndef _TYPES_H_
-#define _TYPES_H_
-
-#include "pas2c.h"
-
-/*
- * Not very useful currently
- */
-
-typedef double TDate;
-typedef double TTime;
-typedef double TDateTime;
-typedef string255 TMonthNameArray[13];
-typedef string255 TWeekNameArray[8];
-
-typedef struct {
-    Byte CurrencyFormat;
-    Byte NegCurrFormat;
-    Char ThousandSeparator;
-    Char DecimalSeparator;
-    Byte CurrencyDecimals;
-    Char DateSeparator;
-    Char TimeSeparator;
-    Char ListSeparator;
-    string255 CurrencyString;
-    string255 ShortDateFormat;
-    string255 LongDateFormat;
-    string255 TimeAMString;
-    string255 TimePMString;
-    string255 ShortTimeFormat;
-    string255 LongTimeFormat;
-    TMonthNameArray ShortMonthNames;
-    TMonthNameArray LongMonthNames;
-    TWeekNameArray ShortDayNames;
-    TWeekNameArray LongDayNames;
-    Word TwoDigitYearCenturyWindow;
-}TFormatSettings;
-
-#endif