summaryrefslogtreecommitdiff
path: root/src/interfaces/ecpg/include/ecpglib.h
diff options
context:
space:
mode:
authorMichael Meskes <meskes@postgresql.org>2010-01-26 09:07:32 +0000
committerMichael Meskes <meskes@postgresql.org>2010-01-26 09:07:32 +0000
commitaa6ac352215d435b277711f85985d00a07a5c590 (patch)
tree9034ebed7c71dd9a0ed8e307f8e8ce92c8cb010e /src/interfaces/ecpg/include/ecpglib.h
parent525d2cbba2531f15649714121f54620738ffcacb (diff)
Applied patch by Boszormenyi Zoltan <zb@cybertec.at> to add out-of-scope cursor support to native mode.
Diffstat (limited to 'src/interfaces/ecpg/include/ecpglib.h')
-rw-r--r--src/interfaces/ecpg/include/ecpglib.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/interfaces/ecpg/include/ecpglib.h b/src/interfaces/ecpg/include/ecpglib.h
index f301de986ad..775fe7a6e25 100644
--- a/src/interfaces/ecpg/include/ecpglib.h
+++ b/src/interfaces/ecpg/include/ecpglib.h
@@ -1,7 +1,7 @@
/*
* this is a small part of c.h since we don't want to leak all postgres
* definitions into ecpg programs
- * $PostgreSQL: pgsql/src/interfaces/ecpg/include/ecpglib.h,v 1.81 2010/01/15 10:44:36 meskes Exp $
+ * $PostgreSQL: pgsql/src/interfaces/ecpg/include/ecpglib.h,v 1.82 2010/01/26 09:07:31 meskes Exp $
*/
#ifndef _ECPGLIB_H
@@ -85,6 +85,9 @@ void ECPGset_noind_null(enum ECPGttype, void *);
bool ECPGis_noind_null(enum ECPGttype, void *);
bool ECPGdescribe(int, int, bool, const char *, const char *, ...);
+void ECPGset_var(int, void *, int);
+void *ECPGget_var(int number);
+
/* dynamic result allocation */
void ECPGfree_auto_mem(void);