News:

MASM32 SDK Description, downloads and other helpful links
MASM32.com New Forum Link
masmforum WebSite

help with dll to lib in masm

Started by remus2k, October 31, 2006, 02:52:24 PM

Previous topic - Next topic

remus2k

hi leutz

i search help with convert BladeEnc.dll and bladedll.h from BEnc-0942-Win-i586-dll
packed in masm32

can your help me

thx in forward

Vortex

If it's possible, can you post the dll and the header (.h) file? Maybe, we can help you.

remus2k

hi vortex



[attachment deleted by admin]

MichaelW

The archive includes what appears to be an import library, and if it is then all you need to do is convert the header file.

http://www2.arnes.si/~mmilut/BladeEnc.html

eschew obfuscation

remus2k

hi MichaelW

have your a tool to convert the header file??

TNick


remus2k

thx for your help :bg :cheekygreen:

TNick

 :U
Wellcome aboard!!
You should thanks to ToutEnMasm for that tool. :bg
Nick

remus2k

i have a problem with compiling there appears a errorreport

blank_dlg.obj : error LNK2001: unresolved external symbol _beInitStream@16
blank_dlg.exe : fatal error LNK1120: 1 unresolved externals

TNick

Do you have a
INCLUDELIB BEnc-0942-Win-i586-dl.lib
(or whatevername have your lib) statement  in your code?

remus2k

.586
.model flat, stdcall  ;32 bit memory model
option casemap :none  ;case sensitive


TNick

yes, but did you link the lib, too?
.586
.model flat, stdcall  ;32 bit memory model
option casemap :none  ;case sensitive
INCLUDELIB BEnc-0942-Win-i586-dl.lib ; see what name has your lib and change it inhere

remus2k


TNick

:) :) :)
Well, then, try to add after

.586
.model flat, stdcall  ;32 bit memory model
option casemap :none  ;case sensitive

this line:
INCLUDELIB [Path\]BladeEnc.lib

where Path is the path to your BladeEnc.lib

remus2k

here is my source

[attachment deleted by admin]