views:

627

answers:

1

Could you please let me know what is difference between DECLARE_DYNAMIC and DECLARE_DYNCREATE?

Where exactly we can use them?

+1  A: 

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.

anon
Thanks a lot for quick reply. :)
Haranadh