Hi all, thanks for passing by
I am almost a newbie in Visual Studio, this is my ver very first project in Windows Development. I have a .sln, that has 3 projects written in C:
# Project 1 gives a static lib
# Project 2 uses this static lib to generate a .dll
# Project 3 uses this .dll and run the main app
OK, project 2 is just the wrapper for Project 1. However, that's the way the current code is.There could have been only 2 projects I suppose.
Now, what i want to do is to track all the memory allocations in , mostly, Project 1. It would be great if I have a graph of memory allocation after the program exits.
AFAIK, since Proj 1 gives a static lib, I cannot debug with it? Can somebody confirm it please?
Is there any nice & easy tool out there, preferrably free, that can give some sort of similar output that I am looking for?
I have already tried the crtdbg.h but it seems it doesn't know the allocations inside Project 2's .dll
Frustrated here, please help.