ReactOS 0.4.16-dev-1946-g52006dd
documentmgr.cpp File Reference
#include "precomp.h"
#include "documentmgr.h"
#include <wine/debug.h>
Include dependency graph for documentmgr.cpp:

Go to the source code of this file.

Functions

 WINE_DEFAULT_DEBUG_CHANNEL (msctf)
 
 STDMETHODIMP_ (ULONG) CDocumentMgr
 
EXTERN_C HRESULT DocumentMgr_Constructor (ITfThreadMgrEventSink *pThreadMgrSink, ITfDocumentMgr **ppOut)
 
EXTERN_C HRESULT EnumTfContext_Constructor (CDocumentMgr *mgr, IEnumTfContexts **ppOut)
 

Function Documentation

◆ DocumentMgr_Constructor()

EXTERN_C HRESULT DocumentMgr_Constructor ( ITfThreadMgrEventSink pThreadMgrSink,
ITfDocumentMgr **  ppOut 
)

Definition at line 451 of file documentmgr.cpp.

452{
453 return CDocumentMgr::CreateInstance(pThreadMgrSink, ppOut);
454}
static HRESULT CreateInstance(_In_ ITfThreadMgrEventSink *pThreadMgrSink, _Out_ ITfDocumentMgr **ppOut)
Definition: documentmgr.cpp:64

Referenced by CThreadMgr::CreateDocumentMgr().

◆ EnumTfContext_Constructor()

EXTERN_C HRESULT EnumTfContext_Constructor ( CDocumentMgr mgr,
IEnumTfContexts **  ppOut 
)

Definition at line 457 of file documentmgr.cpp.

458{
459 return CEnumTfContext::CreateInstance(mgr, ppOut);
460}
static HRESULT CreateInstance(_In_opt_ CDocumentMgr *mgr, _Out_ IEnumTfContexts **ppOut)

Referenced by CDocumentMgr::EnumContexts().

◆ STDMETHODIMP_()

STDMETHODIMP_ ( ULONG  )

Definition at line 116 of file documentmgr.cpp.

117{
118 TRACE("%p -> ()\n", this);
119 return ::InterlockedIncrement(&m_cRefs);
120}
#define TRACE(s)
Definition: solgame.cpp:4

◆ WINE_DEFAULT_DEBUG_CHANNEL()

WINE_DEFAULT_DEBUG_CHANNEL ( msctf  )