Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 5dc844b

Browse files
committed
Add PQunescapeBytea() and PQfeeMem() to the Win32 DLL list.
Karl Waclawek
1 parent 52e49e2 commit 5dc844b

File tree

2 files changed

+94
-89
lines changed

2 files changed

+94
-89
lines changed

src/interfaces/libpq/blibpqdll.def

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ EXPORTS
7373
_PQoidValue @ 71
7474
_PQclientEncoding @ 72
7575
_PQenv2encoding @ 73
76-
_appendBinaryPQExpBuffer @ 74
76+
_appendBinaryPQExpBuffer @ 74
7777
_appendPQExpBufferStr @ 75
7878
_destroyPQExpBuffer @ 76
7979
_createPQExpBuffer @ 77
@@ -93,3 +93,5 @@ EXPORTS
9393
_appendPQExpBuffer @ 91
9494
_pg_encoding_to_char @ 92
9595
_pg_utf_mblen @ 93
96+
_PQunescapeBytea @ 94
97+
_PQfeeMem @ 95

src/interfaces/libpq/libpqdll.def

Lines changed: 91 additions & 88 deletions
Original file line numberDiff line numberDiff line change
@@ -1,95 +1,98 @@
11
LIBRARY LIBPQ
22
EXPORTS
3-
PQconnectdb @ 1
4-
PQsetdbLogin @ 2
5-
PQconndefaults @ 3
6-
PQfinish @ 4
7-
PQreset @ 5
8-
PQrequestCancel @ 6
9-
PQdb @ 7
10-
PQuser @ 8
11-
PQpass @ 9
12-
PQhost @ 10
13-
PQport @ 11
14-
PQtty @ 12
15-
PQoptions @ 13
16-
PQstatus @ 14
17-
PQerrorMessage @ 15
18-
PQsocket @ 16
19-
PQbackendPID @ 17
20-
PQtrace @ 18
21-
PQuntrace @ 19
3+
PQconnectdb @ 1
4+
PQsetdbLogin @ 2
5+
PQconndefaults @ 3
6+
PQfinish @ 4
7+
PQreset @ 5
8+
PQrequestCancel @ 6
9+
PQdb @ 7
10+
PQuser @ 8
11+
PQpass @ 9
12+
PQhost @ 10
13+
PQport @ 11
14+
PQtty @ 12
15+
PQoptions @ 13
16+
PQstatus @ 14
17+
PQerrorMessage @ 15
18+
PQsocket @ 16
19+
PQbackendPID @ 17
20+
PQtrace @ 18
21+
PQuntrace @ 19
2222
PQsetNoticeProcessor @ 20
23-
PQexec @ 21
24-
PQnotifies @ 22
25-
PQsendQuery @ 23
26-
PQgetResult @ 24
27-
PQisBusy @ 25
28-
PQconsumeInput @ 26
29-
PQgetline @ 27
30-
PQputline @ 28
31-
PQgetlineAsync @ 29
32-
PQputnbytes @ 30
33-
PQendcopy @ 31
34-
PQfn @ 32
35-
PQresultStatus @ 33
36-
PQntuples @ 34
37-
PQnfields @ 35
38-
PQbinaryTuples @ 36
39-
PQfname @ 37
40-
PQfnumber @ 38
41-
PQftype @ 39
42-
PQfsize @ 40
43-
PQfmod @ 41
44-
PQcmdStatus @ 42
45-
PQoidStatus @ 43
46-
PQcmdTuples @ 44
47-
PQgetvalue @ 45
48-
PQgetlength @ 46
49-
PQgetisnull @ 47
50-
PQclear @ 48
51-
PQmakeEmptyPGresult @ 49
52-
PQprint @ 50
53-
PQdisplayTuples @ 51
54-
PQprintTuples @ 52
55-
lo_open @ 53
56-
lo_close @ 54
57-
lo_read @ 55
58-
lo_write @ 56
59-
lo_lseek @ 57
60-
lo_creat @ 58
61-
lo_tell @ 59
62-
lo_unlink @ 60
63-
lo_import @ 61
64-
lo_export @ 62
65-
pgresStatus @ 63
66-
PQmblen @ 64
23+
PQexec @ 21
24+
PQnotifies @ 22
25+
PQsendQuery @ 23
26+
PQgetResult @ 24
27+
PQisBusy @ 25
28+
PQconsumeInput @ 26
29+
PQgetline @ 27
30+
PQputline @ 28
31+
PQgetlineAsync @ 29
32+
PQputnbytes @ 30
33+
PQendcopy @ 31
34+
PQfn @ 32
35+
PQresultStatus @ 33
36+
PQntuples @ 34
37+
PQnfields @ 35
38+
PQbinaryTuples @ 36
39+
PQfname @ 37
40+
PQfnumber @ 38
41+
PQftype @ 39
42+
PQfsize @ 40
43+
PQfmod @ 41
44+
PQcmdStatus @ 42
45+
PQoidStatus @ 43
46+
PQcmdTuples @ 44
47+
PQgetvalue @ 45
48+
PQgetlength @ 46
49+
PQgetisnull @ 47
50+
PQclear @ 48
51+
PQmakeEmptyPGresult @ 49
52+
PQprint @ 50
53+
PQdisplayTuples @ 51
54+
PQprintTuples @ 52
55+
lo_open @ 53
56+
lo_close @ 54
57+
lo_read @ 55
58+
lo_write @ 56
59+
lo_lseek @ 57
60+
lo_creat @ 58
61+
lo_tell @ 59
62+
lo_unlink @ 60
63+
lo_import @ 61
64+
lo_export @ 62
65+
pgresStatus @ 63
66+
PQmblen @ 64
6767
PQresultErrorMessage @ 65
68-
PQresStatus @ 66
69-
termPQExpBuffer @ 67
68+
PQresStatus @ 66
69+
termPQExpBuffer @ 67
7070
appendPQExpBufferChar @ 68
71-
initPQExpBuffer @ 69
72-
resetPQExpBuffer @ 70
73-
PQoidValue @ 71
74-
PQclientEncoding @ 72
75-
PQenv2encoding @ 73
71+
initPQExpBuffer @ 69
72+
resetPQExpBuffer @ 70
73+
PQoidValue @ 71
74+
PQclientEncoding @ 72
75+
PQenv2encoding @ 73
7676
appendBinaryPQExpBuffer @ 74
7777
appendPQExpBufferStr @ 75
78-
destroyPQExpBuffer @ 76
79-
createPQExpBuffer @ 77
80-
PQconninfoFree @ 78
81-
PQconnectPoll @ 79
82-
PQconnectStart @ 80
83-
PQflush @ 81
84-
PQisnonblocking @ 82
85-
PQresetPoll @ 83
86-
PQresetStart @ 84
87-
PQsetClientEncoding @ 85
88-
PQsetnonblocking @ 86
89-
PQfreeNotify @ 87
90-
PQescapeString @ 88
91-
PQescapeBytea @ 89
92-
printfPQExpBuffer @ 90
93-
appendPQExpBuffer @ 91
94-
pg_encoding_to_char @ 92
95-
pg_utf_mblen @ 93
78+
destroyPQExpBuffer @ 76
79+
createPQExpBuffer @ 77
80+
PQconninfoFree @ 78
81+
PQconnectPoll @ 79
82+
PQconnectStart @ 80
83+
PQflush @ 81
84+
PQisnonblocking @ 82
85+
PQresetPoll @ 83
86+
PQresetStart @ 84
87+
PQsetClientEncoding @ 85
88+
PQsetnonblocking @ 86
89+
PQfreeNotify @ 87
90+
PQescapeString @ 88
91+
PQescapeBytea @ 89
92+
printfPQExpBuffer @ 90
93+
appendPQExpBuffer @ 91
94+
pg_encoding_to_char @ 92
95+
pg_utf_mblen @ 93
96+
PQunescapeBytea @ 94
97+
PQfeeMem @ 95
98+

0 commit comments

Comments
 (0)