[PSDK]
[reactos.git] / include / reactos / wine / irot.idl
index e1a6239..cdd209d 100644 (file)
@@ -22,75 +22,78 @@ cpp_quote("#define IROT_PROTSEQ {'n','c','a','l','r','p','c',0}")
 cpp_quote("#define IROT_ENDPOINT {'i','r','o','t',0}")
 
 typedef struct tagMonikerComparisonData {
-        ULONG ulCntData;
-        [size_is(ulCntData)] BYTE abData[];
+       ULONG ulCntData;
+       [size_is(ulCntData)] BYTE abData[];
 } MonikerComparisonData;
 
 [
     uuid(7a98c254-6808-11cf-b73b-00aa00b677a8),
-    version(0.2)
+    version(0.2),
+#ifndef _MSC_VER
+    strict_context_handle
+#endif
 ]
 interface Irot
 {
-        typedef struct tagInterfaceData
-        {
-                ULONG ulCntData;
-                [size_is(ulCntData)] BYTE abData[];
-        } InterfaceData;
-
-        typedef [unique] InterfaceData *PInterfaceData;
-
-        typedef struct tagInterfaceList
-        {
-                ULONG size;
-                [size_is(size)] PInterfaceData interfaces[];
-        } InterfaceList;
-
-        typedef [unique] InterfaceList *PInterfaceList;
-
-        typedef DWORD IrotCookie;
-
-        typedef handle_t IrotHandle;
-        typedef [context_handle] void *IrotContextHandle;
-
-        HRESULT IrotRegister(
-                [in]  IrotHandle h,
-                [in]  const MonikerComparisonData *moniker_data,
-                [in]  const InterfaceData *object,
-                [in]  const InterfaceData *moniker,
-                [in]  const FILETIME *time,
-                [in]  DWORD grfFlags,
-                [out] IrotCookie *cookie,
-                [out] IrotContextHandle *ctxt_handle);
-
-        HRESULT IrotRevoke(
-                [in]  IrotHandle h,
-                [in]  IrotCookie cookie,
-                [in, out] IrotContextHandle *ctxt_handle,
-                [out] PInterfaceData *object,
-                [out] PInterfaceData *moniker);
-
-        HRESULT IrotIsRunning(
-                [in]  IrotHandle h,
-                [in]  const MonikerComparisonData *moniker_data);
-
-        HRESULT IrotGetObject(
-                [in]  IrotHandle h,
-                [in]  const MonikerComparisonData *moniker_data,
-                [out] PInterfaceData *obj,
-                [out] IrotCookie *cookie);
-
-        HRESULT IrotNoteChangeTime(
-                [in]  IrotHandle h,
-                [in]  IrotCookie cookie,
-                [in]  const FILETIME *time);
-
-        HRESULT IrotGetTimeOfLastChange(
-                [in]  IrotHandle h,
-                [in]  const MonikerComparisonData *moniker_data,
-                [out] FILETIME *time);
-
-        HRESULT IrotEnumRunning(
-                [in]  IrotHandle h,
-                [out] PInterfaceList *list);
+       typedef struct tagInterfaceData
+       {
+               ULONG ulCntData;
+               [size_is(ulCntData)] BYTE abData[];
+       } InterfaceData;
+
+       typedef [unique] InterfaceData *PInterfaceData;
+
+       typedef struct tagInterfaceList
+       {
+               ULONG size;
+               [size_is(size)] PInterfaceData interfaces[];
+       } InterfaceList;
+
+       typedef [unique] InterfaceList *PInterfaceList;
+
+       typedef DWORD IrotCookie;
+
+       typedef handle_t IrotHandle;
+       typedef [context_handle] void *IrotContextHandle;
+
+       HRESULT IrotRegister(
+               [in]  IrotHandle h,
+               [in]  const MonikerComparisonData *moniker_data,
+               [in]  const InterfaceData *object,
+               [in]  const InterfaceData *moniker,
+               [in]  const FILETIME *time,
+               [in]  DWORD grfFlags,
+               [out] IrotCookie *cookie,
+               [out] IrotContextHandle *ctxt_handle);
+
+       HRESULT IrotRevoke(
+               [in]  IrotHandle h,
+               [in]  IrotCookie cookie,
+               [in, out] IrotContextHandle *ctxt_handle,
+               [out] PInterfaceData *object,
+               [out] PInterfaceData *moniker);
+
+       HRESULT IrotIsRunning(
+               [in]  IrotHandle h,
+               [in]  const MonikerComparisonData *moniker_data);
+
+       HRESULT IrotGetObject(
+               [in]  IrotHandle h,
+               [in]  const MonikerComparisonData *moniker_data,
+               [out] PInterfaceData *obj,
+               [out] IrotCookie *cookie);
+
+       HRESULT IrotNoteChangeTime(
+               [in]  IrotHandle h,
+               [in]  IrotCookie cookie,
+               [in]  const FILETIME *time);
+
+       HRESULT IrotGetTimeOfLastChange(
+               [in]  IrotHandle h,
+               [in]  const MonikerComparisonData *moniker_data,
+               [out] FILETIME *time);
+
+       HRESULT IrotEnumRunning(
+               [in]  IrotHandle h,
+               [out] PInterfaceList *list);
 }