Commit 645b5877 authored by Bryan Henderson's avatar Bryan Henderson

Remove use of "bool", which user program may not have defined. This .h file

gets included by libpq-fe.h, and thus is part of the API.
parent af30fe78
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
* *
* Copyright (c) 1994, Regents of the University of California * Copyright (c) 1994, Regents of the University of California
* *
* $Id: pqcomm.h,v 1.5 1996/11/05 07:41:13 scrappy Exp $ * $Id: pqcomm.h,v 1.6 1996/12/26 23:28:27 bryanh Exp $
* *
* NOTES * NOTES
* Some of this should move to libpq.h * Some of this should move to libpq.h
...@@ -121,9 +121,9 @@ extern int PQAsyncNotifyWaiting; ...@@ -121,9 +121,9 @@ extern int PQAsyncNotifyWaiting;
/* /*
* prototypes for functions in pqpacket.c * prototypes for functions in pqpacket.c
*/ */
extern int PacketReceive(Port *port, PacketBuf *buf, bool nonBlocking); extern int PacketReceive(Port *port, PacketBuf *buf, char nonBlocking);
extern int PacketSend(Port *port, PacketBuf *buf, extern int PacketSend(Port *port, PacketBuf *buf,
PacketLen len, bool nonBlocking); PacketLen len, char nonBlocking);
/* extern PacketBuf* StartupInfo2PacketBuf(StartupInfo*); */ /* extern PacketBuf* StartupInfo2PacketBuf(StartupInfo*); */
/* extern StartupInfo* PacketBuf2StartupInfo(PacketBuf*); */ /* extern StartupInfo* PacketBuf2StartupInfo(PacketBuf*); */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment