Skip to content

Commit 5ea01d6

Browse files
committed
Don't forget the fe-connect.h include file
1 parent 7cd394d commit 5ea01d6

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

src/interfaces/libpq/fe-connect.h

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
/*-------------------------------------------------------------------------
2+
*
3+
* fe-connect.h
4+
*
5+
* Definitions related to setting up a connection to the backend
6+
*
7+
* Copyright (c) 1994, Regents of the University of California
8+
*
9+
* $Id: fe-connect.h,v 1.1 1997/03/16 19:06:04 scrappy Exp $
10+
*
11+
*-------------------------------------------------------------------------
12+
*/
13+
#ifndef FE_CONNECT_H
14+
#define FE_CONNECT_H
15+
16+
/*----------------------------------------------------------------
17+
* Common routines and definitions
18+
*----------------------------------------------------------------
19+
*/
20+
21+
extern int packetSend(Port *port, PacketBuf *buf, PacketLen len, bool nonBlocking);
22+
23+
#endif /* FE_CONNECT_H */
24+
#ifndef FE_CONNECT_H
25+
#define FE_CONNECT_H
26+
27+
int packetSend(Port *port, PacketBuf *buf, PacketLen len, bool nonBlocking);
28+
29+
#endif

0 commit comments

Comments
 (0)