diff options
author | Marc G. Fournier <scrappy@hub.org> | 1999-03-09 13:39:15 +0000 |
---|---|---|
committer | Marc G. Fournier <scrappy@hub.org> | 1999-03-09 13:39:15 +0000 |
commit | f34240de0639dcaee3778c10bd860883aa88c5dc (patch) | |
tree | b1e2f2e5c11ddab8703812ace879e3f6f6cf92c5 /src/backend/executor | |
parent | f7430af9342c8d02b6d0edde50c2035672808d1a (diff) | |
download | postgresql-f34240de0639dcaee3778c10bd860883aa88c5dc.tar.gz postgresql-f34240de0639dcaee3778c10bd860883aa88c5dc.zip |
Changes to fix/improve the dynamic loading on NT
From: Horak Daniel <horak@mmp.plzen-city.cz>
Diffstat (limited to 'src/backend/executor')
-rw-r--r-- | src/backend/executor/spi.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/backend/executor/spi.c b/src/backend/executor/spi.c index 03b9edf3323..519d119bdca 100644 --- a/src/backend/executor/spi.c +++ b/src/backend/executor/spi.c @@ -3,7 +3,7 @@ * spi.c * Server Programming Interface * - * $Id: spi.c,v 1.34 1999/02/13 23:15:30 momjian Exp $ + * $Id: spi.c,v 1.35 1999/03/09 13:39:00 scrappy Exp $ * *------------------------------------------------------------------------- */ @@ -19,9 +19,9 @@ static _SPI_connection *_SPI_current = NULL; static int _SPI_connected = -1; static int _SPI_curid = -1; -uint32 SPI_processed = 0; -SPITupleTable *SPI_tuptable; -int SPI_result; +DLLIMPORT uint32 SPI_processed = 0; +DLLIMPORT SPITupleTable *SPI_tuptable; +DLLIMPORT int SPI_result; static int _SPI_execute(char *src, int tcount, _SPI_plan *plan); static int _SPI_pquery(QueryDesc *queryDesc, EState *state, int tcount); |