vcseriescollection.cpp 955 B

1234567891011121314151617181920212223242526272829303132333435
  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 "vcseriescollection.h"
  6. // Dispatch interfaces referenced by this interface
  7. #include "vcseries.h"
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CVcSeriesCollection properties
  10. /////////////////////////////////////////////////////////////////////////////
  11. // CVcSeriesCollection operations
  12. long CVcSeriesCollection::Count()
  13. {
  14. long result;
  15. InvokeHelper(0x1, DISPATCH_METHOD, VT_I4, (void*)&result, NULL);
  16. return result;
  17. }
  18. CVcSeries CVcSeriesCollection::GetItem(short Index)
  19. {
  20. LPDISPATCH pDispatch;
  21. static BYTE parms[] =
  22. VTS_I2;
  23. InvokeHelper(0x0, DISPATCH_PROPERTYGET, VT_DISPATCH, (void*)&pDispatch, parms,
  24. Index);
  25. return CVcSeries(pDispatch);
  26. }