The MASM Forum Archive 2004 to 2012

General Forums => The Workshop => Topic started by: Sekkusu on March 19, 2006, 12:39:14 AM

Title: Relative Directories with MASM
Post by: Sekkusu on March 19, 2006, 12:39:14 AM
I have an ASM EXE and DLL, and I'm trying to get it so that the EXE can load the DLL regardless of which directory they're both in, provided they're together in the same directory.

Right now I have:
    dllloc db "e:\resolve\resolve.dll", 0

and I load it using dllloc as the path. I tried setting dllloc to "resolve.dll" but it just didn't load then.

Is there an easy way to load the absolute path of a DLL into a string using the relative path?

Thank you very much, and if you have any questions feel free to ask me.
Title: Re: Relative Directories with MASM
Post by: zooba on March 19, 2006, 12:42:21 AM
LoadLibrary checks specific places for the DLL specified. Check out MSDN (http://msdn.microsoft.com/library). One of the places it checks is the directory the calling process was launched from, so there should be no problems there.
Title: Re: Relative Directories with MASM
Post by: Sekkusu on March 19, 2006, 12:52:45 AM
Hm, well I must have been doing something wrong, it works now.

For educational purposes though (I was messing around and man I'm a failure, couldn't) is there an easy way to make absolute out of relative? Just the string anyways, I don't need to plug it into LoadLibrary anymore.

Thanks!
Title: Re: Relative Directories with MASM
Post by: Mincho Georgiev on March 19, 2006, 01:33:51 AM
GetCurrentDirectory
Title: Re: Relative Directories with MASM
Post by: zooba on March 19, 2006, 03:03:03 AM
And PathCanonicalize, which goes through and removes '.\' and '..\' directories.
Title: Re: Relative Directories with MASM
Post by: hutch-- on March 19, 2006, 03:17:47 AM
GetModuleFileName() always supplies you the complete path of the exe it is called from so if you strip the file name off that full path and use the DLL name, you can always access the DLL no matter where the EXE is started from as long as the DLL is in the same directory as the calling EXE file.
Title: Re: Relative Directories with MASM
Post by: Mark Jones on March 19, 2006, 04:44:43 PM
Here's a little play to path a module's INI file:


.data?
    SelfDir   db   MAX_PATH dup(?)
.code
    invoke GetModuleFileName,0,addr SelfDir,MAX_PATH    ; .\MyFile.exe
    mov ecx,offset SelfDir                          ; ecx = pointer
@@:
    mov al,byte ptr[ecx]                            ; find end
    inc ecx
    test al,al
    jnz @B
    mov dword ptr[ecx-4],00696E69h                  ; make extension "ini",0


Thanks to KetilO, because GetCurrentDirectory is NOT always accurate.
Title: Re: Relative Directories with MASM
Post by: Sekkusu on March 19, 2006, 06:10:58 PM
Thanks everyone, especially Mark Jones. I was going to try that same idea out today!