mirror of
https://github.com/postgres/postgres.git
synced 2025-07-15 19:21:59 +03:00
Rename DLLIMPORT macro to PGDLLIMPORT to avoid conflict with
third party includes (like tcl) that define DLLIMPORT.
This commit is contained in:
@ -7,7 +7,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/elog.h,v 1.86 2007/05/04 02:01:02 tgl Exp $
|
||||
* $PostgreSQL: pgsql/src/include/utils/elog.h,v 1.87 2007/07/25 12:22:54 mha Exp $
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
@ -173,7 +173,7 @@ typedef struct ErrorContextCallback
|
||||
void *arg;
|
||||
} ErrorContextCallback;
|
||||
|
||||
extern DLLIMPORT ErrorContextCallback *error_context_stack;
|
||||
extern PGDLLIMPORT ErrorContextCallback *error_context_stack;
|
||||
|
||||
|
||||
/*----------
|
||||
@ -234,7 +234,7 @@ extern DLLIMPORT ErrorContextCallback *error_context_stack;
|
||||
(pg_re_throw(), exit(1))
|
||||
#endif
|
||||
|
||||
extern DLLIMPORT sigjmp_buf *PG_exception_stack;
|
||||
extern PGDLLIMPORT sigjmp_buf *PG_exception_stack;
|
||||
|
||||
|
||||
/* Stuff that error handlers might want to use */
|
||||
|
Reference in New Issue
Block a user