Skip to content
Snippets Groups Projects
Commit 59a3a401 authored by Tom Lane's avatar Tom Lane
Browse files

All the global memory contexts should be DLLIMPORT, if any are.

parent d90eb434
No related branches found
No related tags found
No related merge requests found
...@@ -10,7 +10,7 @@ ...@@ -10,7 +10,7 @@
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc * Portions Copyright (c) 1996-2000, PostgreSQL, Inc
* Portions Copyright (c) 1994, Regents of the University of California * Portions Copyright (c) 1994, Regents of the University of California
* *
* $Id: memutils.h,v 1.39 2001/01/11 23:28:34 petere Exp $ * $Id: memutils.h,v 1.40 2001/01/22 00:18:13 tgl Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
...@@ -63,12 +63,12 @@ typedef struct StandardChunkHeader ...@@ -63,12 +63,12 @@ typedef struct StandardChunkHeader
* Only TopMemoryContext and ErrorContext are initialized by * Only TopMemoryContext and ErrorContext are initialized by
* MemoryContextInit() itself. * MemoryContextInit() itself.
*/ */
extern MemoryContext TopMemoryContext; extern DLLIMPORT MemoryContext TopMemoryContext;
extern MemoryContext ErrorContext; extern DLLIMPORT MemoryContext ErrorContext;
extern MemoryContext PostmasterContext; extern DLLIMPORT MemoryContext PostmasterContext;
extern MemoryContext CacheMemoryContext; extern DLLIMPORT MemoryContext CacheMemoryContext;
extern MemoryContext QueryContext; extern DLLIMPORT MemoryContext QueryContext;
extern MemoryContext TopTransactionContext; extern DLLIMPORT MemoryContext TopTransactionContext;
extern DLLIMPORT MemoryContext TransactionCommandContext; extern DLLIMPORT MemoryContext TransactionCommandContext;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment