diff options
| author | Bruce Momjian <bruce@momjian.us> | 2004-10-16 03:26:43 +0000 |
|---|---|---|
| committer | Bruce Momjian <bruce@momjian.us> | 2004-10-16 03:26:43 +0000 |
| commit | c7add816f598d5a67bc846f890f1c1d3354a98a3 (patch) | |
| tree | 36a8194c1f777ffb089a75b71fb860909cbd3bf1 /src/interfaces/libpq/libpq-fe.h | |
| parent | 88fd162ef64cab7ed197f0612e0b610d57007200 (diff) | |
| download | postgresql-c7add816f598d5a67bc846f890f1c1d3354a98a3.tar.gz | |
Export only required symbols in libpq on Win32.
Magnus Hagander
Diffstat (limited to 'src/interfaces/libpq/libpq-fe.h')
| -rw-r--r-- | src/interfaces/libpq/libpq-fe.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/interfaces/libpq/libpq-fe.h b/src/interfaces/libpq/libpq-fe.h index 9e6ebb2838..7bf7afc102 100644 --- a/src/interfaces/libpq/libpq-fe.h +++ b/src/interfaces/libpq/libpq-fe.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2004, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/interfaces/libpq/libpq-fe.h,v 1.109 2004/10/16 03:10:17 momjian Exp $ + * $PostgreSQL: pgsql/src/interfaces/libpq/libpq-fe.h,v 1.110 2004/10/16 03:26:43 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -258,6 +258,8 @@ extern int PQsetClientEncoding(PGconn *conn, const char *encoding); #ifdef USE_SSL /* Get the SSL structure associated with a connection */ extern SSL *PQgetssl(PGconn *conn); +#else +extern void *PQgetssl(PGconn *conn); #endif /* Set verbosity for PQerrorMessage and PQresultErrorMessage */ |
