summaryrefslogtreecommitdiffstats
path: root/comm/mailnews/mapi/mapihook/src/msgMapiFactory.h
blob: 3970b3fa9903a716b0f6d13e80eea60ccc4623f3 (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
26
27
28
29
30
31
32
33
34
35
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */

#ifndef MSG_MAPI_FACTORY_H
#define MSG_MAPI_FACTORY_H

#include <windows.h>
#include <objbase.h>
#include "nspr.h"
#include "nsISupportsImpl.h"  // ThreadSafeAutoRefCnt
#include <stdint.h>

class CMapiFactory : public IClassFactory {
 public:
  // IUnknown

  STDMETHODIMP QueryInterface(REFIID aIid, void** aPpv);
  STDMETHODIMP_(ULONG) AddRef(void);
  STDMETHODIMP_(ULONG) Release(void);

  // IClassFactory

  STDMETHODIMP CreateInstance(LPUNKNOWN aUnkOuter, REFIID aIid, void** aPpv);
  STDMETHODIMP LockServer(BOOL aLock);

  CMapiFactory();

 private:
  mozilla::ThreadSafeAutoRefCnt m_cRef;

  virtual ~CMapiFactory();
};

#endif  // MSG_MAPI_FACTORY_H