]> granicus.if.org Git - postgresql/blob - src/include/access/gistscan.h
80fa8e069828358d4626ae51b4cb3671b142f4e7
[postgresql] / src / include / access / gistscan.h
1 /*-------------------------------------------------------------------------
2  *
3  * gistscan.h
4  *        routines defined in access/gist/gistscan.c
5  *
6  *
7  * Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group
8  * Portions Copyright (c) 1994, Regents of the University of California
9  *
10  * $PostgreSQL: pgsql/src/include/access/gistscan.h,v 1.30 2006/07/13 16:49:19 momjian Exp $
11  *
12  *-------------------------------------------------------------------------
13  */
14 #ifndef GISTSCAN_H
15 #define GISTSCAN_H
16
17 #include "access/relscan.h"
18
19 extern Datum gistbeginscan(PG_FUNCTION_ARGS);
20 extern Datum gistrescan(PG_FUNCTION_ARGS);
21 extern Datum gistmarkpos(PG_FUNCTION_ARGS);
22 extern Datum gistrestrpos(PG_FUNCTION_ARGS);
23 extern Datum gistendscan(PG_FUNCTION_ARGS);
24
25 #endif   /* GISTSCAN_H */