Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
de9d7f4b
Commit
de9d7f4b
authored
Oct 21, 2002
by
Peter Eisentraut
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add DLLIMPORT declarations needed by contrib modules.
parent
0530d7a2
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
8 additions
and
11 deletions
+8
-11
contrib/dblink/dblink.h
contrib/dblink/dblink.h
+0
-2
src/include/storage/bufmgr.h
src/include/storage/bufmgr.h
+3
-3
src/include/storage/proc.h
src/include/storage/proc.h
+2
-2
src/include/tcop/tcopprot.h
src/include/tcop/tcopprot.h
+2
-1
src/include/utils/guc.h
src/include/utils/guc.h
+1
-3
No files found.
contrib/dblink/dblink.h
View file @
de9d7f4b
...
...
@@ -74,6 +74,4 @@ extern Datum dblink_build_sql_delete(PG_FUNCTION_ARGS);
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 */
src/include/storage/bufmgr.h
View file @
de9d7f4b
...
...
@@ -7,7 +7,7 @@
* Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
* $Id: bufmgr.h,v 1.6
4 2002/09/04 20:31:45 momjian
Exp $
* $Id: bufmgr.h,v 1.6
5 2002/10/21 18:57:34 petere
Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -26,12 +26,12 @@ typedef void *Block;
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 */
...
...
src/include/storage/proc.h
View file @
de9d7f4b
...
...
@@ -7,7 +7,7 @@
* Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
* $Id: proc.h,v 1.6
0 2002/09/04 20:31:45 momjian
Exp $
* $Id: proc.h,v 1.6
1 2002/10/21 18:57:34 petere
Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -73,7 +73,7 @@ struct PGPROC
/* NOTE: "typedef struct PGPROC PGPROC" appears in storage/lock.h. */
extern
PGPROC
*
MyProc
;
extern
DLLIMPORT
PGPROC
*
MyProc
;
/*
...
...
src/include/tcop/tcopprot.h
View file @
de9d7f4b
...
...
@@ -7,7 +7,7 @@
* Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
* $Id: tcopprot.h,v 1.5
0 2002/10/14 23:49:20 tgl
Exp $
* $Id: tcopprot.h,v 1.5
1 2002/10/21 18:57:35 petere
Exp $
*
* OLD COMMENTS
* This file was created so that other c files could get the two
...
...
@@ -32,6 +32,7 @@ extern bool InError;
extern
CommandDest
whereToSendOutput
;
extern
bool
HostnameLookup
;
extern
bool
ShowPortNumber
;
extern
DLLIMPORT
char
*
debug_query_string
;
#ifndef BOOTSTRAP_INCLUDE
...
...
src/include/utils/guc.h
View file @
de9d7f4b
...
...
@@ -4,7 +4,7 @@
* External declarations pertaining to backend/utils/misc/guc.c and
* backend/utils/misc/guc-file.l
*
* $Id: guc.h,v 1.2
3 2002/09/04 20:31:45 momjian
Exp $
* $Id: guc.h,v 1.2
4 2002/10/21 18:57:35 petere
Exp $
*/
#ifndef GUC_H
#define GUC_H
...
...
@@ -125,8 +125,6 @@ extern bool Explain_pretty_print;
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
[];
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment