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
34588b39
Commit
34588b39
authored
Jul 01, 2011
by
Jacek Caban
Committed by
Alexandre Julliard
Jul 01, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shobjidl.idl: Added ITaskbarList[34] and ICustomDestinationList declarations.
parent
8edcb6ce
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
160 additions
and
4 deletions
+160
-4
shobjidl.idl
include/shobjidl.idl
+160
-4
No files found.
include/shobjidl.idl
View file @
34588b39
...
...
@@ -31,6 +31,7 @@ import "propidl.idl";
import
"msxml.idl"
;
import
"wtypes.idl"
;
import
"propsys.idl"
;
import
"objectarray.idl"
;
/*
FIXME
:
import
"structuredquery.idl"
; */
cpp_quote
(
"/* FIXME: #include <sherrors.h> */"
)
...
...
@@ -1871,6 +1872,130 @@ interface ITaskbarList2 : ITaskbarList
[in] BOOL fullscreen);
}
cpp_quote("#ifdef MIDL_PASS")
typedef IUnknown* HIMAGELIST;
cpp_quote("#endif")
typedef [v1_enum] enum THUMBBUTTONFLAGS {
THBF_ENABLED = 0x0000,
THBF_DISABLED = 0x0001,
THBF_DISMISSONCLICK = 0x0002,
THBF_NOBACKGROUND = 0x0004,
THBF_HIDDEN = 0x0008,
THBF_NONINTERACTIVE = 0x0010
} THUMBBUTTONFLAGS;
cpp_quote("DEFINE_ENUM_FLAG_OPERATORS(THUMBBUTTONFLAGS)")
typedef [v1_enum] enum THUMBBUTTONMASK {
THB_BITMAP = 0x0001,
THB_ICON = 0x0002,
THB_TOOLTIP = 0x0004,
THB_FLAGS = 0x0008
} THUMBBUTTONMASK;
cpp_quote("DEFINE_ENUM_FLAG_OPERATORS(THUMBBUTTONMASK)")
cpp_quote("#include <pshpack8.h>")
typedef struct THUMBBUTTON {
THUMBBUTTONMASK dwMask;
UINT iId;
UINT iBitmap;
HICON hIcon;
WCHAR szTip[260];
THUMBBUTTONFLAGS dwFlags;
} THUMBBUTTON, *LPTHUMBBUTTON;
cpp_quote("#include <poppack.h>")
[
uuid(ea1afb91-9e28-4b86-90e9-9e9f8a5eefaf),
object
]
interface ITaskbarList3 : ITaskbarList2
{
typedef [v1_enum] enum TBPFLAG {
TBPF_NOPROGRESS = 0x0000,
TBPF_INDETERMINATE = 0x0001,
TBPF_NORMAL = 0x0002,
TBPF_ERROR = 0x0004,
TBPF_PAUSED = 0x0008
} TBPFLAG;
cpp_quote("DEFINE_ENUM_FLAG_OPERATORS(TBPFLAG)")
HRESULT SetProgressValue(
[in] HWND hwnd,
[in] ULONGLONG ullCompleted,
[in] ULONGLONG ullTotal);
HRESULT SetProgressState(
[in] HWND hwnd,
[in] TBPFLAG tbpFlags);
HRESULT RegisterTab(
[in] HWND hwndTab,
[in] HWND hwndMDI);
HRESULT UnregisterTab([in] HWND hwndTab);
HRESULT SetTabOrder(
[in] HWND hwndTab,
[in] HWND hwndInsertBefore);
HRESULT SetTabActive(
[in] HWND hwndTab,
[in] HWND hwndMDI,
[in] DWORD dwReserved);
HRESULT ThumbBarAddButtons(
[in] HWND hwnd,
[in] UINT cButtons,
[in, size_is(cButtons)] LPTHUMBBUTTON pButton);
HRESULT ThumbBarUpdateButtons(
[in] HWND hwnd,
[in] UINT cButtons,
[in, size_is(cButtons)] LPTHUMBBUTTON pButton);
HRESULT ThumbBarSetImageList(
[in] HWND hwnd,
[in] HIMAGELIST himl);
HRESULT SetOverlayIcon(
[in] HWND hwnd,
[in] HICON hIcon,
[in, unique, string] LPCWSTR pszDescription);
HRESULT SetThumbnailTooltip(
[in] HWND hwnd,
[in, unique, string] LPCWSTR pszTip);
HRESULT SetThumbnailClip(
[in] HWND hwnd,
[in] RECT *prcClip);
}
[
uuid(c43dc798-95d1-4bea-9030-bb99e2983a1a),
object
]
interface ITaskbarList4 : ITaskbarList3
{
typedef [v1_enum] enum STPFLAG {
STPF_NONE = 0x0000,
STPF_USEAPPTHUMBNAILALWAYS = 0x0001,
STPF_USEAPPTHUMBNAILWHENACTIVE = 0x0002,
STPF_USEAPPPEEKALWAYS = 0x0004,
STPF_USEAPPPEEKWHENACTIVE = 0x0008
} STPFLAG;
cpp_quote("DEFINE_ENUM_FLAG_OPERATORS(STPFLAG)")
HRESULT SetTabProperties(
[in] HWND hwndTab,
[in] STPFLAG stpFlags);
}
/*****************************************************************************
* IAutoCompleteDropDown interface
*/
...
...
@@ -2327,10 +2452,6 @@ interface INameSpaceTreeControlEvents : IUnknown
[out] int *piOpenIcon);
}
cpp_quote("#ifdef MIDL_PASS")
typedef IUnknown *HIMAGELIST;
cpp_quote("#endif")
/*****************************************************************************
* INameSpaceTreeControlCustomDraw interface
*/
...
...
@@ -3137,6 +3258,41 @@ interface IApplicationAssociationRegistration : IUnknown
HRESULT ClearUserAssociations();
}
[
uuid(6332debf-87b5-4670-90c0-5e57b408a49e),
object,
pointer_default(unique)
]
interface ICustomDestinationList : IUnknown
{
typedef [v1_enum] enum KNOWNDESTCATEGORY {
KDC_FREQUENT = 1,
KDC_RECENT
} KNOWNDESTCATEGORY;
HRESULT SetAppID([in, string] LPCWSTR pszAppID);
HRESULT BeginList(
[out] UINT *pcMinSlots,
[in] REFIID riid,
[out, iid_is(riid)] void **ppv);
HRESULT AppendCategory(
[in, string] LPCWSTR pszCategory,
[in] IObjectArray *poa);
HRESULT AppendKnownCategory([in] KNOWNDESTCATEGORY category);
HRESULT AddUserTasks([in] IObjectArray *poa);
HRESULT CommitList();
HRESULT GetRemovedDestinations(
[in] REFIID riid,
[out, iid_is(riid)] void **ppv);
HRESULT DeleteList([in, unique, string] LPCWSTR pszAppID);
HRESULT AbortList();
}
/*****************************************************************************
* ShellObjects typelibrary
*/
...
...
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