Re: Suggestion for dynloader.c

From: "Dann Corbit" <DCorbit(at)connx(dot)com>
To: "Dann Corbit" <DCorbit(at)connx(dot)com>, "PostgreSQL-development" <pgsql-hackers(at)postgresql(dot)org>
Subject: Re: Suggestion for dynloader.c
Date: 2004-09-01 20:14:44
Message-ID: 54798A299E68514AB7C4DEBA25F03BE1191454@postal.corporate.connx.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

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: pgsql-hackers-owner(at)postgresql(dot)org
[mailto:pgsql-hackers-owner(at)postgresql(dot)org] On Behalf Of Dann Corbit
Sent: Wednesday, September 01, 2004 1:10 PM
To: PostgreSQL-development
Subject: [HACKERS] Suggestion for dynloader.c


Include 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);

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Dann Corbit 2004-09-01 20:20:39 Seems like I am always whining about something like some whinging tiwt
Previous Message Dann Corbit 2004-09-01 20:10:16 Suggestion for dynloader.c