Go to the source code of this file.
◆ COBJMACROS
◆ EnumMonikerImpl
◆ EnumMonikerImpl_AddRef()
◆ EnumMonikerImpl_Clone()
Definition at line 189 of file enummoniker.c.
190{
191 FIXME(
"(%p)->(%p): stub\n", iface, ppenum);
192
194}
◆ EnumMonikerImpl_Create()
Definition at line 47 of file enummoniker.c.
48{
49
50
51
53
54 TRACE(
"(%p, %d, %p)\n", ppMoniker, nMonikerCount, ppEnum);
55
57
58 if (!pemi)
60
67
69
71}
static const IEnumMonikerVtbl EnumMonikerImpl_Vtbl
LPVOID WINAPI CoTaskMemAlloc(SIZE_T size)
#define memcpy(s1, s2, n)
IEnumMoniker IEnumMoniker_iface
Referenced by FilterMapper3_EnumMatchingFilters().
◆ EnumMonikerImpl_Next()
Definition at line 141 of file enummoniker.c.
142{
145
146 TRACE(
"(%p)->(%d, %p, %p)\n", iface, celt, rgelt, pceltFetched);
147
148 for (fetched = 0; (
This->index + fetched <
This->nMonikerCount) && (fetched < celt); fetched++)
149 {
150 rgelt[fetched] =
This->ppMoniker[
This->index + fetched];
151 IMoniker_AddRef(rgelt[fetched]);
152 }
153
154 This->index += fetched;
155
156 TRACE(
"-- fetched %d\n", fetched);
157
158 if (pceltFetched)
159 *pceltFetched = fetched;
160
161 if (fetched != celt)
163 else
165}
◆ EnumMonikerImpl_QueryInterface()
Definition at line 76 of file enummoniker.c.
80{
83
85
88 {
89 *ppvObj = iface;
92 }
93
97}
static ULONG WINAPI EnumMonikerImpl_AddRef(LPENUMMONIKER iface)
const GUID IID_IEnumMoniker
#define IsEqualGUID(rguid1, rguid2)
◆ EnumMonikerImpl_Release()
Definition at line 119 of file enummoniker.c.
120{
123
124 TRACE(
"(%p)->() Release from %d\n", iface,
ref + 1);
125
127 {
129
130 for (
i = 0;
i <
This->nMonikerCount;
i++)
131 IMoniker_Release(
This->ppMoniker[
i]);
132
136 return 0;
137 }
139}
#define InterlockedDecrement
GLsizei GLenum const GLvoid GLsizei GLenum GLbyte GLbyte GLbyte GLdouble GLdouble GLdouble GLfloat GLfloat GLfloat GLint GLint GLint GLshort GLshort GLshort GLubyte GLubyte GLubyte GLuint GLuint GLuint GLushort GLushort GLushort GLbyte GLbyte GLbyte GLbyte GLdouble GLdouble GLdouble GLdouble GLfloat GLfloat GLfloat GLfloat GLint GLint GLint GLint GLshort GLshort GLshort GLshort GLubyte GLubyte GLubyte GLubyte GLuint GLuint GLuint GLuint GLushort GLushort GLushort GLushort GLboolean const GLdouble const GLfloat const GLint const GLshort const GLbyte const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLdouble const GLfloat const GLfloat const GLint const GLint const GLshort const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort GLenum GLenum GLenum GLfloat GLenum GLint GLenum GLenum GLenum GLfloat GLenum GLenum GLint GLenum GLfloat GLenum GLint GLint GLushort GLenum GLenum GLfloat GLenum GLenum GLint GLfloat const GLubyte GLenum GLenum GLenum const GLfloat GLenum GLenum const GLint GLenum GLint GLint GLsizei GLsizei GLint GLenum GLenum const GLvoid GLenum GLenum const GLfloat GLenum GLenum const GLint GLenum GLenum const GLdouble GLenum GLenum const GLfloat GLenum GLenum const GLint GLsizei GLuint GLfloat GLuint GLbitfield GLfloat GLint GLuint GLboolean GLenum GLfloat GLenum GLbitfield GLenum GLfloat GLfloat GLint GLint const GLfloat GLenum GLfloat GLfloat GLint GLint GLfloat GLfloat GLint GLint const GLfloat GLint GLfloat GLfloat GLint GLfloat GLfloat GLint GLfloat GLfloat const GLdouble const GLfloat const GLdouble const GLfloat GLint i
VOID WINAPI CoTaskMemFree(LPVOID ptr)
◆ EnumMonikerImpl_Reset()
◆ EnumMonikerImpl_Skip()
Definition at line 167 of file enummoniker.c.
168{
170
171 TRACE(
"(%p)->(%d)\n", iface, celt);
172
174
176}
◆ impl_from_IEnumMoniker()
◆ WINE_DEFAULT_DEBUG_CHANNEL()
WINE_DEFAULT_DEBUG_CHANNEL |
( |
quartz |
| ) |
|
◆ EnumMonikerImpl_Vtbl
static const IEnumMonikerVtbl EnumMonikerImpl_Vtbl |
|
static |
Initial value:=
{
}
static HRESULT WINAPI EnumMonikerImpl_Reset(LPENUMMONIKER iface)
static HRESULT WINAPI EnumMonikerImpl_Next(LPENUMMONIKER iface, ULONG celt, IMoniker **rgelt, ULONG *pceltFetched)
static HRESULT WINAPI EnumMonikerImpl_Clone(LPENUMMONIKER iface, IEnumMoniker **ppenum)
static HRESULT WINAPI EnumMonikerImpl_QueryInterface(LPENUMMONIKER iface, REFIID riid, LPVOID *ppvObj)
static ULONG WINAPI EnumMonikerImpl_Release(LPENUMMONIKER iface)
static HRESULT WINAPI EnumMonikerImpl_Skip(LPENUMMONIKER iface, ULONG celt)
Definition at line 38 of file enummoniker.c.
Referenced by EnumMonikerImpl_Create().