aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2002-06-19 13:46:09 +0000
committerTom Lane <tgl@sss.pgh.pa.us>2002-06-19 13:46:09 +0000
commit5fa77c257090e7ac03ee0e65c275dcd2120c8126 (patch)
treee3320a6e0c2ed104b3abff1edabca0c8af686bee
parent17ce9a0a1eb66761e2e46671ed05174781582ff7 (diff)
downloadpostgresql-5fa77c257090e7ac03ee0e65c275dcd2120c8126.tar.gz
postgresql-5fa77c257090e7ac03ee0e65c275dcd2120c8126.zip
CacheMemoryContext should be DLLIMPORT.
-rw-r--r--src/include/utils/catcache.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/utils/catcache.h b/src/include/utils/catcache.h
index 2a1a83f13b9..0a506556003 100644
--- a/src/include/utils/catcache.h
+++ b/src/include/utils/catcache.h
@@ -13,7 +13,7 @@
* Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $Id: catcache.h,v 1.42 2002/04/06 06:59:24 tgl Exp $
+ * $Id: catcache.h,v 1.43 2002/06/19 13:46:09 tgl Exp $
*
*-------------------------------------------------------------------------
*/
@@ -155,7 +155,7 @@ typedef struct catcacheheader
/* this extern duplicates utils/memutils.h... */
-extern MemoryContext CacheMemoryContext;
+extern DLLIMPORT MemoryContext CacheMemoryContext;
extern void CreateCacheMemoryContext(void);
extern void AtEOXact_CatCache(bool isCommit);