vcwall.cpp 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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 "vcwall.h"
  6. // Dispatch interfaces referenced by this interface
  7. #include "VcBrush.h"
  8. #include "VcPen.h"
  9. /////////////////////////////////////////////////////////////////////////////
  10. // CVcWall properties
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CVcWall operations
  13. float CVcWall::GetWidth()
  14. {
  15. float result;
  16. InvokeHelper(0x1, DISPATCH_PROPERTYGET, VT_R4, (void*)&result, NULL);
  17. return result;
  18. }
  19. void CVcWall::SetWidth(float newValue)
  20. {
  21. static BYTE parms[] =
  22. VTS_R4;
  23. InvokeHelper(0x1, DISPATCH_PROPERTYPUT, VT_EMPTY, NULL, parms,
  24. newValue);
  25. }
  26. CVcBrush CVcWall::GetBrush()
  27. {
  28. LPDISPATCH pDispatch;
  29. InvokeHelper(0x2, DISPATCH_PROPERTYGET, VT_DISPATCH, (void*)&pDispatch, NULL);
  30. return CVcBrush(pDispatch);
  31. }
  32. CVcPen CVcWall::GetPen()
  33. {
  34. LPDISPATCH pDispatch;
  35. InvokeHelper(0x3, DISPATCH_PROPERTYGET, VT_DISPATCH, (void*)&pDispatch, NULL);
  36. return CVcPen(pDispatch);
  37. }