Dependency Detection
-
Does anyone here know how I would go about detecting dependencies for an application and/or DLL. I need to be able to do this in my own source code because I am writing an application that requires this information. Since I can not redistribute dependcy walker or dumpbin ( as far as I know ) i need to do this on my own. If any knows a) how to do this or b) where a good resource about this is I would greatly appreciate it. Joseph Dempsey joseph_r_dempsey@yahoo.com
-
Does anyone here know how I would go about detecting dependencies for an application and/or DLL. I need to be able to do this in my own source code because I am writing an application that requires this information. Since I can not redistribute dependcy walker or dumpbin ( as far as I know ) i need to do this on my own. If any knows a) how to do this or b) where a good resource about this is I would greatly appreciate it. Joseph Dempsey joseph_r_dempsey@yahoo.com
For implicitly loaded DLLs, check out the .idata section of the file. For explicitly loaded DLLs (i.e.,
LoadLibrary()
), I do not know of a way.
"When I was born I was so surprised that I didn't talk for a year and a half." - Gracie Allen
-
Does anyone here know how I would go about detecting dependencies for an application and/or DLL. I need to be able to do this in my own source code because I am writing an application that requires this information. Since I can not redistribute dependcy walker or dumpbin ( as far as I know ) i need to do this on my own. If any knows a) how to do this or b) where a good resource about this is I would greatly appreciate it. Joseph Dempsey joseph_r_dempsey@yahoo.com