aboutsummaryrefslogtreecommitdiffstats
path: root/src/native/windows/msofficecomm/IWeakReferenceSource.h
blob: 7102925352789866d6923ff2438f3b4441fba4ba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/*
 * Jitsi, the OpenSource Java VoIP and Instant Messaging client.
 *
 * Distributable under LGPL license.
 * See terms of license at gnu.org.
 */
#ifndef _JMSOFFICECOMM_IWEAKREFERENCESOURCE_H_
#define _JMSOFFICECOMM_IWEAKREFERENCESOURCE_H_

#include "IWeakReference.h" 

EXTERN_C const IID IID_IWeakReferenceSource;

#undef INTERFACE /* Silence a possible redefinition warning. */
#define INTERFACE IWeakReferenceSource
DECLARE_INTERFACE_(IWeakReferenceSource,IUnknown)
{
    STDMETHOD(QueryInterface)(THIS_ REFIID, PVOID *) PURE;
    STDMETHOD_(ULONG,AddRef)(THIS) PURE;
    STDMETHOD_(ULONG,Release)(THIS) PURE;
    STDMETHOD(GetWeakReference)(THIS_ IWeakReference **) PURE;
};
#undef INTERFACE

#endif /* #ifndef _JMSOFFICECOMM_IWEAKREFERENCESOURCE_H_ */