Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
5acb6f01
Commit
5acb6f01
authored
Jul 20, 2010
by
David Hedberg
Committed by
Alexandre Julliard
Jul 21, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
include: Add INameSpaceTreeControlCustomDraw interface declaration.
parent
c51b1e6d
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
49 additions
and
0 deletions
+49
-0
shobjidl.idl
include/shobjidl.idl
+49
-0
No files found.
include/shobjidl.idl
View file @
5acb6f01
...
...
@@ -2195,3 +2195,52 @@ interface INameSpaceTreeControlEvents : IUnknown
[out] int *piDefaultIcon,
[out] int *piOpenIcon);
}
cpp_quote("#ifdef MIDL_PASS")
typedef IUnknown *HIMAGELIST;
cpp_quote("#endif")
/*****************************************************************************
* INameSpaceTreeControlCustomDraw interface
*/
[
object,
uuid(2D3BA758-33EE-42D5-BB7B-5F3431D86C78),
local
]
interface INameSpaceTreeControlCustomDraw : IUnknown
{
typedef struct NSTCCUSTOMDRAW
{
IShellItem *psi;
UINT uItemState;
NSTCITEMSTATE nstcis;
LPCWSTR pszText;
int iImage;
HIMAGELIST himl;
int iLevel;
int iIndent;
} NSTCCUSTOMDRAW;
HRESULT PrePaint(
[in] HDC hdc,
[in] RECT *prc,
[out] LRESULT *plres);
HRESULT PostPaint(
[in] HDC hdc,
[in] RECT *prc);
HRESULT ItemPrePaint(
[in] HDC hdc,
[in] RECT *prc,
[in, out] COLORREF *pclrText,
[in, out] COLORREF *pclrTextBk,
[out] LRESULT *plres);
HRESULT ItemPostPaint(
[in] HDC hdc,
[in] RECT *prc,
[in] NSTCCUSTOMDRAW *pnstccdItem);
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment