May 08, 2024, 08:51:09 PM

News:

Own IWBasic 2.x ? -----> Get your free upgrade to 3.x now.........


Create DLL's into EBASIC

Started by Techno, September 10, 2007, 12:51:01 AM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

Techno

Dear programmers

I don't find how I can create an DLL from an LIB file that is given.
How can I create an DLL started with LIB file?

sapero

Let's export some symbols from dxguid.lib :)

$use "dxguid.lib"

export _IID_IDirectDraw7
export _IID_IDirect3DTnLHalDevice

Compile as DLL, you will see in any dll viewer(like ExeScope) that your dll exports those symbols.

pistol350

Great!  :o
I just did not think that creating DLLs from Libs was actually possible.
Thank you mates.
Regards,

Peter B.