IonicWind Software

IWBasic => General Questions => Topic started by: Techno on September 10, 2007, 12:51:01 AM

Title: Create DLL's into EBASIC
Post by: Techno on September 10, 2007, 12:51:01 AM
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?
Title: Re: Create DLL's into EBASIC
Post by: sapero on September 10, 2007, 02:16:17 AM
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.
Title: Re: Create DLL's into EBASIC
Post by: pistol350 on September 10, 2007, 05:13:36 AM
Great!  :o
I just did not think that creating DLLs from Libs was actually possible.
Thank you mates.