proto.h 759 B

12345678910111213141516171819202122232425262728
  1. /*****************************************************************************
  2. *
  3. * MODULE: OGR driver
  4. *
  5. * AUTHOR(S): Radim Blazek
  6. * Some updates by Martin Landa <landa.martin gmail.com>
  7. *
  8. * PURPOSE: DB driver for OGR sources
  9. *
  10. * COPYRIGHT: (C) 2004-2009 by the GRASS Development Team
  11. *
  12. * This program is free software under the GNU General Public
  13. * License (>=v2). Read the file COPYING that comes with GRASS
  14. * for details.
  15. *
  16. *****************************************************************************/
  17. /* cursor.c */
  18. cursor *alloc_cursor();
  19. void free_cursor(cursor *);
  20. /* describe.c */
  21. int describe_table(OGRLayerH, dbTable **, cursor *);
  22. /* error.c */
  23. void init_error(void);