aboutsummaryrefslogtreecommitdiffstats
path: root/src/native/windows/msofficecomm/DMessengerEventsConnectionPoint.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/native/windows/msofficecomm/DMessengerEventsConnectionPoint.h')
-rw-r--r--src/native/windows/msofficecomm/DMessengerEventsConnectionPoint.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/src/native/windows/msofficecomm/DMessengerEventsConnectionPoint.h b/src/native/windows/msofficecomm/DMessengerEventsConnectionPoint.h
new file mode 100644
index 0000000..771b3f6
--- /dev/null
+++ b/src/native/windows/msofficecomm/DMessengerEventsConnectionPoint.h
@@ -0,0 +1,24 @@
+/*
+ * Jitsi, the OpenSource Java VoIP and Instant Messaging client.
+ *
+ * Distributable under LGPL license.
+ * See terms of license at gnu.org.
+ */
+#ifndef _JMSOFFICECOMM_DMESSENGEREVENTSCONNECTIONPOINT_H_
+#define _JMSOFFICECOMM_DMESSENGEREVENTSCONNECTIONPOINT_H_
+
+#include "ConnectionPoint.h"
+#include <msgrua.h>
+
+class DMessengerEventsConnectionPoint
+ : public ConnectionPoint<DMessengerEvents, DIID_DMessengerEvents>
+{
+public:
+ DMessengerEventsConnectionPoint(IConnectionPointContainer *container)
+ : ConnectionPoint(container) {}
+ virtual ~DMessengerEventsConnectionPoint() {}
+
+ STDMETHODIMP OnContactStatusChange(LPDISPATCH pMContact, MISTATUS mStatus);
+};
+
+#endif /* #ifndef _JMSOFFICECOMM_DMESSENGEREVENTSCONNECTIONPOINT_H_ */