mirror of https://github.com/lianthony/NT4.0
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
564 B
20 lines
564 B
|
|
[ uuid(af4ae0d0-a37f-11cf-8d73-00aa004cd01a),
|
|
object,
|
|
pointer_default(unique)
|
|
]
|
|
interface IPropertyStorageServer : IUnknown
|
|
{
|
|
import "objidl.idl";
|
|
|
|
HRESULT StgOpenPropStg( [in, string] const OLECHAR *pwcsName,
|
|
[in] REFFMTID fmtid,
|
|
[in] DWORD grfMode,
|
|
[out] IPropertyStorage **pppstg );
|
|
|
|
HRESULT StgOpenPropSetStg( [in, string] const OLECHAR *pwcsName,
|
|
[in] DWORD grfMode,
|
|
[out] IPropertySetStorage **pppsstg );
|
|
|
|
HRESULT MarshalUnknown( [in] IUnknown *punk );
|
|
}
|