Re: problem with MyBackendId
- From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
- To: "Andreas 'ads' Scherbaum" <adsmail(at)wars-nicht(dot)de>
- Cc: pgsql-hackers-win32(at)postgresql(dot)org
- Subject: Re: problem with MyBackendId
- Date: Tue, 02 Aug 2005 18:33:54 -0400
- Message-id: <25079(dot)1123022034(at)sss(dot)pgh(dot)pa(dot)us>
"Andreas 'ads' Scherbaum" <adsmail(at)wars-nicht(dot)de> writes:
> i successfully installed PostgreSQL 8.0.3 and MingW on a windows xp box
> and tried to compile a module of mine. Thats the error i got back:
> nmth000000.o(.idata$4+0x0): undefined reference to `_nm__MyBackendId'
MyBackendId isn't DLLIMPORT'ed. I believe you can hack around this by
doing
extern DLLIMPORT BackendId MyBackendId;
in your own code.
regards, tom lane
Home |
Main Index |
Thread Index