Platform.idl
上传用户:easylife05
上传日期:2007-02-14
资源大小:393k
文件大小:1k
- // Platform.idl : Platform 的 IDL 源
- //
- // 此文件将由 MIDL 工具处理以
- // 产生类型库 (Platform.tlb) 和封送处理代码。
- #include "commstruct.h"
- //-----------------------------------------
- import "oaidl.idl";
- import "ocidl.idl";
- [
- object,
- uuid(AF4258EC-938B-475B-A55F-4167B11F20A7),
- helpstring("IServer 接口"),
- pointer_default(unique)
- ]
- interface IServer : IUnknown{
- [helpstring("方法GetDataPoint")] HRESULT GetDataPoint([out] myGraph** dPointer);
- [helpstring("方法NewDataCircle")] HRESULT NewDataCircle([in] myGraph* pGraph);
- };
- [
- uuid(6AA81188-AE81-4A86-AF67-FAD286B92094),
- version(1.0),
- helpstring("Platform 1.0 类型库")
- ]
- library PlatformLib
- {
- importlib("stdole2.tlb");
- [
- uuid(B0A7E02B-6181-49AF-995F-395948E77CC4),
- helpstring("Server Class")
- ]
- coclass Server
- {
- [default] interface IServer;
- };
- };