I'm trying to wrap a bunch of functions from my app into a
DLL. I can compile my DLL and my main app (sans original
functions which were ported to the DLL). I've got a function
in my DLL declared as:
In my main app, I've got a DECLARE for it like so:
When I try to execute the main app, I get two error messages.
The first is "A device attached to the system is not functioning."
The second is "<YourApp> is linked to missing export <DLL>:MyFormat."
<> = paraphrased
What am I doing wrong?
------------------
Bernard Ertl
DLL. I can compile my DLL and my main app (sans original
functions which were ported to the DLL). I've got a function
in my DLL declared as:
Code:
SUB MyFormat( BYVAL StringPtr AS BYTE PTR, BYVAL Value&) EXPORT
Code:
DECLARE SUB MyFormat LIB "ipsl1.DLL" ALIAS "MyFormat" ( BYVAL StringPtr AS BYTE PTR, BYVAL Value&)
The first is "A device attached to the system is not functioning."
The second is "<YourApp> is linked to missing export <DLL>:MyFormat."
<> = paraphrased
What am I doing wrong?
------------------
Bernard Ertl
Comment