summaryrefslogtreecommitdiff
path: root/psycopg/connection.h
diff options
context:
space:
mode:
authorDaniele Varrazzo <daniele.varrazzo@gmail.com>2010-10-11 13:03:37 +0100
committerDaniele Varrazzo <daniele.varrazzo@gmail.com>2010-11-05 09:34:48 +0000
commit56c02b0f94c3922f7d998b8abf8616d1ee8160c9 (patch)
tree71a8041fda28bfed6f15893774d4f244935f6c3c /psycopg/connection.h
parent09983db6ed3aca1856e550c8a32c51831cd3c618 (diff)
downloadpsycopg2-56c02b0f94c3922f7d998b8abf8616d1ee8160c9.tar.gz
Added tpc_recover method.
Diffstat (limited to 'psycopg/connection.h')
-rw-r--r--psycopg/connection.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/psycopg/connection.h b/psycopg/connection.h
index 7d2f66c..85e2d26 100644
--- a/psycopg/connection.h
+++ b/psycopg/connection.h
@@ -135,6 +135,7 @@ HIDDEN int conn_poll(connectionObject *self);
HIDDEN int conn_tpc_begin(connectionObject *self, XidObject *xid);
HIDDEN int conn_tpc_command(connectionObject *self,
const char *cmd, XidObject *xid);
+HIDDEN PyObject *conn_tpc_recover(connectionObject *self);
/* exception-raising macros */
#define EXC_IF_CONN_CLOSED(self) if ((self)->closed > 0) { \