]> granicus.if.org Git - postgresql/blobdiff - src/include/access/gistscan.h
Update copyright to 2004.
[postgresql] / src / include / access / gistscan.h
index 3eb1eba6258062cfb99557295a73921675d1dffe..1897fc8d4420e99cc9fd1b6b860cd45793f7fd91 100644 (file)
@@ -1,20 +1,27 @@
 /*-------------------------------------------------------------------------
  *
- * gistscan.h--
- *    routines defined in access/gisr/gistscan.c
+ * gistscan.h
+ *       routines defined in access/gist/gistscan.c
  *
  *
+ * Portions Copyright (c) 1996-2004, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1994, Regents of the University of California
  *
- * rtscan.h,v 1.2 1995/06/14 00:06:58 jolly Exp
+ * $PostgreSQL: pgsql/src/include/access/gistscan.h,v 1.25 2004/08/29 04:13:03 momjian Exp $
  *
  *-------------------------------------------------------------------------
  */
 #ifndef GISTSCAN_H
+#define GISTSCAN_H
 
-#include "utils/rel.h"
-#include "storage/block.h"
-#include "storage/off.h"
+#include "access/relscan.h"
 
-void gistadjscans(Relation r, int op, BlockNumber blkno, OffsetNumber offnum);
+extern Datum gistbeginscan(PG_FUNCTION_ARGS);
+extern Datum gistrescan(PG_FUNCTION_ARGS);
+extern Datum gistmarkpos(PG_FUNCTION_ARGS);
+extern Datum gistrestrpos(PG_FUNCTION_ARGS);
+extern Datum gistendscan(PG_FUNCTION_ARGS);
+extern void gistadjscans(Relation r, int op, BlockNumber blkno, OffsetNumber offnum);
+extern void ReleaseResources_gist(void);
 
-#endif /* GISTSCAN_H */
+#endif   /* GISTSCAN_H */