Could you please let me know what is difference between DECLARE_DYNAMIC
and DECLARE_DYNCREATE
?
Where exactly we can use them?
Could you please let me know what is difference between DECLARE_DYNAMIC
and DECLARE_DYNCREATE
?
Where exactly we can use them?
The first declares that a class has runtime type info and the second that instances can be created dynamically at runtime. This is described in detail in the MSDN documentation - see links like http://msdn.microsoft.com/en-us/library/56302tyt%28VS.80%29.aspx for more info.