I have a DLL file and want to execute it on Windows. I obtained this DLL from a Challenge site which alleges the DLL should be executed independently.
A:
.DLL files are not executable in the sense that .EXE/.COM/.BAT files are executable, so I'm not sure what you mean.
You can use the Dependency Walker application that comes with the Windows SDK to interrogate a .DLL and see what functions are exported by the file.
William Leara
2010-06-15 10:47:11
see the edited post...
Vizay Soni
2010-06-15 10:51:13
+4
A:
To run the functions in a DLL, use RUNDLL32.EXE. To find out what those functions are, use Dependency Walker.
anon
2010-06-15 10:49:55
A:
You can execute a function defined in a DLL file by using the rundll command. You can explore the functions available by using Dependency Walker.
Krumelur
2010-06-15 10:50:50