exsmartp.idl
上传用户:weisheen
上传日期:2022-07-09
资源大小:19390k
文件大小:1k
源码类别:
ActiveX/DCOM/ATL
开发平台:
Visual C++
- // exsmartp.idl : IDL source for exsmartp.dll
- //
- // This file will be processed by the MIDL tool to
- // produce the type library (exsmartp.tlb) and marshalling code.
- import "oaidl.idl";
- import "ocidl.idl";
- [
- object,
- uuid(C331A2FC-DC93-4778-8E9F-A5E52BB0EA5B),
- dual,
- helpstring("IMyAbc Interface"),
- pointer_default(unique)
- ]
- interface IMyAbc : IDispatch
- {
- [id(1), helpstring("method Hello")] HRESULT Hello([in] BSTR name, [out] BSTR* bstrResult);
- };
- [
- uuid(5CEED2D8-BA6F-43BE-8BDE-BB7B8601390D),
- version(1.0),
- helpstring("exsmartp 1.0 Type Library")
- ]
- library EXSMARTPLib
- {
- importlib("stdole32.tlb");
- importlib("stdole2.tlb");
- [
- uuid(72B2E2F4-6596-4F7C-A9B7-38C85C5EC2AF),
- helpstring("MyAbc Class")
- ]
- coclass MyAbc
- {
- [default] interface IMyAbc;
- };
- };