From: Sandro Santilli Date: Thu, 30 Dec 2004 10:22:53 +0000 (+0000) Subject: moved some BBOX procs signatures from lwgeom_inout.c to lwgeom_pg.h X-Git-Tag: pgis_1_0_0RC1~115 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=175b49b4fe6abd86d1f152158cb365062bac1fcc;p=postgis moved some BBOX procs signatures from lwgeom_inout.c to lwgeom_pg.h git-svn-id: http://svn.osgeo.org/postgis/trunk@1189 b70326c6-7e19-0410-871a-916f4a2858ee --- diff --git a/lwgeom/lwgeom_inout.c b/lwgeom/lwgeom_inout.c index 410c03349..bf2cc7f82 100644 --- a/lwgeom/lwgeom_inout.c +++ b/lwgeom/lwgeom_inout.c @@ -33,9 +33,6 @@ void elog_ERROR(const char* string); Datum LWGEOM_in(PG_FUNCTION_ARGS); Datum LWGEOM_out(PG_FUNCTION_ARGS); -Datum LWGEOM_addBBOX(PG_FUNCTION_ARGS); -Datum LWGEOM_dropBBOX(PG_FUNCTION_ARGS); -Datum LWGEOM_getBBOX(PG_FUNCTION_ARGS); Datum LWGEOM_to_text(PG_FUNCTION_ARGS); Datum LWGEOM_to_bytea(PG_FUNCTION_ARGS); Datum LWGEOM_from_bytea(PG_FUNCTION_ARGS); diff --git a/lwgeom/lwgeom_pg.h b/lwgeom/lwgeom_pg.h index 19621960f..fa986f62f 100644 --- a/lwgeom/lwgeom_pg.h +++ b/lwgeom/lwgeom_pg.h @@ -53,5 +53,8 @@ Datum LWGEOM_force_multi(PG_FUNCTION_ARGS); Datum LWGEOMFromWKB(PG_FUNCTION_ARGS); Datum WKBFromLWGEOM(PG_FUNCTION_ARGS); +Datum LWGEOM_getBBOX(PG_FUNCTION_ARGS); +Datum LWGEOM_addBBOX(PG_FUNCTION_ARGS); +Datum LWGEOM_dropBBOX(PG_FUNCTION_ARGS); #endif // !defined _LWGEOM_PG_H 1