struct Core::DebugInfo

#include <coremalloc.win.h>

struct DebugInfo
{
    // fields

    char* filename;
    DebugInfo* next;

    // construction

    DebugInfo(CStringPtr _filename);

    // methods

    void* operator new (size_t size);
};