aboutsummaryrefslogtreecommitdiff
path: root/src/projects.h
diff options
context:
space:
mode:
authorFrank Warmerdam <warmerdam@pobox.com>2001-04-05 04:24:10 +0000
committerFrank Warmerdam <warmerdam@pobox.com>2001-04-05 04:24:10 +0000
commit947991b147dc555a615c54d53359024db56821ab (patch)
tree6eefade820c8c0f9f79946b7e311af6fe28ac6cc /src/projects.h
parent312d027ad0b87c794f5cd479e122c4f29abadbfc (diff)
downloadPROJ-947991b147dc555a615c54d53359024db56821ab.tar.gz
PROJ-947991b147dc555a615c54d53359024db56821ab.zip
added prototypes for new functions, and PJ_VERSION
git-svn-id: http://svn.osgeo.org/metacrs/proj/trunk@929 4e78687f-474d-0410-85f9-8d5e500ac6b2
Diffstat (limited to 'src/projects.h')
-rw-r--r--src/projects.h11
1 files changed, 10 insertions, 1 deletions
diff --git a/src/projects.h b/src/projects.h
index d102c73d..ffbc27e2 100644
--- a/src/projects.h
+++ b/src/projects.h
@@ -28,6 +28,9 @@
******************************************************************************
*
* $Log$
+ * Revision 1.8 2001/04/05 04:24:10 warmerda
+ * added prototypes for new functions, and PJ_VERSION
+ *
* Revision 1.7 2001/02/07 17:55:05 warmerda
* Cleaned up various warnings when compiled with -Wall.
*
@@ -51,6 +54,10 @@
extern "C" {
#endif
+/* Try to update this every version! */
+
+#define PJ_VERSION 443
+
#ifndef NULL
# define NULL 0
#endif
@@ -317,11 +324,13 @@ int pj_apply_gridshift( const char *, int,
long point_count, int point_offset,
double *x, double *y, double *z );
void pj_deallocate_grids();
+int pj_is_latlong(PJ *);
-
void pj_pr_list(PJ *);
void pj_free(PJ *);
PJ *pj_init(int, char **);
+PJ *pj_init_plus(const char *);
+PJ *pj_latlong_from_proj( PJ *);
void *pj_malloc(size_t);
void pj_dalloc(void *);
char *pj_strerrno(int);