summaryrefslogtreecommitdiff
path: root/src/3rdparty/ce-compat/ce_time.h
diff options
context:
space:
mode:
authorKai Koehne <kai.koehne@qt.io>2016-10-19 15:17:44 +0200
committerKai Koehne <kai.koehne@qt.io>2016-10-20 06:32:20 +0000
commitf774bac109684c4391cfae3e919eafb34666bf51 (patch)
tree8e33b570e49bfb619657d6776eaa5df60b2937ed /src/3rdparty/ce-compat/ce_time.h
parentc2b958dcc02730e54bbaa271d21f88ccb5e6945c (diff)
downloadqtscript-f774bac109684c4391cfae3e919eafb34666bf51.tar.gz
Remove ce-compat files
We do not support Windows CE anymore, and this is one less 3rd party license we do not need to document. Change-Id: I006d6c9bebd74421965c41e48a92bd9df66f6bd0 Reviewed-by: Simon Hausmann <simon.hausmann@qt.io>
Diffstat (limited to 'src/3rdparty/ce-compat/ce_time.h')
-rw-r--r--src/3rdparty/ce-compat/ce_time.h29
1 files changed, 0 insertions, 29 deletions
diff --git a/src/3rdparty/ce-compat/ce_time.h b/src/3rdparty/ce-compat/ce_time.h
deleted file mode 100644
index 6cd33e1..0000000
--- a/src/3rdparty/ce-compat/ce_time.h
+++ /dev/null
@@ -1,29 +0,0 @@
-#ifndef __CE_TIME_H__
-#define __CE_TIME_H__
-
-#if defined(_WIN32_WCE) && _WIN32_WCE >= 0x600
-/* we need to prototype the time functions for Windows CE >= 6.0 */
-#include <crtdefs.h>
-
-#if _WIN32_WCE < 0x800
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-struct tm;
-
-
-time_t time(time_t* timer);
-time_t mktime(struct tm *t);
-size_t strftime(char * const s, const size_t maxsize, const char * const format, const struct tm * const t);
-struct tm *localtime(const time_t *timer);
-
-#ifdef __cplusplus
-} /* closing brace for extern "C" */
-#endif
-
-#endif // _WIN32_WCE < 0x800
-
-#endif /* defined(_WIN32_WCE) && _WIN32_WCE >= 0x600 */
-
-#endif /* !defined(__CE_TIME_H__) */