vcshadow.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 "vcshadow.h"
  6. // Dispatch interfaces referenced by this interface
  7. #include "VcBrush.h"
  8. #include "VcCoor.h"
  9. /////////////////////////////////////////////////////////////////////////////
  10. // CVcShadow properties
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CVcShadow operations
  13. long CVcShadow::GetStyle()
  14. {
  15. long result;
  16. InvokeHelper(0x1, DISPATCH_PROPERTYGET, VT_I4, (void*)&result, NULL);
  17. return result;
  18. }
  19. void CVcShadow::SetStyle(long nNewValue)
  20. {
  21. static BYTE parms[] =
  22. VTS_I4;
  23. InvokeHelper(0x1, DISPATCH_PROPERTYPUT, VT_EMPTY, NULL, parms,
  24. nNewValue);
  25. }
  26. CVcBrush CVcShadow::GetBrush()
  27. {
  28. LPDISPATCH pDispatch;
  29. InvokeHelper(0x2, DISPATCH_PROPERTYGET, VT_DISPATCH, (void*)&pDispatch, NULL);
  30. return CVcBrush(pDispatch);
  31. }
  32. CVcCoor CVcShadow::GetOffset()
  33. {
  34. LPDISPATCH pDispatch;
  35. InvokeHelper(0x3, DISPATCH_PROPERTYGET, VT_DISPATCH, (void*)&pDispatch, NULL);
  36. return CVcCoor(pDispatch);
  37. }