Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
2f10cc5c
Commit
2f10cc5c
authored
Sep 23, 2008
by
Rob Shearman
Committed by
Alexandre Julliard
Sep 23, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
include: Add DShellFolderViewEvents to shldisp.idl.
parent
39894c24
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
56 additions
and
0 deletions
+56
-0
Makefile.in
include/Makefile.in
+1
-0
shdispid.h
include/shdispid.h
+30
-0
shldisp.idl
include/shldisp.idl
+25
-0
No files found.
include/Makefile.in
View file @
2f10cc5c
...
...
@@ -373,6 +373,7 @@ SRCDIR_INCLUDES = \
sensapi.h
\
setupapi.h
\
sfc.h
\
shdispid.h
\
shellapi.h
\
shlguid.h
\
shlobj.h
\
...
...
include/shdispid.h
0 → 100644
View file @
2f10cc5c
/*
* DispIds for Shell Interfaces
*
* Copyright (C) 2008 Robert Shearman
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#ifndef _SHDISPID_H_
#define _SHDISPID_H_
#define DISPID_SELECTIONCHANGED 200
#define DISPID_FILELISTENUMDONE 201
#define DISPID_VERBINVOKED 202
#define DISPID_DEFAULTVERBINVOKED 203
#define DISPID_BEGINDRAG 204
#endif
/* defined _SHDISPID_H_ */
include/shldisp.idl
View file @
2f10cc5c
...
...
@@ -25,6 +25,8 @@ import "shtypes.idl";
import
"servprov.idl"
;
import
"comcat.idl"
;
#
include
<
shdispid
.
h>
/*****************************************************************************
*
IAutoComplete
interface
*/
...
...
@@ -85,6 +87,29 @@ interface IFolderViewOC : IDispatch
}
[
uuid(62112aa2-ebe4-11cf-a5fb-0020afe7292d)
]
dispinterface DShellFolderViewEvents
{
properties:
methods:
[id(DISPID_SELECTIONCHANGED)]
void SelectionChanged();
[id(DISPID_FILELISTENUMDONE)]
void EnumDone();
[id(DISPID_VERBINVOKED)]
VARIANT_BOOL VerbInvoked();
[id(DISPID_DEFAULTVERBINVOKED)]
VARIANT_BOOL DefaultVerbInvoked();
[id(DISPID_BEGINDRAG)]
VARIANT_BOOL BeginDrag();
}
[
uuid(9ba05971-f6a8-11cf-a442-00a0c90a8f39),
hidden
]
...
...
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