You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
874 B
42 lines
874 B
#ifndef __NmApp_h__
|
|
#define __NmApp_h__
|
|
|
|
#include "resource.h" // main symbols
|
|
#include "imsconf3.h"
|
|
#include "NetMeeting.h"
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// CNetMeetingObj
|
|
class ATL_NO_VTABLE CNetMeetingObj :
|
|
public CComObjectRootEx<CComSingleThreadModel>,
|
|
public CComCoClass<CNetMeetingObj, &CLSID_NetMeeting>
|
|
{
|
|
|
|
public:
|
|
|
|
DECLARE_REGISTRY_RESOURCEID(IDR_NMAPP)
|
|
|
|
BEGIN_COM_MAP(CNetMeetingObj)
|
|
END_COM_MAP()
|
|
|
|
};
|
|
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// CNmManagerObj
|
|
class ATL_NO_VTABLE CNmManagerObj :
|
|
public CComObjectRootEx<CComSingleThreadModel>,
|
|
public CComCoClass<CNmManagerObj, &CLSID_NmManager>
|
|
{
|
|
|
|
public:
|
|
|
|
DECLARE_REGISTRY_RESOURCEID(IDR_NMMANAGER)
|
|
|
|
BEGIN_COM_MAP(CNmManagerObj)
|
|
END_COM_MAP()
|
|
|
|
};
|
|
|
|
|
|
#endif //__NmApp_h__
|