mirror of
https://gitlab.winehq.org/wine/wine-staging.git
synced 2024-11-21 16:46:54 -08:00
65 lines
2.1 KiB
Diff
65 lines
2.1 KiB
Diff
|
From 730defc94816ecb8e67f79f4bbee7cf31bedfec1 Mon Sep 17 00:00:00 2001
|
||
|
From: =?UTF-8?q?Michael=20M=C3=BCller?= <michael@fds-team.de>
|
||
|
Date: Sun, 17 Jan 2016 00:46:34 +0100
|
||
|
Subject: include: Add IApplicationActivationManager interface declaration.
|
||
|
|
||
|
---
|
||
|
include/shobjidl.idl | 36 ++++++++++++++++++++++++++++++++++++
|
||
|
1 file changed, 36 insertions(+)
|
||
|
|
||
|
diff --git a/include/shobjidl.idl b/include/shobjidl.idl
|
||
|
index 1cc6132..cf9b8b3 100644
|
||
|
--- a/include/shobjidl.idl
|
||
|
+++ b/include/shobjidl.idl
|
||
|
@@ -3639,6 +3639,34 @@ typedef enum ASSOC_FILTER
|
||
|
} ASSOC_FILTER;
|
||
|
cpp_quote("HRESULT WINAPI SHAssocEnumHandlers(PCWSTR extra, ASSOC_FILTER filter, IEnumAssocHandlers **handlersenum);")
|
||
|
|
||
|
+typedef [v1_enum] enum ACTIVATEOPTIONS
|
||
|
+{
|
||
|
+ AO_NONE = 0x00000000,
|
||
|
+ AO_DESIGNMODE = 0x00000001,
|
||
|
+ AO_NOERRORUI = 0x00000002,
|
||
|
+ AO_NOSPLASHSCREEN = 0x00000004
|
||
|
+} ACTIVATEOPTIONS;
|
||
|
+
|
||
|
+[
|
||
|
+ uuid(2e941141-7f97-4756-ba1d-9decde894a3d),
|
||
|
+ object,
|
||
|
+ pointer_default(unique)
|
||
|
+]
|
||
|
+interface IApplicationActivationManager : IUnknown
|
||
|
+{
|
||
|
+ HRESULT ActivateApplication([in] LPCWSTR appusermodelid,
|
||
|
+ [in, unique] LPCWSTR arguments,
|
||
|
+ [in] ACTIVATEOPTIONS options,
|
||
|
+ [out] DWORD *processid);
|
||
|
+ HRESULT ActivateForFile([in] LPCWSTR appusermodelid,
|
||
|
+ [in] IShellItemArray *itemarray,
|
||
|
+ [in, unique] LPCWSTR verb,
|
||
|
+ [out] DWORD *processid);
|
||
|
+ HRESULT ActivateForProtocol([in] LPCWSTR appusermodelid,
|
||
|
+ [in] IShellItemArray *itemarray,
|
||
|
+ [out] DWORD *processid);
|
||
|
+}
|
||
|
+
|
||
|
/*****************************************************************************
|
||
|
* ShellObjects typelibrary
|
||
|
*/
|
||
|
@@ -3735,4 +3763,12 @@ library ShellObjects
|
||
|
{
|
||
|
interface IQueryCancelAutoPlay;
|
||
|
}
|
||
|
+
|
||
|
+ [
|
||
|
+ uuid(45ba127d-10a8-46ea-8ab7-56ea9078943c)
|
||
|
+ ]
|
||
|
+ coclass ApplicationActivationManager
|
||
|
+ {
|
||
|
+ interface IApplicationActivationManager;
|
||
|
+ }
|
||
|
}
|
||
|
--
|
||
|
2.6.4
|
||
|
|