diff options
Diffstat (limited to 'plugins/!Deprecated/W7UI/src/win7api_IObjectArray.h')
-rw-r--r-- | plugins/!Deprecated/W7UI/src/win7api_IObjectArray.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/plugins/!Deprecated/W7UI/src/win7api_IObjectArray.h b/plugins/!Deprecated/W7UI/src/win7api_IObjectArray.h new file mode 100644 index 0000000000..2102276989 --- /dev/null +++ b/plugins/!Deprecated/W7UI/src/win7api_IObjectArray.h @@ -0,0 +1,15 @@ +#ifndef __IObjectArray_INTERFACE_DEFINED__
+#define __IObjectArray_INTERFACE_DEFINED__
+
+MIDL_INTERFACE("92CA9DCD-5622-4bba-A805-5E9F541BD8C9")
+IObjectArray : public IUnknown {
+ public:
+ virtual HRESULT STDMETHODCALLTYPE GetCount(
+ /* [out] */ __RPC__out UINT *pcObjects) = 0;
+ virtual HRESULT STDMETHODCALLTYPE GetAt(
+ /* [in] */ UINT uiIndex,
+ /* [in] */ __RPC__in REFIID riid,
+ /* [iid_is][out] */ __RPC__deref_out_opt void **ppv) = 0;
+};
+
+#endif // __IObjectArray_INTERFACE_DEFINED__
|