Locating objects (structs) in memory - how to?
        Posted  
        
            by flavour404
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by flavour404
        
        
        
        Published on 2010-03-13T00:00:07Z
        Indexed on 
            2010/03/13
            0:07 UTC
        
        
        Read the original article
        Hit count: 164
        
c++
Hi,
How would you locate an object in memory, lets say that you have a struct defined as:
struct POINT {
   int x;
   int y;
};
How would I scan the memory region of my app to find instances of this struct so that I can read them out?
Thanks R.
© Stack Overflow or respective owner