COMPLEXDB.IDL
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:1k
源码类别:

Windows编程

开发平台:

Visual C++

  1. #include <olectl.h>
  2. // ComplexDB.idl : IDL source for ComplexDB.dll
  3. //
  4. // This file will be processed by the MIDL tool to
  5. // produce the type library (ComplexDB.tlb) and marshalling code.
  6. import "oaidl.idl";
  7. import "ocidl.idl";
  8. [
  9. uuid(392BBDE2-06E1-11D1-8F8F-000000000000),
  10. version(1.0),
  11. helpstring("ComplexDB 1.0 Type Library")
  12. ]
  13. library COMPLEXDBLib
  14. {
  15. importlib("stdole32.tlb");
  16. importlib("stdole2.tlb");
  17. importlib("msdatsrc.tlb");
  18. [
  19. object,
  20. uuid(392BBDEF-06E1-11D1-8F8F-000000000000),
  21. dual,
  22. helpstring("IComplexCtl Interface"),
  23. pointer_default(unique)
  24. ]
  25. interface IComplexCtl : IDispatch
  26. {
  27. [propget, id(1), helpstring("property DataSource")] HRESULT DataSource([out, retval] DataSource** ppDataSource);
  28. [propputref, id(1), helpstring("property DataSource")] HRESULT DataSource([in] DataSource* pDataSource);
  29. [propget, id(2), helpstring("property DataMember")] HRESULT DataMember([out, retval] DataMember *pVal);
  30. [propput, id(2), helpstring("property DataMember")] HRESULT DataMember([in] DataMember newVal);
  31. [propget, id(3), helpstring("property FieldName")] HRESULT FieldName([out, retval] BSTR *pVal);
  32. [propput, id(3), helpstring("property FieldName")] HRESULT FieldName([in] BSTR newVal);
  33. };
  34. [
  35. uuid(392BBDF0-06E1-11D1-8F8F-000000000000),
  36. helpstring("ComplexCtl Class")
  37. ]
  38. coclass ComplexCtl
  39. {
  40. [default] interface IComplexCtl;
  41. };
  42. };