diff options
| author | Magnus Hagander | 2007-07-25 12:22:54 +0000 |
|---|---|---|
| committer | Magnus Hagander | 2007-07-25 12:22:54 +0000 |
| commit | 906b2e1b37d351fd54f4bcfd66167e14dbb51818 (patch) | |
| tree | c719d29366902e246d72dbee73790dc5647f3005 /src/include/utils/memutils.h | |
| parent | 5cbb11928eef89df5993940eef6a35ceca5d67a3 (diff) | |
Rename DLLIMPORT macro to PGDLLIMPORT to avoid conflict with
third party includes (like tcl) that define DLLIMPORT.
Diffstat (limited to 'src/include/utils/memutils.h')
| -rw-r--r-- | src/include/utils/memutils.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/include/utils/memutils.h b/src/include/utils/memutils.h index f046f397e8c..1541bef4960 100644 --- a/src/include/utils/memutils.h +++ b/src/include/utils/memutils.h @@ -10,7 +10,7 @@ * Portions Copyright (c) 1996-2007, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/include/utils/memutils.h,v 1.62 2007/03/13 00:33:43 tgl Exp $ + * $PostgreSQL: pgsql/src/include/utils/memutils.h,v 1.63 2007/07/25 12:22:54 mha Exp $ * *------------------------------------------------------------------------- */ @@ -67,16 +67,16 @@ typedef struct StandardChunkHeader * Only TopMemoryContext and ErrorContext are initialized by * MemoryContextInit() itself. */ -extern DLLIMPORT MemoryContext TopMemoryContext; -extern DLLIMPORT MemoryContext ErrorContext; -extern DLLIMPORT MemoryContext PostmasterContext; -extern DLLIMPORT MemoryContext CacheMemoryContext; -extern DLLIMPORT MemoryContext MessageContext; -extern DLLIMPORT MemoryContext TopTransactionContext; -extern DLLIMPORT MemoryContext CurTransactionContext; +extern PGDLLIMPORT MemoryContext TopMemoryContext; +extern PGDLLIMPORT MemoryContext ErrorContext; +extern PGDLLIMPORT MemoryContext PostmasterContext; +extern PGDLLIMPORT MemoryContext CacheMemoryContext; +extern PGDLLIMPORT MemoryContext MessageContext; +extern PGDLLIMPORT MemoryContext TopTransactionContext; +extern PGDLLIMPORT MemoryContext CurTransactionContext; /* This is a transient link to the active portal's memory context: */ -extern DLLIMPORT MemoryContext PortalContext; +extern PGDLLIMPORT MemoryContext PortalContext; /* |
