~ubuntu-branches/ubuntu/hardy/postgresql-8.4/hardy-backports

« back to all changes in this revision

Viewing changes to src/bin/pg_dump/pg_backup_db.h

  • Committer: Bazaar Package Importer
  • Author(s): Martin Pitt
  • Date: 2009-03-20 12:00:13 UTC
  • Revision ID: james.westby@ubuntu.com-20090320120013-hogj7egc5mjncc5g
Tags: upstream-8.4~0cvs20090328
ImportĀ upstreamĀ versionĀ 8.4~0cvs20090328

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 *      Definitions for pg_backup_db.c
 
3
 *
 
4
 *      IDENTIFICATION
 
5
 *              $PostgreSQL$
 
6
 */
 
7
 
 
8
#ifndef PG_BACKUP_DB_H
 
9
#define PG_BACKUP_DB_H
 
10
 
 
11
#include "pg_backup_archiver.h"
 
12
 
 
13
extern int      ExecuteSqlCommandBuf(ArchiveHandle *AH, void *qry, size_t bufLen);
 
14
 
 
15
extern void StartTransaction(ArchiveHandle *AH);
 
16
extern void CommitTransaction(ArchiveHandle *AH);
 
17
 
 
18
#endif