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