Include the file:
src\backend\port\dynloader\win32.h
in
dynloader.c
Possibly with #ifdef for OS type, if that is needed.
-----Original Message-----
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Dann Corbit
Sent: Wednesday, September 01, 2004 1:10 PM
To: PostgreSQL-development
Subject: [HACKERS] Suggestion for dynloader.cInclude prototypes at the top of the file:extern char *dlerror(void);
extern int dlclose(void *);
extern void *dlsym(void *, const char *);
extern void *dlopen(const char *, int);