ex.idl
上传用户:weisheen
上传日期:2022-07-09
资源大小:19390k
文件大小:1k
- // ex.idl : IDL source for ex.dll
- //
- // This file will be processed by the MIDL tool to
- // produce the type library (ex.tlb) and marshalling code.
- import "oaidl.idl";
- import "ocidl.idl";
-
- [
- object,
- uuid(D2E64D74-69E9-4403-9116-7C313F34D0F3),
- dual,
- helpstring("Iwork Interface"),
- pointer_default(unique)
- ]
- interface Iwork : IDispatch
- {
- };
- [
- uuid(0D216BC9-80A0-4C0E-A240-33542FE5DD2F),
- version(1.0),
- helpstring("ex 1.0 Type Library")
- ]
- library EXLib
- {
- importlib("stdole32.tlb");
- importlib("stdole2.tlb");
-
- [
- uuid(F8F15DDA-512D-4A82-ADC7-57E581377205),
- helpstring("work Class")
- ]
- coclass work
- {
- [default] interface Iwork;
- };
- };