2 * ITfDisplayAttributeMgr implementation
4 * Copyright 2010 CodeWeavers, Aric Stewart
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
23 #include "wine/debug.h"
29 #include "msctf_internal.h"
31 WINE_DEFAULT_DEBUG_CHANNEL(msctf
);
33 typedef struct tagDisplayAttributeMgr
{
34 ITfDisplayAttributeMgr ITfDisplayAttributeMgr_iface
;
38 } DisplayAttributeMgr
;
40 static inline DisplayAttributeMgr
*impl_from_ITfDisplayAttributeMgr(ITfDisplayAttributeMgr
*iface
)
42 return CONTAINING_RECORD(iface
, DisplayAttributeMgr
, ITfDisplayAttributeMgr_iface
);
45 static void DisplayAttributeMgr_Destructor(DisplayAttributeMgr
*This
)
47 TRACE("destroying %p\n", This
);
49 HeapFree(GetProcessHeap(),0,This
);
52 static HRESULT WINAPI
DisplayAttributeMgr_QueryInterface(ITfDisplayAttributeMgr
*iface
, REFIID iid
, LPVOID
*ppvOut
)
54 DisplayAttributeMgr
*This
= impl_from_ITfDisplayAttributeMgr(iface
);
57 if (IsEqualIID(iid
, &IID_IUnknown
) || IsEqualIID(iid
, &IID_ITfDisplayAttributeMgr
))
64 IUnknown_AddRef(iface
);
68 WARN("unsupported interface: %s\n", debugstr_guid(iid
));
72 static ULONG WINAPI
DisplayAttributeMgr_AddRef(ITfDisplayAttributeMgr
*iface
)
74 DisplayAttributeMgr
*This
= impl_from_ITfDisplayAttributeMgr(iface
);
75 return InterlockedIncrement(&This
->refCount
);
78 static ULONG WINAPI
DisplayAttributeMgr_Release(ITfDisplayAttributeMgr
*iface
)
80 DisplayAttributeMgr
*This
= impl_from_ITfDisplayAttributeMgr(iface
);
83 ret
= InterlockedDecrement(&This
->refCount
);
85 DisplayAttributeMgr_Destructor(This
);
89 /*****************************************************
90 * ITfDisplayAttributeMgr functions
91 *****************************************************/
93 static HRESULT WINAPI
DisplayAttributeMgr_OnUpdateInfo(ITfDisplayAttributeMgr
*iface
)
95 DisplayAttributeMgr
*This
= impl_from_ITfDisplayAttributeMgr(iface
);
97 FIXME("STUB:(%p)\n",This
);
101 static HRESULT WINAPI
DisplayAttributeMgr_EnumDisplayAttributeInfo(ITfDisplayAttributeMgr
*iface
, IEnumTfDisplayAttributeInfo
**ppEnum
)
103 DisplayAttributeMgr
*This
= impl_from_ITfDisplayAttributeMgr(iface
);
105 FIXME("STUB:(%p)\n",This
);
109 static HRESULT WINAPI
DisplayAttributeMgr_GetDisplayAttributeInfo(ITfDisplayAttributeMgr
*iface
, REFGUID guid
, ITfDisplayAttributeInfo
**ppInfo
, CLSID
*pclsidOwner
)
111 DisplayAttributeMgr
*This
= impl_from_ITfDisplayAttributeMgr(iface
);
113 FIXME("STUB:(%p)\n",This
);
117 static const ITfDisplayAttributeMgrVtbl DisplayAttributeMgr_DisplayAttributeMgrVtbl
=
119 DisplayAttributeMgr_QueryInterface
,
120 DisplayAttributeMgr_AddRef
,
121 DisplayAttributeMgr_Release
,
123 DisplayAttributeMgr_OnUpdateInfo
,
124 DisplayAttributeMgr_EnumDisplayAttributeInfo
,
125 DisplayAttributeMgr_GetDisplayAttributeInfo
128 HRESULT
DisplayAttributeMgr_Constructor(IUnknown
*pUnkOuter
, IUnknown
**ppOut
)
130 DisplayAttributeMgr
*This
;
132 return CLASS_E_NOAGGREGATION
;
134 This
= HeapAlloc(GetProcessHeap(),0,sizeof(DisplayAttributeMgr
));
136 return E_OUTOFMEMORY
;
138 This
->ITfDisplayAttributeMgr_iface
.lpVtbl
= &DisplayAttributeMgr_DisplayAttributeMgrVtbl
;
141 TRACE("returning %p\n", This
);
142 *ppOut
= (IUnknown
*)This
;