diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2010-01-16 00:04:41 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2010-01-16 00:04:41 +0000 |
commit | 47a09eda891e329a148d55ab8c48f566475ccb4f (patch) | |
tree | fccff35d710b161de46d88b7acb33681beac9a48 /src/include/access/xlog.h | |
parent | 08f8d478ebc37e42f3ced07d17dae83d6a9a3810 (diff) | |
download | postgresql-47a09eda891e329a148d55ab8c48f566475ccb4f.tar.gz postgresql-47a09eda891e329a148d55ab8c48f566475ccb4f.zip |
PGDLLIMPORT-ize the remaining variables needed by walreceiver.
Diffstat (limited to 'src/include/access/xlog.h')
-rw-r--r-- | src/include/access/xlog.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/access/xlog.h b/src/include/access/xlog.h index 20083e14c54..d0cb6550b69 100644 --- a/src/include/access/xlog.h +++ b/src/include/access/xlog.h @@ -6,7 +6,7 @@ * Portions Copyright (c) 1996-2010, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/include/access/xlog.h,v 1.96 2010/01/15 09:19:06 heikki Exp $ + * $PostgreSQL: pgsql/src/include/access/xlog.h,v 1.97 2010/01/16 00:04:41 tgl Exp $ */ #ifndef XLOG_H #define XLOG_H @@ -132,7 +132,7 @@ typedef struct XLogRecData struct XLogRecData *next; /* next struct in chain, or NULL */ } XLogRecData; -extern TimeLineID ThisTimeLineID; /* current TLI */ +extern PGDLLIMPORT TimeLineID ThisTimeLineID; /* current TLI */ /* * Prior to 8.4, all activity during recovery was carried out by Startup |