/*++ Copyright (C) 1996-2001 Microsoft Corporation Module Name: Abstract: History: --*/ #ifndef __MSMQQMGR_H__ #define __MSMQQMGR_H__ #include #include #include #include "msmqcomn.h" /************************************************************************** CMsgMsmqQueueMgr ***************************************************************************/ class CMsgMsmqQueueMgr : public CUnkBase { CCritSec m_cs; CMsmqApi m_Api; HRESULT EnsureMsmq(); public: STDMETHOD(Create)( LPCWSTR wszPathName, GUID guidType, BOOL bAuth, DWORD dwQos, DWORD dwQuota, PVOID pSecurityDescriptor ); STDMETHOD(Destroy)( LPCWSTR wszName ); STDMETHOD(GetAllNames)( GUID guidType, BOOL bPrivateOnly, LPWSTR** ppwszNames, ULONG* pcNames ); CMsgMsmqQueueMgr( CLifeControl* pCtl ) : CUnkBase(pCtl) { } }; #endif // __MSMQQMGR_H__