summaryrefslogtreecommitdiffstats
path: root/thirdparties/wince/include/wcecompat/sys/timeb.h
diff options
context:
space:
mode:
Diffstat (limited to 'thirdparties/wince/include/wcecompat/sys/timeb.h')
-rw-r--r--thirdparties/wince/include/wcecompat/sys/timeb.h52
1 files changed, 52 insertions, 0 deletions
diff --git a/thirdparties/wince/include/wcecompat/sys/timeb.h b/thirdparties/wince/include/wcecompat/sys/timeb.h
new file mode 100644
index 0000000..722cedb
--- /dev/null
+++ b/thirdparties/wince/include/wcecompat/sys/timeb.h
@@ -0,0 +1,52 @@
+/* wcecompat: Windows CE C Runtime Library "compatibility" library.
+ *
+ * Copyright (C) 2001-2002 Essemer Pty Ltd. All rights reserved.
+ * http://www.essemer.com.au/
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ */
+
+
+#ifndef __wcecompat__SYS__TIMEB_H__
+#define __wcecompat__SYS__TIMEB_H__
+
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+
+#include <time.h>
+
+
+struct timeb
+{
+ time_t time;
+ unsigned short millitm;
+ short timezone;
+ short dstflag;
+};
+
+
+int __cdecl _ftime(struct timeb *tp);
+#define ftime _ftime
+
+
+#ifdef __cplusplus
+}
+#endif
+
+
+#endif // __wcecompat__SYS__TIMEB_H__
OpenPOWER on IntegriCloud