ReactOS 0.4.15-dev-7953-g1f49173
debughlp.cpp File Reference
#include "precomp.h"
Include dependency graph for debughlp.cpp:

Go to the source code of this file.

Macros

#define max_line   0x10
 

Functions

 WINE_DEFAULT_DEBUG_CHANNEL (pidl)
 
static LPITEMIDLIST _dbg_ILGetNext (LPCITEMIDLIST pidl)
 
static BOOL _dbg_ILIsDesktop (LPCITEMIDLIST pidl)
 
static LPPIDLDATA _dbg_ILGetDataPointer (LPCITEMIDLIST pidl)
 
static LPSTR _dbg_ILGetTextPointer (LPCITEMIDLIST pidl)
 
static LPWSTR _dbg_ILGetTextPointerW (LPCITEMIDLIST pidl)
 
static LPSTR _dbg_ILGetSTextPointer (LPCITEMIDLIST pidl)
 
static LPWSTR _dbg_ILGetSTextPointerW (LPCITEMIDLIST pidl)
 
static IID_dbg_ILGetGUIDPointer (LPCITEMIDLIST pidl)
 
static void _dbg_ILSimpleGetText (LPCITEMIDLIST pidl, LPSTR szOut, UINT uOutSize)
 
static void pdump_impl (LPCITEMIDLIST pidl)
 
void pdump (LPCITEMIDLIST pidl)
 
void pdump_always (LPCITEMIDLIST pidl)
 
static void dump_pidl_hex (LPCITEMIDLIST pidl)
 
BOOL pcheck (LPCITEMIDLIST pidl)
 
const charshdebugstr_guid (const struct _GUID *id)
 

Variables

struct {
   REFIID   riid
 
   const char *   name
 
InterfaceDesc []
 

Macro Definition Documentation

◆ max_line

#define max_line   0x10

Function Documentation

◆ _dbg_ILGetDataPointer()

static LPPIDLDATA _dbg_ILGetDataPointer ( LPCITEMIDLIST  pidl)
static

Definition at line 48 of file debughlp.cpp.

49{
50 if(pidl && pidl->mkid.cb != 0x00)
51 return (LPPIDLDATA) &(pidl->mkid.abID);
52 return NULL;
53}
#define NULL
Definition: types.h:112

Referenced by _dbg_ILGetSTextPointer(), _dbg_ILGetSTextPointerW(), _dbg_ILGetTextPointer(), _dbg_ILGetTextPointerW(), pcheck(), and pdump_impl().

◆ _dbg_ILGetGUIDPointer()

static IID * _dbg_ILGetGUIDPointer ( LPCITEMIDLIST  pidl)
static

Definition at line 189 of file debughlp.cpp.

190{
192
193 if (pdata)
194 {
195 switch (pdata->type)
196 {
197 case PT_SHELLEXT:
198 case PT_GUID:
199 case PT_YAGUID:
200 return &(pdata->u.guid.guid);
201 }
202 }
203 return NULL;
204}
#define PT_GUID
#define PT_YAGUID
#define PT_SHELLEXT
static PROTOCOLDATA * pdata
Definition: protocol.c:158
LPPIDLDATA _ILGetDataPointer(LPCITEMIDLIST pidl)
Definition: pidl.c:2231

Referenced by _dbg_ILSimpleGetText().

◆ _dbg_ILGetNext()

static LPITEMIDLIST _dbg_ILGetNext ( LPCITEMIDLIST  pidl)
static

Definition at line 26 of file debughlp.cpp.

27{
28 WORD len;
29
30 if(pidl)
31 {
32 len = pidl->mkid.cb;
33 if (len)
34 {
35 return (LPITEMIDLIST) (((LPBYTE)pidl)+len);
36 }
37 }
38 return NULL;
39}
unsigned short WORD
Definition: ntddk_ex.h:93
GLenum GLsizei len
Definition: glext.h:6722
ITEMIDLIST UNALIGNED * LPITEMIDLIST
Definition: shtypes.idl:41
unsigned char * LPBYTE
Definition: typedefs.h:53

Referenced by pcheck(), and pdump_impl().

◆ _dbg_ILGetSTextPointer()

static LPSTR _dbg_ILGetSTextPointer ( LPCITEMIDLIST  pidl)
static

Definition at line 139 of file debughlp.cpp.

140{
142
143 if (pdata)
144 {
145 switch (pdata->type)
146 {
147 case PT_FOLDER:
148 case PT_VALUE:
149 case PT_IESPECIAL1:
150 case PT_IESPECIAL2:
151 return (LPSTR)(pdata->u.file.szNames + strlen (pdata->u.file.szNames) + 1);
152
153 case PT_WORKGRP:
154 return (LPSTR)(pdata->u.network.szNames + strlen (pdata->u.network.szNames) + 1);
155 }
156 }
157 return NULL;
158}
ACPI_SIZE strlen(const char *String)
Definition: utclib.c:269
static LPPIDLDATA _dbg_ILGetDataPointer(LPCITEMIDLIST pidl)
Definition: debughlp.cpp:48
#define PT_WORKGRP
Definition: pidl.h:98
#define PT_FOLDER
Definition: pidl.h:94
#define PT_VALUE
Definition: pidl.h:95
#define PT_IESPECIAL1
Definition: pidl.h:102
#define PT_IESPECIAL2
Definition: pidl.h:104
char * LPSTR
Definition: xmlstorage.h:182

Referenced by pdump_impl().

◆ _dbg_ILGetSTextPointerW()

static LPWSTR _dbg_ILGetSTextPointerW ( LPCITEMIDLIST  pidl)
static

Definition at line 161 of file debughlp.cpp.

162{
164
165 if (pdata)
166 {
167 switch (pdata->type)
168 {
169 case PT_FOLDER:
170 case PT_VALUE:
171 case PT_IESPECIAL1:
172 case PT_IESPECIAL2:
173 /*return (LPSTR)(pdata->u.file.szNames + strlen (pdata->u.file.szNames) + 1); */
174 return NULL;
175
176 case PT_WORKGRP:
177 /* return (LPSTR)(pdata->u.network.szNames + strlen (pdata->u.network.szNames) + 1); */
178 return NULL;
179
180 case PT_VALUEW:
181 return (LPWSTR)(pdata->u.file.szNames + wcslen ((LPWSTR)pdata->u.file.szNames) + 1);
182 }
183 }
184 return NULL;
185}
_CRTIMP size_t __cdecl wcslen(_In_z_ const wchar_t *_Str)
#define PT_VALUEW
Definition: pidl.h:96
WCHAR * LPWSTR
Definition: xmlstorage.h:184

Referenced by pdump_impl().

◆ _dbg_ILGetTextPointer()

static LPSTR _dbg_ILGetTextPointer ( LPCITEMIDLIST  pidl)
static

Definition at line 56 of file debughlp.cpp.

57{
59
60 if (pdata)
61 {
62 switch (pdata->type)
63 {
64 case PT_GUID:
65 case PT_SHELLEXT:
66 case PT_YAGUID:
67 return NULL;
68
69 case PT_DRIVE:
70 case PT_DRIVE1:
71 case PT_DRIVE2:
72 case PT_DRIVE3:
73 return (LPSTR)&(pdata->u.drive.szDriveName);
74
75 case PT_FOLDER:
76 case PT_FOLDER1:
77 case PT_VALUE:
78 case PT_IESPECIAL1:
79 case PT_IESPECIAL2:
80 return (LPSTR)&(pdata->u.file.szNames);
81
82 case PT_WORKGRP:
83 case PT_COMP:
84 case PT_NETWORK:
85 case PT_NETPROVIDER:
86 case PT_SHARE:
87 return (LPSTR)&(pdata->u.network.szNames);
88 }
89 }
90 return NULL;
91}
#define PT_DRIVE1
Definition: pidl.h:92
#define PT_FOLDER1
Definition: pidl.h:93
#define PT_DRIVE3
Definition: pidl.h:90
#define PT_DRIVE
Definition: pidl.h:88
#define PT_DRIVE2
Definition: pidl.h:89
#define PT_SHARE
Definition: pidl.h:105
#define PT_COMP
Definition: pidl.h:99
#define PT_NETPROVIDER
Definition: pidl.h:100
#define PT_NETWORK
Definition: pidl.h:101

Referenced by _dbg_ILSimpleGetText(), and pdump_impl().

◆ _dbg_ILGetTextPointerW()

static LPWSTR _dbg_ILGetTextPointerW ( LPCITEMIDLIST  pidl)
static

Definition at line 94 of file debughlp.cpp.

95{
97
98 if (pdata)
99 {
100 switch (pdata->type)
101 {
102 case PT_GUID:
103 case PT_SHELLEXT:
104 case PT_YAGUID:
105 return NULL;
106
107 case PT_DRIVE:
108 case PT_DRIVE1:
109 case PT_DRIVE2:
110 case PT_DRIVE3:
111 /* return (LPSTR)&(pdata->u.drive.szDriveName);*/
112 return NULL;
113
114 case PT_FOLDER:
115 case PT_FOLDER1:
116 case PT_VALUE:
117 case PT_IESPECIAL1:
118 case PT_IESPECIAL2:
119 /* return (LPSTR)&(pdata->u.file.szNames); */
120 return NULL;
121
122 case PT_WORKGRP:
123 case PT_COMP:
124 case PT_NETWORK:
125 case PT_NETPROVIDER:
126 case PT_SHARE:
127 /* return (LPSTR)&(pdata->u.network.szNames); */
128 return NULL;
129
130 case PT_VALUEW:
131 return (LPWSTR)&(pdata->u.file.szNames);
132 }
133 }
134 return NULL;
135}

Referenced by _dbg_ILSimpleGetText(), and pdump_impl().

◆ _dbg_ILIsDesktop()

static BOOL _dbg_ILIsDesktop ( LPCITEMIDLIST  pidl)
static

Definition at line 42 of file debughlp.cpp.

43{
44 return ( !pidl || (pidl && pidl->mkid.cb == 0x00) );
45}

Referenced by _dbg_ILSimpleGetText().

◆ _dbg_ILSimpleGetText()

static void _dbg_ILSimpleGetText ( LPCITEMIDLIST  pidl,
LPSTR  szOut,
UINT  uOutSize 
)
static

Definition at line 207 of file debughlp.cpp.

208{
209 LPSTR szSrc;
210 LPWSTR szSrcW;
211 GUID const * riid;
212
213 if (!pidl) return;
214
215 if (szOut)
216 *szOut = 0;
217
218 if (_dbg_ILIsDesktop(pidl))
219 {
220 /* desktop */
221 if (szOut) lstrcpynA(szOut, "Desktop", uOutSize);
222 }
223 else if (( szSrc = _dbg_ILGetTextPointer(pidl) ))
224 {
225 /* filesystem */
226 if (szOut) lstrcpynA(szOut, szSrc, uOutSize);
227 }
228 else if (( szSrcW = _dbg_ILGetTextPointerW(pidl) ))
229 {
230 CHAR tmp[MAX_PATH];
231 /* unicode filesystem */
232 WideCharToMultiByte(CP_ACP,0,szSrcW, -1, tmp, MAX_PATH, NULL, NULL);
233 if (szOut) lstrcpynA(szOut, tmp, uOutSize);
234 }
235 else if (( riid = _dbg_ILGetGUIDPointer(pidl) ))
236 {
237 if (szOut)
238 sprintf( szOut, "{%08x-%04x-%04x-%02x%02x-%02x%02x%02x%02x%02x%02x}",
239 riid->Data1, riid->Data2, riid->Data3,
240 riid->Data4[0], riid->Data4[1], riid->Data4[2], riid->Data4[3],
241 riid->Data4[4], riid->Data4[5], riid->Data4[6], riid->Data4[7] );
242 }
243}
static IID * _dbg_ILGetGUIDPointer(LPCITEMIDLIST pidl)
Definition: debughlp.cpp:189
static LPWSTR _dbg_ILGetTextPointerW(LPCITEMIDLIST pidl)
Definition: debughlp.cpp:94
static LPSTR _dbg_ILGetTextPointer(LPCITEMIDLIST pidl)
Definition: debughlp.cpp:56
static BOOL _dbg_ILIsDesktop(LPCITEMIDLIST pidl)
Definition: debughlp.cpp:42
REFIID riid
Definition: debughlp.cpp:401
#define CP_ACP
Definition: compat.h:109
#define lstrcpynA
Definition: compat.h:751
#define MAX_PATH
Definition: compat.h:34
#define WideCharToMultiByte
Definition: compat.h:111
REFIID riid
Definition: atlbase.h:39
#define sprintf(buf, format,...)
Definition: sprintf.c:55
char CHAR
Definition: xmlstorage.h:175

Referenced by pdump_impl().

◆ dump_pidl_hex()

static void dump_pidl_hex ( LPCITEMIDLIST  pidl)
static

Definition at line 325 of file debughlp.cpp.

326{
327 const unsigned char *p = (const unsigned char *)pidl;
328 const int max_bytes = 0x80;
329#define max_line 0x10
330 char szHex[max_line*3+1], szAscii[max_line+1];
331 int i, n;
332
333 n = pidl->mkid.cb;
334 if( n>max_bytes )
335 n = max_bytes;
336 for( i=0; i<n; i++ )
337 {
338 sprintf( &szHex[ (i%max_line)*3 ], "%02X ", p[i] );
339 szAscii[ (i%max_line) ] = isprint( p[i] ) ? p[i] : '.';
340
341 /* print out at the end of each line and when we're finished */
342 if( i!=(n-1) && (i%max_line) != (max_line-1) )
343 continue;
344 szAscii[ (i%max_line)+1 ] = 0;
345 ERR("%-*s %s\n", max_line*3, szHex, szAscii );
346 }
347}
#define isprint(c)
Definition: acclib.h:73
#define ERR(fmt,...)
Definition: debug.h:110
#define max_line
GLdouble n
Definition: glext.h:7729
GLfloat GLfloat p
Definition: glext.h:8902
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
Definition: glfuncs.h:248

Referenced by pcheck().

◆ pcheck()

BOOL pcheck ( LPCITEMIDLIST  pidl)

Definition at line 349 of file debughlp.cpp.

350{
351 DWORD type;
352 LPCITEMIDLIST pidltemp = pidl;
353
354 while( pidltemp && pidltemp->mkid.cb )
355 {
356 LPPIDLDATA pidlData = _dbg_ILGetDataPointer(pidltemp);
357
358 if (pidlData)
359 {
360 type = pidlData->type;
361 switch( type )
362 {
363 case PT_CPLAPPLET:
364 case PT_GUID:
365 case PT_SHELLEXT:
366 case PT_DRIVE:
367 case PT_DRIVE1:
368 case PT_DRIVE2:
369 case PT_DRIVE3:
370 case PT_FOLDER:
371 case PT_VALUE:
372 case PT_VALUEW:
373 case PT_FOLDER1:
374 case PT_WORKGRP:
375 case PT_COMP:
376 case PT_NETPROVIDER:
377 case PT_NETWORK:
378 case PT_IESPECIAL1:
379 case PT_YAGUID:
380 case PT_IESPECIAL2:
381 case PT_SHARE:
382 case 0x99: /* Network Connection pidl type */
383 break;
384 default:
385 ERR("unknown IDLIST %p [%p] size=%u type=%x\n",
386 pidl, pidltemp, pidltemp->mkid.cb,type );
387 dump_pidl_hex( pidltemp );
388 return FALSE;
389 }
390 pidltemp = _dbg_ILGetNext(pidltemp);
391 }
392 else
393 {
394 return FALSE;
395 }
396 }
397 return TRUE;
398}
static LPITEMIDLIST _dbg_ILGetNext(LPCITEMIDLIST pidl)
Definition: debughlp.cpp:26
static void dump_pidl_hex(LPCITEMIDLIST pidl)
Definition: debughlp.cpp:325
#define TRUE
Definition: types.h:120
#define FALSE
Definition: types.h:117
unsigned long DWORD
Definition: ntddk_ex.h:95
GLuint GLuint GLsizei GLenum type
Definition: gl.h:1545
#define PT_CPLAPPLET
Definition: pidl.h:86
const ITEMIDLIST UNALIGNED * LPCITEMIDLIST
Definition: shtypes.idl:42

Referenced by _ILCreateCPanelApplet(), ILFindChild(), ILIsEqual(), ILLoadFromStream(), and pdump_impl().

◆ pdump()

◆ pdump_always()

void pdump_always ( LPCITEMIDLIST  pidl)

Definition at line 319 of file debughlp.cpp.

320{
321 pdump_impl(pidl);
322}

Referenced by CFSFolder::_CreateShellExtInstance(), and CFSFolder::SetNameOf().

◆ pdump_impl()

static void pdump_impl ( LPCITEMIDLIST  pidl)
static

Definition at line 248 of file debughlp.cpp.

249{
250 LPCITEMIDLIST pidltemp = pidl;
251
252
253 if (! pidltemp)
254 {
255 MESSAGE ("-------- pidl=NULL (Desktop)\n");
256 }
257 else
258 {
259 MESSAGE ("-------- pidl=%p\n", pidl);
260 if (pidltemp->mkid.cb)
261 {
262 do
263 {
264 if (_ILIsUnicode(pidltemp))
265 {
266 DWORD dwAttrib = 0;
268 DWORD type = pData ? pData->type : 0;
269 LPWSTR szLongName = _dbg_ILGetTextPointerW(pidltemp);
270 LPWSTR szShortName = _dbg_ILGetSTextPointerW(pidltemp);
271 char szName[MAX_PATH];
272
274 if ( pData && (PT_FOLDER == type || PT_VALUE == type) )
275 dwAttrib = pData->u.file.uFileAttribs;
276
277 MESSAGE ("[%p] size=%04u type=%x attr=0x%08x name=%s (%s,%s)\n",
278 pidltemp, pidltemp->mkid.cb, type, dwAttrib,
279 debugstr_a(szName), debugstr_w(szLongName), debugstr_w(szShortName));
280 }
281 else
282 {
283 DWORD dwAttrib = 0;
285 DWORD type = pData ? pData->type : 0;
286 LPSTR szLongName = _dbg_ILGetTextPointer(pidltemp);
287 LPSTR szShortName = _dbg_ILGetSTextPointer(pidltemp);
288 char szName[MAX_PATH];
289
291 if ( pData && (PT_FOLDER == type || PT_VALUE == type) )
292 dwAttrib = pData->u.file.uFileAttribs;
293
294 MESSAGE ("[%p] size=%04u type=%x attr=0x%08x name=%s (%s,%s)\n",
295 pidltemp, pidltemp->mkid.cb, type, dwAttrib,
296 debugstr_a(szName), debugstr_a(szLongName), debugstr_a(szShortName));
297 }
298
299 pidltemp = _dbg_ILGetNext(pidltemp);
300
301 } while (pidltemp && pidltemp->mkid.cb);
302 }
303 else
304 {
305 MESSAGE ("empty pidl (Desktop)\n");
306 }
307 pcheck(pidl);
308 }
309}
static void _dbg_ILSimpleGetText(LPCITEMIDLIST pidl, LPSTR szOut, UINT uOutSize)
Definition: debughlp.cpp:207
static LPWSTR _dbg_ILGetSTextPointerW(LPCITEMIDLIST pidl)
Definition: debughlp.cpp:161
static LPSTR _dbg_ILGetSTextPointer(LPCITEMIDLIST pidl)
Definition: debughlp.cpp:139
BOOL pcheck(LPCITEMIDLIST pidl)
Definition: debughlp.cpp:349
#define debugstr_a
Definition: kernel32.h:31
#define debugstr_w
Definition: kernel32.h:32
#define MESSAGE
Definition: options.h:86
BOOL _ILIsUnicode(LPCITEMIDLIST pidl)
Definition: pidl.c:1926
static const WCHAR szName[]
Definition: powrprof.c:45
TW_UINT32 TW_UINT16 TW_UINT16 TW_MEMREF pData
Definition: twain.h:1830

Referenced by pdump(), and pdump_always().

◆ shdebugstr_guid()

const char * shdebugstr_guid ( const struct _GUID id)

Definition at line 428 of file debughlp.cpp.

429{
430 unsigned int i;
431 const char* name = NULL;
432 char clsidbuf[100];
433
434 if (!id) return "(null)";
435
436 for (i=0; i < sizeof(InterfaceDesc) / sizeof(InterfaceDesc[0]); i++) {
438 }
439 if (!name) {
440 if (HCR_GetClassNameA(*id, clsidbuf, 100))
441 name = clsidbuf;
442 }
443
444 return wine_dbg_sprintf( "\n\t{%08x-%04x-%04x-%02x%02x-%02x%02x%02x%02x%02x%02x} (%s)",
445 id->Data1, id->Data2, id->Data3,
446 id->Data4[0], id->Data4[1], id->Data4[2], id->Data4[3],
447 id->Data4[4], id->Data4[5], id->Data4[6], id->Data4[7], name ? name : "unknown" );
448}
static const struct @552 InterfaceDesc[]
const char * wine_dbg_sprintf(const char *format,...)
Definition: compat.c:296
GLuint id
Definition: glext.h:5910
#define IsEqualIID(riid1, riid2)
Definition: guiddef.h:95
BOOL HCR_GetClassNameA(REFIID riid, LPSTR szDest, DWORD len)
Definition: classes.c:474
Definition: name.c:39

Referenced by CShellItem::BindToHandler(), CDrivesFolder::BindToObject(), CFSFolder::BindToObject(), CControlPanelFolder::BindToStorage(), CDesktopFolder::BindToStorage(), CDrivesFolder::BindToStorage(), CFSFolder::BindToStorage(), CNetFolder::BindToStorage(), CPrinterFolder::BindToStorage(), IDefClFImpl::CreateInstance(), CControlPanelFolder::CreateViewObject(), CDesktopFolder::CreateViewObject(), CDrivesFolder::CreateViewObject(), CFSFolder::CreateViewObject(), CNetFolder::CreateViewObject(), CPrinterFolder::CreateViewObject(), DllGetClassObject(), CControlPanelFolder::GetUIObjectOf(), CDesktopFolder::GetUIObjectOf(), CDrivesFolder::GetUIObjectOf(), CFSFolder::GetUIObjectOf(), CNetFolder::GetUIObjectOf(), CPrinterFolder::GetUIObjectOf(), IDefClF_fnConstructor(), IDefClF_fnCreateInstance(), IDefClF_fnQueryInterface(), IDefClFImpl::Initialize(), SHCoCreateInstance(), and SHCreateDefClassObject().

◆ WINE_DEFAULT_DEBUG_CHANNEL()

WINE_DEFAULT_DEBUG_CHANNEL ( pidl  )

Variable Documentation

◆ 

const struct { ... } InterfaceDesc[]
Initial value:
= {
{IID_IUnknown, "IID_IUnknown"},
{IID_IClassFactory, "IID_IClassFactory"},
{IID_IShellView, "IID_IShellView"},
{IID_IOleCommandTarget, "IID_IOleCommandTarget"},
{IID_IDropTarget, "IID_IDropTarget"},
{IID_IDropSource, "IID_IDropSource"},
{IID_IViewObject, "IID_IViewObject"},
{IID_IContextMenu, "IID_IContextMenu"},
{IID_IShellExtInit, "IID_IShellExtInit"},
{IID_IShellFolder, "IID_IShellFolder"},
{IID_IShellFolder2, "IID_IShellFolder2"},
{IID_IPersist, "IID_IPersist"},
{IID_IPersistFolder, "IID_IPersistFolder"},
{IID_IPersistFolder2, "IID_IPersistFolder2"},
{IID_IPersistFolder3, "IID_IPersistFolder3"},
{IID_IExtractIconA, "IID_IExtractIconA"},
{IID_IExtractIconW, "IID_IExtractIconW"},
{IID_IDataObject, "IID_IDataObject"},
{IID_IAutoComplete, "IID_IAutoComplete"},
{IID_IAutoComplete2, "IID_IAutoComplete2"},
{IID_IShellLinkA, "IID_IShellLinkA"},
{IID_IShellLinkW, "IID_IShellLinkW"},
}
const GUID IID_IUnknown
const GUID IID_IClassFactory
const GUID IID_IViewObject
const GUID IID_IDataObject
const GUID IID_IPersist
Definition: proxy.cpp:14

Referenced by shdebugstr_guid().

◆ name

Definition at line 402 of file debughlp.cpp.

◆ riid

Definition at line 401 of file debughlp.cpp.

Referenced by _dbg_ILSimpleGetText().