The MASM Forum Archive 2004 to 2012

General Forums => The Workshop => Topic started by: lamer on January 27, 2006, 10:52:21 AM

Title: Could GetProcAddress be called once?
Post by: lamer on January 27, 2006, 10:52:21 AM
Hi all!
I load some library at the beginning of program execution and free it on exit.
Is it safe to call GetProcAddress for needed function only once after the library has ben loaded and use the returned value till program ends or I have to call GetProcAddress each time I need to use the function, i.e. - does the procedure address remain the same after loading the library?

Thank you
Title: Re: Could GetProcAddress be called once?
Post by: hutch-- on January 27, 2006, 11:14:15 AM
You could try your luck and write a test piece but the conventional wisdom is to unload the DLL on exit, its not like it costs you anything.
Title: Re: Could GetProcAddress be called once?
Post by: Tedd on January 27, 2006, 01:02:38 PM
The function address will not change once it's been loaded - this is the same mechanism that PE imports use, so it has to stay the same.
If you load and unload, and then load again, it's not guaranteed to be the same (though it most likely would be, unless the dll is relocated.)
Title: Re: Could GetProcAddress be called once?
Post by: sluggy on January 27, 2006, 01:08:40 PM
As Tedd said, the dll gets rebased if necessary before you get a handle to it. Any subsequent dll that gets loaded and would have occupied the space currently used by the first dll will also get rebased to another address.
Title: Re: Could GetProcAddress be called once?
Post by: u on February 02, 2006, 05:12:32 AM
To sum it up:

.data
hDLL dd 0
ptrFunc1 dd 0
.code
invoke LoadLibrary,T("mylib.dll")
mov hDLL,eax
invoke GetProcAddress,hDLL,T("Func1")
mov ptrFunc1,eax

; now, ptrFunc1 is always valid:
call ptrFunc1
;....
call ptrFunc1
;....
call ptrFunc1
;..


So, you just need to use GetProcAddress for one function just once :)