File tree Expand file tree Collapse file tree 5 files changed +8
-11
lines changed Expand file tree Collapse file tree 5 files changed +8
-11
lines changed Original file line number Diff line number Diff line change @@ -74,6 +74,4 @@ extern Datum dblink_build_sql_delete(PG_FUNCTION_ARGS);
74
74
extern Datum dblink_build_sql_update (PG_FUNCTION_ARGS );
75
75
extern Datum dblink_current_query (PG_FUNCTION_ARGS );
76
76
77
- extern char * debug_query_string ;
78
-
79
77
#endif /* DBLINK_H */
Original file line number Diff line number Diff line change 7
7
* Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group
8
8
* Portions Copyright (c) 1994, Regents of the University of California
9
9
*
10
- * $Id: bufmgr.h,v 1.64 2002/09/04 20:31:45 momjian Exp $
10
+ * $Id: bufmgr.h,v 1.65 2002/10/21 18:57:34 petere Exp $
11
11
*
12
12
*-------------------------------------------------------------------------
13
13
*/
@@ -26,12 +26,12 @@ typedef void *Block;
26
26
extern int NBuffers ;
27
27
28
28
/* in buf_init.c */
29
- extern Block * BufferBlockPointers ;
29
+ extern DLLIMPORT Block * BufferBlockPointers ;
30
30
extern long * PrivateRefCount ;
31
31
32
32
/* in localbuf.c */
33
33
extern int NLocBuffer ;
34
- extern Block * LocalBufferBlockPointers ;
34
+ extern DLLIMPORT Block * LocalBufferBlockPointers ;
35
35
extern long * LocalRefCount ;
36
36
37
37
/* special pageno for bget */
Original file line number Diff line number Diff line change 7
7
* Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group
8
8
* Portions Copyright (c) 1994, Regents of the University of California
9
9
*
10
- * $Id: proc.h,v 1.60 2002/09/04 20:31:45 momjian Exp $
10
+ * $Id: proc.h,v 1.61 2002/10/21 18:57:34 petere Exp $
11
11
*
12
12
*-------------------------------------------------------------------------
13
13
*/
@@ -73,7 +73,7 @@ struct PGPROC
73
73
/* NOTE: "typedef struct PGPROC PGPROC" appears in storage/lock.h. */
74
74
75
75
76
- extern PGPROC * MyProc ;
76
+ extern DLLIMPORT PGPROC * MyProc ;
77
77
78
78
79
79
/*
Original file line number Diff line number Diff line change 7
7
* Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group
8
8
* Portions Copyright (c) 1994, Regents of the University of California
9
9
*
10
- * $Id: tcopprot.h,v 1.50 2002/10/14 23:49:20 tgl Exp $
10
+ * $Id: tcopprot.h,v 1.51 2002/10/21 18:57:35 petere Exp $
11
11
*
12
12
* OLD COMMENTS
13
13
* This file was created so that other c files could get the two
@@ -32,6 +32,7 @@ extern bool InError;
32
32
extern CommandDest whereToSendOutput ;
33
33
extern bool HostnameLookup ;
34
34
extern bool ShowPortNumber ;
35
+ extern DLLIMPORT char * debug_query_string ;
35
36
36
37
#ifndef BOOTSTRAP_INCLUDE
37
38
Original file line number Diff line number Diff line change 4
4
* External declarations pertaining to backend/utils/misc/guc.c and
5
5
* backend/utils/misc/guc-file.l
6
6
*
7
- * $Id: guc.h,v 1.23 2002/09/04 20:31:45 momjian Exp $
7
+ * $Id: guc.h,v 1.24 2002/10/21 18:57:35 petere Exp $
8
8
*/
9
9
#ifndef GUC_H
10
10
#define GUC_H
@@ -125,8 +125,6 @@ extern bool Explain_pretty_print;
125
125
extern bool SQL_inheritance ;
126
126
extern bool Australian_timezones ;
127
127
128
- extern char * debug_query_string ;
129
-
130
128
extern int log_min_error_statement ;
131
129
extern char * log_min_error_statement_str ;
132
130
extern const char log_min_error_statement_str_default [];
You can’t perform that action at this time.
0 commit comments