|
| CEnumString () |
|
virtual | ~CEnumString () |
|
VOID | SetList (UINT nCount, LPWSTR *pList) |
|
STDMETHODIMP | QueryInterface (REFIID iid, VOID **ppv) override |
|
| STDMETHODIMP_ (ULONG) AddRef() override |
|
| STDMETHODIMP_ (ULONG) Release() override |
|
STDMETHODIMP | Next (ULONG celt, LPWSTR *rgelt, ULONG *pceltFetched) override |
|
STDMETHODIMP | Skip (ULONG celt) override |
|
STDMETHODIMP | Reset () override |
|
STDMETHODIMP | Clone (IEnumString **ppenum) override |
|
STDMETHODIMP | Expand (PCWSTR pszExpand) override |
|
STDMETHODIMP | GetOptions (DWORD *pdwFlag) override |
|
STDMETHODIMP | SetOptions (DWORD dwFlag) override |
|
HRESULT | Next ([in] ULONG celt, [out, size_is(celt), length_is(*pceltFetched)] LPOLESTR *rgelt, [out] ULONG *pceltFetched) |
|
HRESULT | RemoteNext ([in] ULONG celt, [out, size_is(celt), length_is(*pceltFetched)] LPOLESTR *rgelt, [out] ULONG *pceltFetched) |
|
HRESULT | Skip ([in] ULONG celt) |
|
HRESULT | Reset () |
|
HRESULT | Clone ([out] IEnumString **ppenum) |
|
HRESULT | QueryInterface ([in] REFIID riid, [out, iid_is(riid)] void **ppvObject) |
|
ULONG | AddRef () |
|
ULONG | Release () |
|
Definition at line 41 of file IAutoComplete.cpp.
◆ CEnumString()
CEnumString::CEnumString |
( |
| ) |
|
|
inline |
◆ ~CEnumString()
virtual CEnumString::~CEnumString |
( |
| ) |
|
|
inlinevirtual |
Definition at line 49 of file IAutoComplete.cpp.
50 {
51 trace(
"CEnumString::~CEnumString(%p)\n",
this);
53 {
56 }
58 }
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)
◆ Clone()
◆ Expand()
Definition at line 138 of file IAutoComplete.cpp.
139 {
140 trace(
"CEnumString::Expand(%S)\n", pszExpand);
144 }
static CStringW s_strExpand
◆ GetOptions()
◆ Next()
Definition at line 102 of file IAutoComplete.cpp.
103 {
104 if (rgelt)
106 if (pceltFetched)
107 *pceltFetched = 0;
108 if (celt != 1 || !rgelt || !pceltFetched)
112
115 if (!*rgelt)
117 *pceltFetched = 1;
119 }
HRESULT WINAPI SHStrDupW(LPCWSTR src, LPWSTR *dest)
◆ QueryInterface()
Implements IUnknown.
Definition at line 66 of file IAutoComplete.cpp.
67 {
69 {
70 trace(
"IID_IEnumString\n");
74 }
75 if (iid == IID_IACList || iid == IID_IACList2)
76 {
77 trace(
"IID_IACList2\n");
79 *
ppv =
static_cast<IACList2 *
>(
this);
81 }
83 }
const GUID IID_IEnumString
◆ Reset()
◆ SetList()
◆ SetOptions()
◆ Skip()
◆ STDMETHODIMP_() [1/2]
CEnumString::STDMETHODIMP_ |
( |
ULONG |
| ) |
|
|
inlineoverride |
◆ STDMETHODIMP_() [2/2]
CEnumString::STDMETHODIMP_ |
( |
ULONG |
| ) |
|
|
inlineoverride |
Definition at line 90 of file IAutoComplete.cpp.
91 {
92
95 {
96 delete this;
97 return 0;
98 }
100 }
◆ m_cRefs
ULONG CEnumString::m_cRefs |
|
protected |
◆ m_nCount
UINT CEnumString::m_nCount |
|
protected |
◆ m_nIndex
UINT CEnumString::m_nIndex |
|
protected |
◆ m_pList
The documentation for this class was generated from the following file: