DLL Base Address

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Is there a tool that I can use that will help me decide the optimum place(s)
to set the DLL base address for my project, especially if there are several
in the project?
 
Hello lee,

You shouldn't do it manually, because system may rebase your dll to another
place.
By the way, NGEN tool uses the imagebase property in the assembly's manifest
to set the base address for the native image. You can also use Link –dump
–headers <native image file> to find out the preferred base address. Native
image files can be found under %SystemRoom%\assembly\NativeImages_<.NET Framework
version>.
Moreover, you can use the Rebase tool that ships with the platform SDK

l> Is there a tool that I can use that will help me decide the optimum
l> place(s) to set the DLL base address for my project, especially if
l> there are several in the project?
l>
---
WBR,
Michael Nemtsev :: blog: http://spaces.msn.com/laflour

"At times one remains faithful to a cause only because its opponents do not
cease to be insipid." (c) Friedrich Nietzsche
 
Back
Top