HI, i'm debuging code, that I haven't written. And when I find a code like:
CLSID const& GetClsid()
{
static CLSID const clsid
= { 0x7028347f, 0x3950, 0x11d3, { 0xa2, 0x76, 0x0, 0xa0, 0xc9, 0x1d, 0x5e, 0xfb } };
return clsid;
}
and after that createing of component with that ID, where can I find out, what component it is? (name, propertise, dll of it,...)
THX
bubak
CLSID const& GetClsid()
{
static CLSID const clsid
= { 0x7028347f, 0x3950, 0x11d3, { 0xa2, 0x76, 0x0, 0xa0, 0xc9, 0x1d, 0x5e, 0xfb } };
return clsid;
}
and after that createing of component with that ID, where can I find out, what component it is? (name, propertise, dll of it,...)
THX
bubak