aboutsummaryrefslogtreecommitdiff
path: root/src/projects.h
diff options
context:
space:
mode:
authorKristian Evers <kristianevers@gmail.com>2018-02-02 00:03:43 +0100
committerGitHub <noreply@github.com>2018-02-02 00:03:43 +0100
commitdaf6150f90a530c17d86105dced87b19db8c0d59 (patch)
treeb4863a07ec5320a9242be4477a2b4a3fbcfdd790 /src/projects.h
parentc0099e5ad4515e4ee1d672328731b004071489f4 (diff)
parent56600aadd345a984c1f5a1f42b7932e67c9bee03 (diff)
downloadPROJ-daf6150f90a530c17d86105dced87b19db8c0d59.tar.gz
PROJ-daf6150f90a530c17d86105dced87b19db8c0d59.zip
Merge pull request #754 from mloskot/ml/remove-wince
Remove Windows CE cruft (wince/msvc80)
Diffstat (limited to 'src/projects.h')
-rw-r--r--src/projects.h12
1 files changed, 2 insertions, 10 deletions
diff --git a/src/projects.h b/src/projects.h
index f22ae3a5..41f4aa3c 100644
--- a/src/projects.h
+++ b/src/projects.h
@@ -97,14 +97,6 @@ typedef long pj_int32;
extern double hypot(double, double);
#endif
-#ifdef _WIN32_WCE
-# include <wce_stdlib.h>
-# include <wce_stdio.h>
-# define rewind wceex_rewind
-# define getenv wceex_getenv
-# define hypot _hypot
-#endif
-
/* If we still haven't got M_PI*, we rely on our own defines.
* For example, this is necessary when compiling with gcc and
* the -ansi flag.
@@ -136,11 +128,11 @@ extern double hypot(double, double);
#endif
/* Use WIN32 as a standard windows 32 bit declaration */
-#if defined(_WIN32) && !defined(WIN32) && !defined(_WIN32_WCE)
+#if defined(_WIN32) && !defined(WIN32)
# define WIN32
#endif
-#if defined(_WINDOWS) && !defined(WIN32) && !defined(_WIN32_WCE)
+#if defined(_WINDOWS) && !defined(WIN32)
# define WIN32
#endif