Commit f91f9c8b authored by Huw Davies's avatar Huw Davies Committed by Alexandre Julliard

include: Fill in IMimeEnumProperties.

parent 22a33168
...@@ -1074,6 +1074,8 @@ cpp_quote("#endif") ...@@ -1074,6 +1074,8 @@ cpp_quote("#endif")
] ]
interface IMimeEnumProperties : IUnknown interface IMimeEnumProperties : IUnknown
{ {
typedef [unique] IMimeEnumProperties *LPMIMEENUMPROPERTIES;
typedef struct tagENUMPROPERTY typedef struct tagENUMPROPERTY
{ {
LPSTR pszName; LPSTR pszName;
...@@ -1081,7 +1083,22 @@ cpp_quote("#endif") ...@@ -1081,7 +1083,22 @@ cpp_quote("#endif")
DWORD dwPropId; DWORD dwPropId;
} ENUMPROPERTY, *LPENUMPROPERTY; } ENUMPROPERTY, *LPENUMPROPERTY;
/* FIXME: fill this in */ HRESULT Next(
[in] ULONG cFetch,
[in, out] LPENUMPROPERTY prgProp,
[out] ULONG *pcFetched);
HRESULT Skip(
[in] ULONG cItems);
HRESULT Reset(void);
HRESULT Clone(
[out] IMimeEnumProperties **ppEnum);
HRESULT Count(
[out] ULONG *pcItems);
} }
[ [
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment