mirror of
https://github.com/postgres/postgres.git
synced 2025-07-07 00:36:50 +03:00
Rename DLLIMPORT macro to PGDLLIMPORT to avoid conflict with
third party includes (like tcl) that define DLLIMPORT.
This commit is contained in:
@ -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;
|
||||
|
||||
|
||||
/*
|
||||
|
Reference in New Issue
Block a user