mysecond.idl
上传用户:weisheen
上传日期:2022-07-09
资源大小:19390k
文件大小:1k
源码类别:
ActiveX/DCOM/ATL
开发平台:
Visual C++
- // mysecond.idl : IDL source for mysecond.dll
- //
- // This file will be processed by the MIDL tool to
- // produce the type library (mysecond.tlb) and marshalling code.
- import "oaidl.idl";
- import "ocidl.idl";
- [
- object,
- uuid(F5E8CF08-77A5-4DDB-BE22-CD42EC21CB4D),
- helpstring("Isecond Interface"),
- pointer_default(unique)
- ]
- interface Isecond : IUnknown
- {
- [helpstring("adsf")] HRESULT add([in] int a, [in] int b, [out] int* c);
- };
- [
- uuid(0C592335-49BA-44AB-8E5D-265A493441AE),
- version(1.0),
- helpstring("mysecond 1.0 Type Library")
- ]
- library MYSECONDLib
- {
- importlib("stdole32.tlb");
- importlib("stdole2.tlb");
- [
- uuid(2B39055F-57BF-44BB-A12B-ADC6D6320CE6),
- helpstring("second Class")
- ]
- coclass second
- {
- [default] interface Isecond;
- };
- };