aboutsummaryrefslogtreecommitdiff
path: root/src/include/executor
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/executor
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/executor')
-rw-r--r--src/include/executor/spi.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/include/executor/spi.h b/src/include/executor/spi.h
index c996f644c03..20beefe4401 100644
--- a/src/include/executor/spi.h
+++ b/src/include/executor/spi.h
@@ -6,7 +6,7 @@
* Portions Copyright (c) 1996-2007, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $PostgreSQL: pgsql/src/include/executor/spi.h,v 1.61 2007/04/16 01:14:57 tgl Exp $
+ * $PostgreSQL: pgsql/src/include/executor/spi.h,v 1.62 2007/07/25 12:22:53 mha Exp $
*
*-------------------------------------------------------------------------
*/
@@ -84,10 +84,10 @@ typedef struct _SPI_plan *SPIPlanPtr;
#define SPI_OK_DELETE_RETURNING 12
#define SPI_OK_UPDATE_RETURNING 13
-extern DLLIMPORT uint32 SPI_processed;
-extern DLLIMPORT Oid SPI_lastoid;
-extern DLLIMPORT SPITupleTable *SPI_tuptable;
-extern DLLIMPORT int SPI_result;
+extern PGDLLIMPORT uint32 SPI_processed;
+extern PGDLLIMPORT Oid SPI_lastoid;
+extern PGDLLIMPORT SPITupleTable *SPI_tuptable;
+extern PGDLLIMPORT int SPI_result;
extern int SPI_connect(void);
extern int SPI_finish(void);