The MASM Forum Archive 2004 to 2012

General Forums => The Workshop => Topic started by: Force on February 12, 2012, 12:44:29 AM

Title: Return String From DLL
Post by: Force on February 12, 2012, 12:44:29 AM
Hi

I am beginner in Assembly

First of all sorry for my broken English

i m trying to send a string to dll  to add another string in dll  and return combined string but it does not work

can anybody help me?

test1.asm
.386
.model flat,stdcall
option casemap:none

include \masm32\include\windows.inc
include \masm32\include\kernel32.inc
include \masm32\include\user32.inc

includelib \masm32\lib\kernel32.lib
includelib \masm32\lib\user32.lib
includelib  test2.lib

addProc PROTO:DWORD,:DWORD

.data
test1 db "Masm",0
buffer db 30 dup(0)

.code
start:
invoke addProc,addr test1,addr buffer

invoke MessageBox,NULL,addr buffer,0,0

invoke ExitProcess,NULL
end start


test2.asm (dll)


.386
.model flat,stdcall
option casemap:none

include \masm32\include\windows.inc
include \masm32\include\kernel32.inc
include \masm32\include\user32.inc

includelib \masm32\lib\kernel32.lib
includelib \masm32\lib\user32.lib

.data

test2 db "32",0

.code


start:


addProc proc dnm:LPSTR,dnl:LPSTR
invoke lstrcat,dnl,dnm
invoke lstrcat,dnl,addr test2
ret
addProc endp

end start
Title: Re: Return String From DLL
Post by: clive on February 12, 2012, 01:00:03 AM
Quote from: Force
i m trying to send a string to dll  to add another string in dll  and return combined string but it does not work

What bit is not working, it wouldn't appear you have enough code to make a DLL, or are creating/linking it in a fashion that will work.

http://www.masm32.com/board/index.php?topic=15939.0
Title: Re: Return String From DLL
Post by: Force on February 12, 2012, 01:23:24 AM
my project is here

Title: Re: Return String From DLL
Post by: Gunner on February 12, 2012, 01:30:19 AM
That is great and all but you don't code a dll the same way you code an exe.  Look at: \masm32\examples\exampl01\dll to see the structure
Title: Re: Return String From DLL
Post by: Farabi on February 12, 2012, 02:33:16 AM
You can allocate a memory and then return it via eax each time your function called.
Title: Re: Return String From DLL
Post by: clive on February 12, 2012, 03:25:15 AM
Quote from: FarabiYou can allocate a memory and then return it via eax each time your function called.

Well that'll work, but is prone to be blamed for the memory leaks that inevitably occur. Much better for the caller to provide a buffer, and sizing.
Title: Re: Return String From DLL
Post by: clive on February 12, 2012, 03:42:28 AM
Quote from: Forcemy project is here

Please revive the tutorial cited in the thread I pointed too, specifcally the DllEntry() part

http://win32assembly.online.fr/tut17.html
Title: Re: Return String From DLL
Post by: jj2007 on February 12, 2012, 06:50:13 AM
That does the job. See in particular the use of labels and end directives.
You need the -lib option, not /dll

.386
.model flat,stdcall
option casemap:none

include \masm32\include\windows.inc
include \masm32\include\kernel32.inc
include \masm32\include\user32.inc

includelib \masm32\lib\kernel32.lib
includelib \masm32\lib\user32.lib

.data
test2 db "32",0

.code
addProc proc dnm:LPSTR,dnl:LPSTR
invoke lstrcat,dnl,dnm
invoke lstrcat,dnl,addr test2
ret
addProc endp

END
Title: Re: Return String From DLL
Post by: Force on February 12, 2012, 04:25:08 PM
Thanks all i will try it again
Title: Re: Return String From DLL
Post by: Force on February 12, 2012, 07:47:49 PM
i tried it in math.

it works good

code is here
Title: Re: Return String From DLL
Post by: jj2007 on February 12, 2012, 11:26:29 PM
Your version chokes if test2.dll is not present. For mine, test2.lib is sufficient, and can be deleted afterwards, i.e. the exe is standalone.
Title: Re: Return String From DLL
Post by: MichaelW on February 12, 2012, 11:48:23 PM
 Run-time Dynamic Linking (http://msdn.microsoft.com/en-us/library/windows/desktop/ms685090(v=vs.85).aspx) is a better choice if the DLL may not be present and you need to provide the user with a meaningful error message.
Title: Re: Return String From DLL
Post by: Force on February 13, 2012, 10:10:12 PM
Thanks All for Helping

JJ2007  and MichaelW

you were right

I solved problem with LIB option not DLL

it works now as i want

project is here