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_SERVICE_MAP
Marks the beginning of the service map.
BEGIN_SERVICE_MAP( theClass )
- theClass
[in] Specifies the class containing the service map.
Use the service map to implement service provider functionality on your COM object. First, you must derive your class from IServiceProviderImpl. There are two types of entries:
SERVICE_ENTRY Indicates support for the specified service ID (SID).
SERVICE_ENTRY_CHAIN Instructs IServiceProviderImpl::QueryService to chain to another, specified object.
Example
BEGIN_SERVICE_MAP(CMyService) SERVICE_ENTRY(SID_SBindHost) // This object supports the SBindHost service SERVICE_ENTRY_CHAIN(m_spClientSite) // Everything else, just ask the container END_SERVICE_MAP()
Requirements
Header: atlcom.h
Show: