wmpplaylistarray.cpp
上传用户:zbtianhong
上传日期:2022-07-12
资源大小:3707k
文件大小:1k
源码类别:

多媒体编程

开发平台:

Visual C++

  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 "wmpplaylistarray.h"
  6. // Dispatch interfaces referenced by this interface
  7. #include "wmpplaylist.h"
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CWMPPlaylistArray properties
  10. /////////////////////////////////////////////////////////////////////////////
  11. // CWMPPlaylistArray operations
  12. long CWMPPlaylistArray::GetCount()
  13. {
  14. long result;
  15. InvokeHelper(0x1f5, DISPATCH_PROPERTYGET, VT_I4, (void*)&result, NULL);
  16. return result;
  17. }
  18. CWMPPlaylist CWMPPlaylistArray::Item(long lIndex)
  19. {
  20. LPDISPATCH pDispatch;
  21. static BYTE parms[] =
  22. VTS_I4;
  23. InvokeHelper(0x1f6, DISPATCH_METHOD, VT_DISPATCH, (void*)&pDispatch, parms,
  24. lIndex);
  25. return CWMPPlaylist(pDispatch);
  26. }