diff options
| author | sisyphus <sisyphus1@optusnet.com.au> | 2015-09-11 00:19:11 +1000 |
|---|---|---|
| committer | sisyphus <sisyphus1@optusnet.com.au> | 2015-09-11 00:19:11 +1000 |
| commit | cfc9fd601d65e8acc5153ae053a7fb04a8a800df (patch) | |
| tree | c897d1dd7ba1ea2fa349372b9561d2464e32d0cf | |
| parent | 38d4c6d3a946f041ae6c4e25b96cd4c04d9db13f (diff) | |
| download | PROJ-cfc9fd601d65e8acc5153ae053a7fb04a8a800df.tar.gz PROJ-cfc9fd601d65e8acc5153ae053a7fb04a8a800df.zip | |
win32 PVALUE issue
| -rw-r--r-- | src/projects.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/projects.h b/src/projects.h index ac95f69d..fe6a44c6 100644 --- a/src/projects.h +++ b/src/projects.h @@ -156,7 +156,7 @@ typedef struct { double x, y; } XY; typedef struct { double lam, phi; } LP; #endif -typedef union { double f; int i; char *s; } PVALUE; +typedef union { double f; int i; char *s; } PROJVALUE; struct PJconsts; struct PJ_LIST { @@ -395,7 +395,7 @@ void set_rtodms(int, int); char *rtodms(char *, double, int, int); double adjlon(double); double aacos(projCtx,double), aasin(projCtx,double), asqrt(double), aatan2(double, double); -PVALUE pj_param(projCtx ctx, paralist *, const char *); +PROJVALUE pj_param(projCtx ctx, paralist *, const char *); paralist *pj_mkparam(char *); int pj_ell_set(projCtx ctx, paralist *, double *, double *); int pj_datum_set(projCtx,paralist *, PJ *); |
