ReactOS 0.4.15-dev-6657-ged9973f
CDefView.cpp File Reference
#include "precomp.h"
#include <atlwin.h>
#include <ui/rosctrls.h>
Include dependency graph for CDefView.cpp:

Go to the source code of this file.

Classes

struct  LISTVIEW_SORT_INFO
 
struct  MenuCleanup
 
class  CDefView
 

Macros

#define SHV_CHANGE_NOTIFY   WM_USER + 0x1111
 
#define CONTEXT_MENU_BASE_ID   1
 
#define IDM_VIEW_FILES   (FCIDM_SHVIEWFIRST + 0x500)
 
#define IDM_VIEW_IDW   (FCIDM_SHVIEWFIRST + 0x501)
 
#define IDM_MYFILEITEM   (FCIDM_SHVIEWFIRST + 0x502)
 
#define ID_LISTVIEW   1
 
#define GET_WM_COMMAND_ID(wp, lp)   LOWORD(wp)
 
#define GET_WM_COMMAND_HWND(wp, lp)   (HWND)(lp)
 
#define GET_WM_COMMAND_CMD(wp, lp)   HIWORD(wp)
 
#define SCROLLAREAWIDTH   20
 

Typedefs

typedef struct LISTVIEW_SORT_INFOLPLISTVIEW_SORT_INFO
 
typedef void(CALLBACKPFNSHGETSETTINGSPROC) (LPSHELLFLAGSTATE lpsfs, DWORD dwMask)
 
typedef CSimpleMap< LPARAM, INTCLParamIndexMap
 

Functions

 WINE_DEFAULT_DEBUG_CHANNEL (shell)
 
static void ClientToListView (HWND hwndLV, POINT *ppt)
 
static VOID DrawTileBitmap (HDC hDC, LPCRECT prc, HBITMAP hbm, INT nWidth, INT nHeight, INT dx, INT dy)
 
DWORD WINAPI SHMenuIndexFromID (HMENU hMenu, UINT uID)
 
HMENU GetSubmenuByID (HMENU hmenu, UINT id)
 
UINT ReallyGetMenuItemID (HMENU hmenu, int i)
 
static BOOL SelectExtOnRename (void)
 
static BOOL ILIsParentOrSpecialParent (PCIDLIST_ABSOLUTE pidl1, PCIDLIST_ABSOLUTE pidl2)
 
HRESULT SHGetMenuIdFromMenuMsg (UINT uMsg, LPARAM lParam, UINT *CmdId)
 
HRESULT SHSetMenuIdInMenuMsg (UINT uMsg, LPARAM lParam, UINT CmdId)
 
static INT CALLBACK SelectionMoveCompareFunc (LPARAM lParam1, LPARAM lParam2, LPARAM lParamSort)
 
HRESULT CDefView_CreateInstance (IShellFolder *pFolder, REFIID riid, LPVOID *ppvOut)
 
HRESULT WINAPI SHCreateShellFolderViewEx (LPCSFV psvcbi, IShellView **ppsv)
 
HRESULT WINAPI SHCreateShellFolderView (const SFV_CREATE *pcsfv, IShellView **ppsv)
 

Macro Definition Documentation

◆ CONTEXT_MENU_BASE_ID

#define CONTEXT_MENU_BASE_ID   1

Definition at line 55 of file CDefView.cpp.

◆ GET_WM_COMMAND_CMD

#define GET_WM_COMMAND_CMD (   wp,
  lp 
)    HIWORD(wp)

Definition at line 407 of file CDefView.cpp.

◆ GET_WM_COMMAND_HWND

#define GET_WM_COMMAND_HWND (   wp,
  lp 
)    (HWND)(lp)

Definition at line 406 of file CDefView.cpp.

◆ GET_WM_COMMAND_ID

#define GET_WM_COMMAND_ID (   wp,
  lp 
)    LOWORD(wp)

Definition at line 405 of file CDefView.cpp.

◆ ID_LISTVIEW

#define ID_LISTVIEW   1

Definition at line 402 of file CDefView.cpp.

◆ IDM_MYFILEITEM

#define IDM_MYFILEITEM   (FCIDM_SHVIEWFIRST + 0x502)

Definition at line 400 of file CDefView.cpp.

◆ IDM_VIEW_FILES

#define IDM_VIEW_FILES   (FCIDM_SHVIEWFIRST + 0x500)

Definition at line 398 of file CDefView.cpp.

◆ IDM_VIEW_IDW

#define IDM_VIEW_IDW   (FCIDM_SHVIEWFIRST + 0x501)

Definition at line 399 of file CDefView.cpp.

◆ SCROLLAREAWIDTH

#define SCROLLAREAWIDTH   20

Definition at line 3415 of file CDefView.cpp.

◆ SHV_CHANGE_NOTIFY

#define SHV_CHANGE_NOTIFY   WM_USER + 0x1111

Definition at line 51 of file CDefView.cpp.

Typedef Documentation

◆ CLParamIndexMap

Definition at line 3689 of file CDefView.cpp.

◆ LPLISTVIEW_SORT_INFO

◆ PFNSHGETSETTINGSPROC

typedef void(CALLBACK * PFNSHGETSETTINGSPROC) (LPSHELLFLAGSTATE lpsfs, DWORD dwMask)

Definition at line 409 of file CDefView.cpp.

Function Documentation

◆ CDefView_CreateInstance()

HRESULT CDefView_CreateInstance ( IShellFolder pFolder,
REFIID  riid,
LPVOID ppvOut 
)

Definition at line 3950 of file CDefView.cpp.

3951{
3952 return ShellObjectCreatorInit<CDefView>(pFolder, riid, ppvOut);
3953}
REFIID riid
Definition: atlbase.h:39

Referenced by SHCreateShellFolderView(), and SHCreateShellFolderViewEx().

◆ ClientToListView()

static void ClientToListView ( HWND  hwndLV,
POINT ppt 
)
static

Definition at line 59 of file CDefView.cpp.

60{
61 POINT Origin = {};
62
63 /* FIXME: LVM_GETORIGIN is broken. See CORE-17266 */
64 if (!ListView_GetOrigin(hwndLV, &Origin))
65 return;
66
67 ppt->x += Origin.x;
68 ppt->y += Origin.y;
69}
#define ListView_GetOrigin(hwndLV, ppt)
Definition: commctrl.h:2669
long y
Definition: polytest.cpp:48
long x
Definition: polytest.cpp:48

Referenced by CDefView::drag_notify_subitem(), CDefView::Drop(), and CDefView::OnNotify().

◆ DrawTileBitmap()

static VOID DrawTileBitmap ( HDC  hDC,
LPCRECT  prc,
HBITMAP  hbm,
INT  nWidth,
INT  nHeight,
INT  dx,
INT  dy 
)
static

Definition at line 1181 of file CDefView.cpp.

1182{
1183 INT x0 = prc->left, y0 = prc->top, x1 = prc->right, y1 = prc->bottom;
1184 x0 += dx;
1185 y0 += dy;
1186
1187 HDC hMemDC = CreateCompatibleDC(hDC);
1188 HGDIOBJ hbmOld = SelectObject(hMemDC, hbm);
1189
1190 for (INT y = y0; y < y1; y += nHeight)
1191 {
1192 for (INT x = x0; x < x1; x += nWidth)
1193 {
1194 BitBlt(hDC, x, y, nWidth, nHeight, hMemDC, 0, 0, SRCCOPY);
1195 }
1196 }
1197
1198 SelectObject(hMemDC, hbmOld);
1199 DeleteDC(hMemDC);
1200}
static HDC hDC
Definition: 3dtext.c:33
static VOID NTAPI BitBlt(_In_ ULONG Left, _In_ ULONG Top, _In_ ULONG Width, _In_ ULONG Height, _In_reads_bytes_(Delta *Height) PUCHAR Buffer, _In_ ULONG BitsPerPixel, _In_ ULONG Delta)
Definition: common.c:49
GLint GLint GLint GLint GLint x
Definition: gl.h:1548
GLint GLint GLint GLint GLint GLint y
Definition: gl.h:1548
GLint dy
Definition: linetemp.h:97
GLint y0
Definition: linetemp.h:96
GLint x0
Definition: linetemp.h:95
GLint dx
Definition: linetemp.h:97
static HDC
Definition: imagelist.c:92
_In_ HBITMAP hbm
Definition: ntgdi.h:2776
_Out_ LPRECT prc
Definition: ntgdi.h:1658
LONG right
Definition: windef.h:308
LONG bottom
Definition: windef.h:309
LONG top
Definition: windef.h:307
LONG left
Definition: windef.h:306
int32_t INT
Definition: typedefs.h:58
_In_ CLIPOBJ _In_ BRUSHOBJ _In_ LONG _In_ LONG y1
Definition: winddi.h:3709
_In_ CLIPOBJ _In_ BRUSHOBJ _In_ LONG x1
Definition: winddi.h:3708
HGDIOBJ WINAPI SelectObject(_In_ HDC, _In_ HGDIOBJ)
Definition: dc.c:1539
HDC WINAPI CreateCompatibleDC(_In_opt_ HDC hdc)
#define SRCCOPY
Definition: wingdi.h:333
BOOL WINAPI DeleteDC(_In_ HDC)

Referenced by CDefView::OnPrintClient().

◆ GetSubmenuByID()

HMENU GetSubmenuByID ( HMENU  hmenu,
UINT  id 
)

Definition at line 1332 of file CDefView.cpp.

1333{
1334 MENUITEMINFOW mii = {sizeof(mii), MIIM_SUBMENU};
1335 if (::GetMenuItemInfoW(hmenu, id, FALSE, &mii))
1336 return mii.hSubMenu;
1337
1338 return NULL;
1339}
#define NULL
Definition: types.h:112
#define FALSE
Definition: types.h:117
static HMENU hmenu
Definition: win.c:66
#define MIIM_SUBMENU
Definition: winuser.h:718
BOOL WINAPI GetMenuItemInfoW(_In_ HMENU, _In_ UINT, _In_ BOOL, _Inout_ LPMENUITEMINFOW)

Referenced by CDefView::FillEditMenu(), CDefView::FillFileMenu(), CDefView::FillViewMenu(), and CDefView::OnInitMenuPopup().

◆ ILIsParentOrSpecialParent()

static BOOL ILIsParentOrSpecialParent ( PCIDLIST_ABSOLUTE  pidl1,
PCIDLIST_ABSOLUTE  pidl2 
)
static

Definition at line 2286 of file CDefView.cpp.

2287{
2288 if (!pidl1 || !pidl2)
2289 return FALSE;
2290 if (ILIsParent(pidl1, pidl2, TRUE))
2291 return TRUE;
2292
2293 if (_ILIsDesktop(pidl1))
2294 {
2295 PIDLIST_ABSOLUTE deskpidl;
2297 if (ILIsParent(deskpidl, pidl2, TRUE))
2298 {
2299 ILFree(deskpidl);
2300 return TRUE;
2301 }
2302 ILFree(deskpidl);
2304 if (ILIsParent(deskpidl, pidl2, TRUE))
2305 {
2306 ILFree(deskpidl);
2307 return TRUE;
2308 }
2309 ILFree(deskpidl);
2310 }
2311
2312 WCHAR szPath1[MAX_PATH], szPath2[MAX_PATH];
2313 LPITEMIDLIST pidl2Clone = ILClone(pidl2);
2314 ILRemoveLastID(pidl2Clone);
2315 if (SHGetPathFromIDListW(pidl1, szPath1) &&
2316 SHGetPathFromIDListW(pidl2Clone, szPath2))
2317 {
2318 if (lstrcmpiW(szPath1, szPath2) == 0)
2319 {
2320 ILFree(pidl2Clone);
2321 return TRUE;
2322 }
2323 }
2324 ILFree(pidl2Clone);
2325
2326 return FALSE;
2327}
BOOL _ILIsDesktop(LPCITEMIDLIST pidl)
Definition: CBandSite.h:24
#define TRUE
Definition: types.h:120
#define MAX_PATH
Definition: compat.h:34
HRESULT WINAPI SHGetFolderLocation(HWND hwndOwner, int nFolder, HANDLE hToken, DWORD dwReserved, LPITEMIDLIST *ppidl)
Definition: shellpath.c:3093
int WINAPI lstrcmpiW(LPCWSTR lpString1, LPCWSTR lpString2)
Definition: lstring.c:194
LPITEMIDLIST WINAPI ILClone(LPCITEMIDLIST pidl)
Definition: pidl.c:228
void WINAPI ILFree(LPITEMIDLIST pidl)
Definition: pidl.c:929
BOOL WINAPI ILIsParent(LPCITEMIDLIST pidlParent, LPCITEMIDLIST pidlChild, BOOL bImmediate)
Definition: pidl.c:596
BOOL WINAPI ILRemoveLastID(LPITEMIDLIST pidl)
Definition: pidl.c:212
BOOL WINAPI SHGetPathFromIDListW(LPCITEMIDLIST pidl, LPWSTR pszPath)
Definition: pidl.c:1298
#define CSIDL_COMMON_DESKTOPDIRECTORY
Definition: shlobj.h:2053
#define CSIDL_DESKTOPDIRECTORY
Definition: shlobj.h:2044
ITEMIDLIST UNALIGNED * LPITEMIDLIST
Definition: shtypes.idl:41
__wchar_t WCHAR
Definition: xmlstorage.h:180

Referenced by CDefView::OnChangeNotify().

◆ ReallyGetMenuItemID()

UINT ReallyGetMenuItemID ( HMENU  hmenu,
int  i 
)

Definition at line 1343 of file CDefView.cpp.

1344{
1345 MENUITEMINFOW mii = {sizeof(mii), MIIM_ID};
1346 if (::GetMenuItemInfoW(hmenu, i, TRUE, &mii))
1347 return mii.wID;
1348
1349 return UINT_MAX;
1350}
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
#define UINT_MAX
Definition: limits.h:41
#define MIIM_ID
Definition: winuser.h:717

Referenced by CDefView::OnInitMenuPopup().

◆ SelectExtOnRename()

static BOOL SelectExtOnRename ( void  )
static

Definition at line 1983 of file CDefView.cpp.

1984{
1985 HKEY hKey;
1986 LONG error;
1987 DWORD dwValue = FALSE, cbValue;
1988
1990 L"SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Explorer",
1991 0, KEY_READ, &hKey);
1992 if (error)
1993 return dwValue;
1994
1995 cbValue = sizeof(dwValue);
1996 RegQueryValueExW(hKey, L"SelectExtOnRename", NULL, NULL, (LPBYTE)&dwValue, &cbValue);
1997
1999 return !!dwValue;
2000}
#define RegCloseKey(hKey)
Definition: registry.h:47
LONG WINAPI RegOpenKeyExW(HKEY hKey, LPCWSTR lpSubKey, DWORD ulOptions, REGSAM samDesired, PHKEY phkResult)
Definition: reg.c:3353
LONG WINAPI RegQueryValueExW(_In_ HKEY hkeyorg, _In_ LPCWSTR name, _In_ LPDWORD reserved, _In_ LPDWORD type, _In_ LPBYTE data, _In_ LPDWORD count)
Definition: reg.c:4118
unsigned long DWORD
Definition: ntddk_ex.h:95
FxAutoRegKey hKey
#define error(str)
Definition: mkdosfs.c:1605
#define KEY_READ
Definition: nt_native.h:1023
#define L(x)
Definition: ntvdm.h:50
long LONG
Definition: pedump.c:60
unsigned char * LPBYTE
Definition: typedefs.h:53
#define HKEY_CURRENT_USER
Definition: winreg.h:11

Referenced by CDefView::OnNotify().

◆ SelectionMoveCompareFunc()

static INT CALLBACK SelectionMoveCompareFunc ( LPARAM  lParam1,
LPARAM  lParam2,
LPARAM  lParamSort 
)
static

Definition at line 3692 of file CDefView.cpp.

3693{
3694 CLParamIndexMap *pmap = (CLParamIndexMap *)lParamSort;
3695 INT i1 = pmap->Lookup(lParam1), i2 = pmap->Lookup(lParam2);
3696 if (i1 < i2)
3697 return -1;
3698 if (i1 > i2)
3699 return 1;
3700 return 0;
3701}
Definition: pmap_prot.h:88

Referenced by CDefView::_MoveSelectionOnAutoArrange().

◆ SHCreateShellFolderView()

HRESULT WINAPI SHCreateShellFolderView ( const SFV_CREATE pcsfv,
IShellView **  ppsv 
)

Definition at line 3975 of file CDefView.cpp.

3977{
3979 HRESULT hRes;
3980
3981 if (!ppsv)
3982 return E_INVALIDARG;
3983
3984 *ppsv = NULL;
3985
3986 if (!pcsfv || pcsfv->cbSize != sizeof(*pcsfv))
3987 return E_INVALIDARG;
3988
3989 TRACE("sf=%p outer=%p callback=%p\n",
3990 pcsfv->pshf, pcsfv->psvOuter, pcsfv->psfvcb);
3991
3992 hRes = CDefView_CreateInstance(pcsfv->pshf, IID_PPV_ARG(IShellView, &psv));
3993 if (FAILED(hRes))
3994 return hRes;
3995
3996 if (pcsfv->psfvcb)
3997 {
3999 if (SUCCEEDED(psv->QueryInterface(IID_PPV_ARG(IShellFolderView, &sfv))))
4000 {
4001 sfv->SetCallback(pcsfv->psfvcb, NULL);
4002 }
4003 }
4004
4005 *ppsv = psv.Detach();
4006 return hRes;
4007}
HRESULT CDefView_CreateInstance(IShellFolder *pFolder, REFIID riid, LPVOID *ppvOut)
Definition: CDefView.cpp:3950
T * Detach()
Definition: atlcomcli.h:163
#define E_INVALIDARG
Definition: ddrawi.h:101
#define SUCCEEDED(hr)
Definition: intsafe.h:50
#define FAILED(hr)
Definition: intsafe.h:51
#define TRACE(s)
Definition: solgame.cpp:4
IShellFolderViewCB * psfvcb
Definition: shlobj.h:1289
IShellView * psvOuter
Definition: shlobj.h:1288
UINT cbSize
Definition: shlobj.h:1286
IShellFolder * pshf
Definition: shlobj.h:1287
#define IID_PPV_ARG(Itype, ppType)

Referenced by CFontExt::CreateViewObject(), CZipFolder::CreateViewObject(), CFindFolder::CreateViewObject(), CControlPanelFolder::CreateViewObject(), CDesktopFolder::CreateViewObject(), CDrivesFolder::CreateViewObject(), CFSFolder::CreateViewObject(), CNetFolder::CreateViewObject(), CPrinterFolder::CreateViewObject(), CRecycleBin::CreateViewObject(), CCommonFolder< TSelf, TItemId, TExtractIcon >::CreateViewObject(), START_TEST(), test_SHCreateShellFolderView(), and ShellBrowser::UpdateFolderView().

◆ SHCreateShellFolderViewEx()

HRESULT WINAPI SHCreateShellFolderViewEx ( LPCSFV  psvcbi,
IShellView **  ppsv 
)

Definition at line 3955 of file CDefView.cpp.

3958{
3960 HRESULT hRes;
3961
3962 TRACE("sf=%p pidl=%p cb=%p mode=0x%08x parm=%p\n",
3963 psvcbi->pshf, psvcbi->pidl, psvcbi->pfnCallback,
3964 psvcbi->fvm, psvcbi->psvOuter);
3965
3966 *ppsv = NULL;
3967 hRes = CDefView_CreateInstance(psvcbi->pshf, IID_PPV_ARG(IShellView, &psv));
3968 if (FAILED_UNEXPECTEDLY(hRes))
3969 return hRes;
3970
3971 *ppsv = psv.Detach();
3972 return hRes;
3973}
#define FAILED_UNEXPECTEDLY(hr)
Definition: shellutils.h:82
FOLDERVIEWMODE fvm
Definition: shlobj.h:1213
IShellView * psvOuter
Definition: shlobj.h:1209
LPFNVIEWCALLBACK pfnCallback
Definition: shlobj.h:1212
PCIDLIST_ABSOLUTE pidl
Definition: shlobj.h:1210
IShellFolder * pshf
Definition: shlobj.h:1208

Referenced by CNetworkConnections::CreateViewObject(), CDesktopBrowser::Initialize(), and test_SHCreateShellFolderViewEx().

◆ SHGetMenuIdFromMenuMsg()

HRESULT SHGetMenuIdFromMenuMsg ( UINT  uMsg,
LPARAM  lParam,
UINT CmdId 
)

Definition at line 1386 of file CDefaultContextMenu.cpp.

1387{
1388 if (uMsg == WM_DRAWITEM)
1389 {
1390 DRAWITEMSTRUCT* pDrawStruct = reinterpret_cast<DRAWITEMSTRUCT*>(lParam);
1391 *CmdId = pDrawStruct->itemID;
1392 return S_OK;
1393 }
1394 else if (uMsg == WM_MEASUREITEM)
1395 {
1396 MEASUREITEMSTRUCT* pMeasureStruct = reinterpret_cast<MEASUREITEMSTRUCT*>(lParam);
1397 *CmdId = pMeasureStruct->itemID;
1398 return S_OK;
1399 }
1400
1401 return E_FAIL;
1402}
LPARAM lParam
Definition: combotst.c:139
#define E_FAIL
Definition: ddrawi.h:102
#define S_OK
Definition: intsafe.h:52
#define WM_DRAWITEM
Definition: winuser.h:1635
#define WM_MEASUREITEM
Definition: winuser.h:1636

Referenced by CDefaultContextMenu::HandleMenuMsg2(), and CDefView::OnCustomItem().

◆ SHMenuIndexFromID()

DWORD WINAPI SHMenuIndexFromID ( HMENU  hMenu,
UINT  uID 
)

Definition at line 4425 of file ordinal.c.

4426{
4427 TRACE("%p %u\n", hMenu, uID);
4428 return GetMenuPosFromID(hMenu, uID);
4429}
INT WINAPI GetMenuPosFromID(HMENU hMenu, UINT wID)
Definition: ordinal.c:4398

Referenced by CDefView::FillViewMenu().

◆ SHSetMenuIdInMenuMsg()

HRESULT SHSetMenuIdInMenuMsg ( UINT  uMsg,
LPARAM  lParam,
UINT  CmdId 
)

Definition at line 1404 of file CDefaultContextMenu.cpp.

1405{
1406 if (uMsg == WM_DRAWITEM)
1407 {
1408 DRAWITEMSTRUCT* pDrawStruct = reinterpret_cast<DRAWITEMSTRUCT*>(lParam);
1409 pDrawStruct->itemID = CmdId;
1410 return S_OK;
1411 }
1412 else if (uMsg == WM_MEASUREITEM)
1413 {
1414 MEASUREITEMSTRUCT* pMeasureStruct = reinterpret_cast<MEASUREITEMSTRUCT*>(lParam);
1415 pMeasureStruct->itemID = CmdId;
1416 return S_OK;
1417 }
1418
1419 return E_FAIL;
1420}

Referenced by CDefaultContextMenu::HandleMenuMsg2(), and CDefView::OnCustomItem().

◆ WINE_DEFAULT_DEBUG_CHANNEL()

WINE_DEFAULT_DEBUG_CHANNEL ( shell  )