12345678910111213141516171819202122232425262728 |
- /*****************************************************************************
- *
- * MODULE: OGR driver
- *
- * AUTHOR(S): Radim Blazek
- * Some updates by Martin Landa <landa.martin gmail.com>
- *
- * PURPOSE: DB driver for OGR sources
- *
- * COPYRIGHT: (C) 2004-2009 by the GRASS Development Team
- *
- * This program is free software under the GNU General Public
- * License (>=v2). Read the file COPYING that comes with GRASS
- * for details.
- *
- *****************************************************************************/
- /* cursor.c */
- cursor *alloc_cursor();
- void free_cursor(cursor *);
- /* describe.c */
- int describe_table(OGRLayerH, dbTable **, cursor *);
- /* error.c */
- void init_error(void);
|