Re: Debugging modules
- From: "Victor Bazarov" <v.Abazarov@xxxxxxxxxxxx>
- Date: Fri, 29 Jun 2007 14:07:43 -0400
a7zulu@xxxxxxxxx wrote:
I have been trying to get my xll to debug in Visual Studio, there are
some errors. In my "modules debug window" under my xll, it is saying
"The module did not load at the default load address"
I am wondering what this means? If the module didn't load in to the
correct space, how am I able to call its functions from Excel?
It usually means the module was relocated from the default address
(0x400000, or whatever) to the appropriate available spot in the
process' memory. You can safely ignore it for now. Relocation only
costs you some time. If you want the dynamic libraries load as fast
as possible, and you know how many your exe has, you can make them
all have different default load addresses, so there would be no
conflict. Then no relocation occurs. That's all IIRC, of course.
V
--
Please remove capital 'A's when replying by e-mail
I do not respond to top-posted replies, please don't ask
.
- Follow-Ups:
- Re: Debugging modules
- From: a7zulu
- Re: Debugging modules
- References:
- Debugging modules
- From: a7zulu
- Debugging modules
- Prev by Date: Re: How to specify memory for SHELLEXECUTEINFO
- Next by Date: Re: Debugging modules
- Previous by thread: Debugging modules
- Next by thread: Re: Debugging modules
- Index(es):
Relevant Pages
|