Valhalla Legends Archive

Programming => Battle.net Bot Development => Topic started by: i am newbie on December 23, 2002, 09:48 PM

Title: What is a dll?
Post by: i am newbie on December 23, 2002, 09:48 PM
Can someone please explain to me what a DLL does because idk if i were to make one if it would help my bot any and is there any way in witch to edit a dll file without hexing it?
Title: Re: What is a dll?
Post by: Zakath on December 24, 2002, 08:45 AM
A DLL is a dynamic link library. It contains (compiled) definitions for functions that can then be called by other projects.
Title: Re: What is a dll?
Post by: iago on December 24, 2002, 09:02 AM
Quoteis there any way in witch to edit a dll file without hexing it?

If you have the source for it, you just make the change in the source and compile it.  If all you have is the .dll file, then you can't do any more to that than to a .exe file (although if you reprogram it with the same exports it should still work).


[edit: fixed spelling on source because kp is annoying]
Title: Re: What is a dll?
Post by: Mesiah / haiseM on December 25, 2002, 04:48 PM
You cant hex edit it, but if you need to know the functions, and the dll isnt encrypted, you can use the dependency viewer found with msvs 6
Title: Re: What is a dll?
Post by: iago on December 25, 2002, 09:33 PM
You can hex-edit it.. it's just a little difficult :D