extern Datum dblink_build_sql_update(PG_FUNCTION_ARGS);
extern Datum dblink_current_query(PG_FUNCTION_ARGS);
-extern char *debug_query_string;
-
#endif /* DBLINK_H */
* Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $Id: bufmgr.h,v 1.64 2002/09/04 20:31:45 momjian Exp $
+ * $Id: bufmgr.h,v 1.65 2002/10/21 18:57:34 petere Exp $
*
*-------------------------------------------------------------------------
*/
extern int NBuffers;
/* in buf_init.c */
-extern Block *BufferBlockPointers;
+extern DLLIMPORT Block *BufferBlockPointers;
extern long *PrivateRefCount;
/* in localbuf.c */
extern int NLocBuffer;
-extern Block *LocalBufferBlockPointers;
+extern DLLIMPORT Block *LocalBufferBlockPointers;
extern long *LocalRefCount;
/* special pageno for bget */
* Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $Id: proc.h,v 1.60 2002/09/04 20:31:45 momjian Exp $
+ * $Id: proc.h,v 1.61 2002/10/21 18:57:34 petere Exp $
*
*-------------------------------------------------------------------------
*/
/* NOTE: "typedef struct PGPROC PGPROC" appears in storage/lock.h. */
-extern PGPROC *MyProc;
+extern DLLIMPORT PGPROC *MyProc;
/*
* Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $Id: tcopprot.h,v 1.50 2002/10/14 23:49:20 tgl Exp $
+ * $Id: tcopprot.h,v 1.51 2002/10/21 18:57:35 petere Exp $
*
* OLD COMMENTS
* This file was created so that other c files could get the two
extern CommandDest whereToSendOutput;
extern bool HostnameLookup;
extern bool ShowPortNumber;
+extern DLLIMPORT char* debug_query_string;
#ifndef BOOTSTRAP_INCLUDE
* External declarations pertaining to backend/utils/misc/guc.c and
* backend/utils/misc/guc-file.l
*
- * $Id: guc.h,v 1.23 2002/09/04 20:31:45 momjian Exp $
+ * $Id: guc.h,v 1.24 2002/10/21 18:57:35 petere Exp $
*/
#ifndef GUC_H
#define GUC_H
extern bool SQL_inheritance;
extern bool Australian_timezones;
-extern char *debug_query_string;
-
extern int log_min_error_statement;
extern char *log_min_error_statement_str;
extern const char log_min_error_statement_str_default[];