Discussion:
New Debug Visualizer
(too old to reply)
Surya
2009-10-23 09:12:55 UTC
Permalink
Hello,
I'm trying to write a new debug visualizer for my custom class written
in unmanaged c++.

I've followed the process out lined at http://msdn.microsoft.com/en-us/library/8fwk67y3(VS.80).aspx.

The important difference here is the visualizer dll is dependent on
other dlls (boost libraries for example).

I'm able to create the dll, but I'm not able to see the affect of it.
(which simply means my visualizer dll is not loaded)

I've provided all the dependent dlls in the same directory as the
visualizer dll (Common7/IDE). Am I missing some thing here ?

how to identify the problem ?

Thanks in advance,
Surya
Surya
2009-10-23 09:17:14 UTC
Permalink
Oh !
I'm talking about Debug Expression Evaluator Addin
pm
2009-10-23 10:43:58 UTC
Permalink
Post by Surya
Oh !
I'm talking about Debug Expression Evaluator Addin
Did you modified autoexp.dat?
Is your dll loaded?
Wat about to link statically with Boost and with all requested dlls if
it is possible.

PM-
Surya
2009-10-23 15:58:59 UTC
Permalink
Post by pm
Did you modified autoexp.dat?
Yes I did.
Post by pm
Is your dll loaded?
How can i say whether my dll is loaded or not ? All I'm seeing is ???
Post by pm
Wat about to link statically with Boost and with all requested dlls if
it is possible.
I tried this, but the problem is this addin is dependent on some other
dlls as well, and getting static versions of them is impossible.
Post by pm
PM-
pm
2009-11-02 08:53:39 UTC
Permalink
Post by Surya
Post by pm
Is your dll loaded?
How can i say whether my dll is loaded or not ? All I'm seeing is ???
-Process monitor
-Breakpoint in dllmain.
-Dependency walker (profiling)


PM-

Loading...