mirror of
https://github.com/reactos/reactos.git
synced 2025-08-02 05:25:48 +00:00
[BROWSEUI][PSDK] Stubplement UserAssist
Initial implementation of `CUserAssist` class, which contains `IUserAssist` interface. See https://www.geoffchappell.com/studies/windows/ie/browseui/classes/userassist.htm. Required by MS shell32.dll. CORE-17345 CORE-17393
This commit is contained in:
parent
bb209e9010
commit
1f5e0f3fa7
10 changed files with 138 additions and 1 deletions
|
@ -4768,4 +4768,40 @@ interface IItemNameLimits : IUnknown
|
|||
[out] int *piMaxNameLen);
|
||||
};
|
||||
|
||||
/*****************************************************************************
|
||||
* IUserAssist interface
|
||||
*/
|
||||
[
|
||||
uuid(dd313e05-feff-11d1-8ecd-0000f87a470c),
|
||||
object,
|
||||
local,
|
||||
pointer_default(unique)
|
||||
]
|
||||
interface IUserAssist : IUnknown
|
||||
{
|
||||
HRESULT FireEvent(
|
||||
GUID const *guid,
|
||||
INT param1,
|
||||
ULONG param2,
|
||||
WPARAM wparam,
|
||||
LPARAM lparam);
|
||||
|
||||
HRESULT QueryEvent(
|
||||
GUID const *guid,
|
||||
INT param,
|
||||
WPARAM wparam,
|
||||
LPARAM lparam,
|
||||
PVOID ptr);
|
||||
|
||||
HRESULT SetEvent(
|
||||
GUID const *guid,
|
||||
INT param,
|
||||
WPARAM wparam,
|
||||
LPARAM lparam,
|
||||
PVOID ptr);
|
||||
|
||||
HRESULT Enable(
|
||||
BOOL bEnable);
|
||||
};
|
||||
|
||||
#endif // __REACTOS__
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue