1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-17 06:41:09 +03:00

Changes to fix/improve the dynamic loading on NT

From: Horak Daniel <horak@mmp.plzen-city.cz>
This commit is contained in:
Marc G. Fournier
1999-03-09 13:39:15 +00:00
parent f7430af934
commit f34240de06
6 changed files with 33 additions and 10 deletions

View File

@ -66,9 +66,9 @@ typedef struct
#define SPI_OK_UPDATE 9
#define SPI_OK_CURSOR 10
extern uint32 SPI_processed;
extern SPITupleTable *SPI_tuptable;
extern int SPI_result;
extern DLLIMPORT uint32 SPI_processed;
extern DLLIMPORT SPITupleTable *SPI_tuptable;
extern DLLIMPORT int SPI_result;
extern int SPI_connect(void);
extern int SPI_finish(void);