vclocation.cpp 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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 "vclocation.h"
  6. // Dispatch interfaces referenced by this interface
  7. #include "VcRect.h"
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CVcLocation properties
  10. /////////////////////////////////////////////////////////////////////////////
  11. // CVcLocation operations
  12. CVcRect CVcLocation::GetRect()
  13. {
  14. LPDISPATCH pDispatch;
  15. InvokeHelper(0x1, DISPATCH_PROPERTYGET, VT_DISPATCH, (void*)&pDispatch, NULL);
  16. return CVcRect(pDispatch);
  17. }
  18. BOOL CVcLocation::GetVisible()
  19. {
  20. BOOL result;
  21. InvokeHelper(0x2, DISPATCH_PROPERTYGET, VT_BOOL, (void*)&result, NULL);
  22. return result;
  23. }
  24. void CVcLocation::SetVisible(BOOL bNewValue)
  25. {
  26. static BYTE parms[] =
  27. VTS_BOOL;
  28. InvokeHelper(0x2, DISPATCH_PROPERTYPUT, VT_EMPTY, NULL, parms,
  29. bNewValue);
  30. }
  31. long CVcLocation::GetLocationType()
  32. {
  33. long result;
  34. InvokeHelper(0x3, DISPATCH_PROPERTYGET, VT_I4, (void*)&result, NULL);
  35. return result;
  36. }
  37. void CVcLocation::SetLocationType(long nNewValue)
  38. {
  39. static BYTE parms[] =
  40. VTS_I4;
  41. InvokeHelper(0x3, DISPATCH_PROPERTYPUT, VT_EMPTY, NULL, parms,
  42. nNewValue);
  43. }