The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.
BEGIN_SNAPINTOOLBARID_MAP
Declares the beginning of the toolbar ID map for the Snap-In object.
BEGIN_SNAPINTOOLBARID_MAP( _class )
- _class
[in] Specifies the Snap-In object class.
Example
class CMySnapinData : public CSnapInItemImpl<CMySnapinData>, public CMySnapinBase { public: CMySnapinData() {} BEGIN_SNAPINTOOLBARID_MAP(CMySnapinData) // IDR_MYSNAPINTOOLBAR is the resource ID of a toolbar resource. SNAPINTOOLBARID_ENTRY(IDR_MYSNAPINTOOLBAR) END_SNAPINTOOLBARID_MAP() };
Requirements
Header: atlsnap.h
Show: