vclightsources.cpp 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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 "vclightsources.h"
  6. // Dispatch interfaces referenced by this interface
  7. #include "vclightsource.h"
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CVcLightSources properties
  10. /////////////////////////////////////////////////////////////////////////////
  11. // CVcLightSources operations
  12. long CVcLightSources::GetCount()
  13. {
  14. long result;
  15. InvokeHelper(0x1, DISPATCH_PROPERTYGET, VT_I4, (void*)&result, NULL);
  16. return result;
  17. }
  18. CVcLightSource CVcLightSources::Add(float X, float Y, float Z, float Intensity)
  19. {
  20. LPDISPATCH pDispatch;
  21. static BYTE parms[] =
  22. VTS_R4 VTS_R4 VTS_R4 VTS_R4;
  23. InvokeHelper(0x2, DISPATCH_METHOD, VT_DISPATCH, (void*)&pDispatch, parms,
  24. X, Y, Z, Intensity);
  25. return CVcLightSource(pDispatch);
  26. }
  27. void CVcLightSources::Remove(short Index)
  28. {
  29. static BYTE parms[] =
  30. VTS_I2;
  31. InvokeHelper(0x3, DISPATCH_METHOD, VT_EMPTY, NULL, parms,
  32. Index);
  33. }
  34. CVcLightSource CVcLightSources::GetItem(short Index)
  35. {
  36. LPDISPATCH pDispatch;
  37. static BYTE parms[] =
  38. VTS_I2;
  39. InvokeHelper(0x0, DISPATCH_PROPERTYGET, VT_DISPATCH, (void*)&pDispatch, parms,
  40. Index);
  41. return CVcLightSource(pDispatch);
  42. }