diff options
Diffstat (limited to 'src/include/storage')
-rw-r--r-- | src/include/storage/buf_internals.h | 4 | ||||
-rw-r--r-- | src/include/storage/freespace.h | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/src/include/storage/buf_internals.h b/src/include/storage/buf_internals.h index 18239176b8e..9b830154c2d 100644 --- a/src/include/storage/buf_internals.h +++ b/src/include/storage/buf_internals.h @@ -8,7 +8,7 @@ * Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/include/storage/buf_internals.h,v 1.87 2006/07/23 03:07:58 tgl Exp $ + * $PostgreSQL: pgsql/src/include/storage/buf_internals.h,v 1.88 2006/10/19 18:32:47 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -162,7 +162,7 @@ typedef struct sbufdesc /* in buf_init.c */ -extern BufferDesc *BufferDescriptors; +extern DLLIMPORT BufferDesc *BufferDescriptors; /* in localbuf.c */ extern BufferDesc *LocalBufferDescriptors; diff --git a/src/include/storage/freespace.h b/src/include/storage/freespace.h index 404fb2f9558..f6b54365832 100644 --- a/src/include/storage/freespace.h +++ b/src/include/storage/freespace.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/include/storage/freespace.h,v 1.23 2006/10/04 00:30:10 momjian Exp $ + * $PostgreSQL: pgsql/src/include/storage/freespace.h,v 1.24 2006/10/19 18:32:47 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -124,8 +124,8 @@ struct FSMRelation /* GUC variables */ -extern int MaxFSMRelations; -extern int MaxFSMPages; +extern DLLIMPORT int MaxFSMRelations; +extern DLLIMPORT int MaxFSMPages; /* |