How to obtain the handle of the heap used by the C-Runtime system?

  • Thread starter Thread starter Klaus Bonadt
  • Start date Start date
K

Klaus Bonadt

I guess this is a new function for VS 2003, but how to obtain this
information in VC6 and VC7?

Best regards,
Klaus
 
Who guarantees that the current C-Runtime is using the process heap ?
I've seen processes with few version of the C-Runtime loade, some linekd
statically
and some linked dynamically (msvcrt.dll, msvcr70.dll, msvcr80.dll),
each one using a different C-Rutnime heap.
In the debugger it's the ModuleName!_crtheap symbol.
 
Back
Top