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.
50 lines
1.2 KiB
50 lines
1.2 KiB
// DocWrap.idl : IDL source for DocWrap.dll
|
|
//
|
|
|
|
// This file will be processed by the MIDL tool to
|
|
// produce the type library (DocWrap.tlb) and marshalling code.
|
|
|
|
import "oaidl.idl";
|
|
import "ocidl.idl";
|
|
[
|
|
object,
|
|
uuid(DCD285FE-0BE0-43BD-99C9-AAAEC513C555),
|
|
|
|
helpstring("IDocWrap Interface"),
|
|
pointer_default(unique)
|
|
]
|
|
interface IDocWrap : IUnknown
|
|
{
|
|
HRESULT SetDoc(
|
|
[in] REFIID riid,
|
|
[in, iid_is(riid)] IUnknown * punk
|
|
);
|
|
|
|
HRESULT GetWrappedDoc (
|
|
[in] REFIID riid,
|
|
[out, iid_is(riid)] IUnknown ** ppunk
|
|
);
|
|
};
|
|
|
|
[
|
|
uuid(E427C612-F306-4AE3-936F-5FBF778AC029),
|
|
version(1.0),
|
|
helpstring("DocWrap 1.0 Type Library")
|
|
]
|
|
library DOCWRAPLib
|
|
{
|
|
importlib("stdole2.tlb");
|
|
|
|
[
|
|
uuid(BF426F7E-7A5E-44D6-830C-A390EA9462A3),
|
|
helpstring("DocWrap Class")
|
|
]
|
|
coclass DocWrap
|
|
{
|
|
[default] interface IDocWrap;
|
|
};
|
|
};
|
|
|
|
cpp_quote("DEFINE_GUID( IID_IDocWrap, 0xDCD285FE,0x0BE0,0x43BD,0x99,0xC9,0xAA,0xAE,0xC5,0x13,0xC5,0x55);")
|
|
cpp_quote("DEFINE_GUID( LIBID_DOCWRAPLib, 0xE427C612,0xF306,0x4AE3,0x93,0x6F,0x5F,0xBF,0x77,0x8A,0xC0,0x29);")
|
|
cpp_quote("DEFINE_GUID( CLSID_DocWrap, 0xBF426F7E,0x7A5E,0x44D6,0x83,0x0C,0xA3,0x90,0xEA,0x94,0x62,0xA3);")
|