ExEvent.idl
上传用户:weisheen
上传日期:2022-07-09
资源大小:19390k
文件大小:1k
- // ExEvent.idl : IDL source for ExEvent.dll
- //
- // This file will be processed by the MIDL tool to
- // produce the type library (ExEvent.tlb) and marshalling code.
- import "oaidl.idl";
- import "ocidl.idl";
- #include "olectl.h"
-
- [
- object,
- uuid(5D8918B7-6EE3-4D02-AC6E-BA7398FC872C),
- dual,
- helpstring("IMyAbcd Interface"),
- pointer_default(unique)
- ]
- interface IMyAbcd : IDispatch
- {
- };
- [
- uuid(2C5DC97C-87FC-455B-B5B6-4CE42A3CC212),
- version(1.0),
- helpstring("ExEvent 1.0 Type Library")
- ]
- library EXEVENTLib
- {
- importlib("stdole32.tlb");
- importlib("stdole2.tlb");
- [
- uuid(588E4844-9AB3-4B8B-BE17-67383E1DBAB8),
- helpstring("_IMyAbcdEvents Interface")
- ]
- dispinterface _IMyAbcdEvents
- {
- properties:
- methods:
- [id(1), helpstring("method show")] HRESULT show([in] int msg);
- };
- [
- uuid(20553217-5B7B-498F-A844-DA618F50C15D),
- helpstring("MyAbcd Class")
- ]
- coclass MyAbcd
- {
- [default] interface IMyAbcd;
- [default, source] dispinterface _IMyAbcdEvents;
- };
- };