summaryrefslogtreecommitdiff
path: root/src/bin/psql/print.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/bin/psql/print.h')
-rw-r--r--src/bin/psql/print.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/bin/psql/print.h b/src/bin/psql/print.h
index f97bf9ead52..e0ce3401d38 100644
--- a/src/bin/psql/print.h
+++ b/src/bin/psql/print.h
@@ -3,13 +3,17 @@
*
* Copyright 2000 by PostgreSQL Global Development Group
*
- * $Header: /cvsroot/pgsql/src/bin/psql/print.h,v 1.15 2002/11/08 19:12:21 momjian Exp $
+ * $Header: /cvsroot/pgsql/src/bin/psql/print.h,v 1.16 2003/03/18 22:15:44 petere Exp $
*/
#ifndef PRINT_H
#define PRINT_H
#include "libpq-fe.h"
+
+extern FILE *PageOutput(int lines, unsigned short int pager);
+
+
enum printFormat
{
PRINT_NOTHING = 0, /* to make sure someone initializes this */
@@ -36,6 +40,7 @@ typedef struct _printTableOpt
char *recordSep; /* record separator for unaligned text
* mode */
char *tableAttr; /* attributes for HTML <table ...> */
+ int encoding; /* character encoding */
} printTableOpt;