local_proto.h 507 B

12345678910111213141516171819202122232425262728
  1. #if (GEOS_VERSION_MAJOR >= 3 && GEOS_VERSION_MINOR >= 3)
  2. #define GEOS_3_3
  3. #endif
  4. struct buf_contours
  5. {
  6. int inner_count;
  7. int outer;
  8. int *inner;
  9. };
  10. struct buf_contours_pts
  11. {
  12. int inner_count;
  13. struct line_pnts *oPoints;
  14. struct line_pnts **iPoints;
  15. };
  16. #ifdef HAVE_GEOS
  17. int geos_buffer(struct Map_info *, struct Map_info *,
  18. struct Map_info *, int, int, double,
  19. struct spatial_index *,
  20. struct line_cats *,
  21. struct buf_contours **,
  22. int *, int *, int, int);
  23. #endif