1
0
mirror of https://github.com/postgres/postgres.git synced 2025-09-02 04:21:28 +03:00

Reverse out const to libpq interface from D'Arcy.

This commit is contained in:
Bruce Momjian
1999-02-05 04:25:55 +00:00
parent d3a85108c2
commit f962514403
3 changed files with 22 additions and 22 deletions

View File

@@ -6,7 +6,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
* $Id: libpq-fe.h,v 1.46 1999/02/04 03:20:39 momjian Exp $
* $Id: libpq-fe.h,v 1.47 1999/02/05 04:25:55 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -100,9 +100,9 @@ extern "C"
pqbool html3; /* output html tables */
pqbool expanded; /* expand tables */
pqbool pager; /* use pager for output if needed */
const char *fieldSep; /* field separator */
const char *tableOpt; /* insert to HTML <table ...> */
const char *caption; /* HTML <caption> */
char *fieldSep; /* field separator */
char *tableOpt; /* insert to HTML <table ...> */
char *caption; /* HTML <caption> */
char **fieldName; /* null terminated array of repalcement
* field names */
} PQprintOpt;
@@ -113,12 +113,12 @@ extern "C"
*/
typedef struct _PQconninfoOption
{
const char *keyword; /* The keyword of the option */
const char *envvar; /* Fallback environment variable name */
const char *compiled; /* Fallback compiled in default value */
char *val; /* Options value */
const char *label; /* Label for field in connect dialog */
const char *dispchar; /* Character to display for this field */
char *keyword; /* The keyword of the option */
char *envvar; /* Fallback environment variable name */
char *compiled; /* Fallback compiled in default value */
char *val; /* Options value */
char *label; /* Label for field in connect dialog */
char *dispchar; /* Character to display for this field */
/* in a connect dialog. Values are: */
/* "" Display entered value as is */
/* "*" Password field - hide value */