aboutsummaryrefslogtreecommitdiff
path: root/src/include/commands/explain.h
diff options
context:
space:
mode:
authorMagnus Hagander <magnus@hagander.net>2007-07-25 12:22:54 +0000
committerMagnus Hagander <magnus@hagander.net>2007-07-25 12:22:54 +0000
commit906b2e1b37d351fd54f4bcfd66167e14dbb51818 (patch)
treec719d29366902e246d72dbee73790dc5647f3005 /src/include/commands/explain.h
parent5cbb11928eef89df5993940eef6a35ceca5d67a3 (diff)
downloadpostgresql-906b2e1b37d351fd54f4bcfd66167e14dbb51818.tar.gz
postgresql-906b2e1b37d351fd54f4bcfd66167e14dbb51818.zip
Rename DLLIMPORT macro to PGDLLIMPORT to avoid conflict with
third party includes (like tcl) that define DLLIMPORT.
Diffstat (limited to 'src/include/commands/explain.h')
-rw-r--r--src/include/commands/explain.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/include/commands/explain.h b/src/include/commands/explain.h
index 73bf41e49c1..0d22449e52c 100644
--- a/src/include/commands/explain.h
+++ b/src/include/commands/explain.h
@@ -6,7 +6,7 @@
* Portions Copyright (c) 1996-2007, PostgreSQL Global Development Group
* Portions Copyright (c) 1994-5, Regents of the University of California
*
- * $PostgreSQL: pgsql/src/include/commands/explain.h,v 1.31 2007/05/25 17:54:25 tgl Exp $
+ * $PostgreSQL: pgsql/src/include/commands/explain.h,v 1.32 2007/07/25 12:22:53 mha Exp $
*
*-------------------------------------------------------------------------
*/
@@ -21,11 +21,11 @@ typedef void (*ExplainOneQuery_hook_type) (Query *query,
const char *queryString,
ParamListInfo params,
TupOutputState *tstate);
-extern DLLIMPORT ExplainOneQuery_hook_type ExplainOneQuery_hook;
+extern PGDLLIMPORT ExplainOneQuery_hook_type ExplainOneQuery_hook;
/* Hook for plugins to get control in explain_get_index_name() */
typedef const char * (*explain_get_index_name_hook_type) (Oid indexId);
-extern DLLIMPORT explain_get_index_name_hook_type explain_get_index_name_hook;
+extern PGDLLIMPORT explain_get_index_name_hook_type explain_get_index_name_hook;
extern void ExplainQuery(ExplainStmt *stmt, const char *queryString,