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?
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.
Great! :o
I just did not think that creating DLLs from Libs was actually possible.
Thank you mates.