Alistair Leslie-Hughes : include: Add IWbemUnsecuredApartment interfaces.

Alexandre Julliard julliard at winehq.org
Fri Aug 24 13:59:14 CDT 2018


Module: wine
Branch: master
Commit: 8d834ca945fa7f1b82c562cd2e14a2e9fd7acd43
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=8d834ca945fa7f1b82c562cd2e14a2e9fd7acd43

Author: Alistair Leslie-Hughes <leslie_alistair at hotmail.com>
Date:   Fri Aug 24 04:10:59 2018 +0000

include: Add IWbemUnsecuredApartment interfaces.

Signed-off-by: Alistair Leslie-Hughes <leslie_alistair at hotmail.com>
Signed-off-by: Hans Leidekker <hans at codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 include/wbemcli.idl | 43 +++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 43 insertions(+)

diff --git a/include/wbemcli.idl b/include/wbemcli.idl
index 4a0f4e2..54cdb88 100644
--- a/include/wbemcli.idl
+++ b/include/wbemcli.idl
@@ -660,3 +660,46 @@ interface IWbemQualifierSet : IUnknown
 
     HRESULT EndEnumeration();
 }
+
+
+typedef [v1_enum] enum tag_WBEM_UNSECAPP_FLAG_TYPE
+{
+    WBEM_FLAG_UNSECAPP_DEFAULT_CHECK_ACCESS,
+    WBEM_FLAG_UNSECAPP_CHECK_ACCESS,
+    WBEM_FLAG_UNSECAPP_DONT_CHECK_ACCESS
+} WBEM_UNSECAPP_FLAG_TYPE;
+
+[
+    object,
+    restricted,
+    uuid(1cfaba8c-1523-11d1-ad79-00c04fd8fdff)
+]
+interface IUnsecuredApartment : IUnknown
+{
+    HRESULT CreateObjectStub(
+        [in] IUnknown *object,
+        [out] IUnknown **stub);
+};
+
+[
+    object,
+    restricted,
+    uuid(31739d04-3471-4cf4-9a7c-57a44ae71956)
+]
+interface IWbemUnsecuredApartment : IUnsecuredApartment
+{
+    HRESULT CreateSinkStub(
+        [in] IWbemObjectSink *sink,
+        [in] DWORD flags,
+        [in,unique] const WCHAR *reserved,
+        [out] IWbemObjectSink **stub);
+};
+
+[
+    uuid(49bd2028-1523-11d1-ad79-00c04fd8fdff)
+]
+coclass UnsecuredApartment
+{
+    interface IUnsecuredApartment;
+    interface IWbemUnsecuredApartment;
+};




More information about the wine-cvs mailing list