properties.cpp
上传用户:biney012
上传日期:2022-05-09
资源大小:4592k
文件大小:1k
源码类别:

数据库系统

开发平台:

Visual C++

  1. // Machine generated IDispatch wrapper class(es) created by Microsoft Visual C++
  2. // NOTE: Do not modify the contents of this file.  If this class is regenerated by
  3. //  Microsoft Visual C++, your modifications will be overwritten.
  4. #include "stdafx.h"
  5. #include "properties.h"
  6. // Dispatch interfaces referenced by this interface
  7. #include "Property.h"
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CProperties properties
  10. /////////////////////////////////////////////////////////////////////////////
  11. // CProperties operations
  12. long CProperties::GetCount()
  13. {
  14. long result;
  15. InvokeHelper(0x60020000, DISPATCH_PROPERTYGET, VT_I4, (void*)&result, NULL);
  16. return result;
  17. }
  18. void CProperties::Refresh()
  19. {
  20. InvokeHelper(0x60020002, DISPATCH_METHOD, VT_EMPTY, NULL, NULL);
  21. }
  22. CProperty CProperties::GetItem(const VARIANT& Index)
  23. {
  24. LPDISPATCH pDispatch;
  25. static BYTE parms[] =
  26. VTS_VARIANT;
  27. InvokeHelper(0x0, DISPATCH_PROPERTYGET, VT_DISPATCH, (void*)&pDispatch, parms,
  28. &Index);
  29. return CProperty(pDispatch);
  30. }