wmpstringcollection.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 "wmpstringcollection.h"
  6. /////////////////////////////////////////////////////////////////////////////
  7. // CWMPStringCollection properties
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CWMPStringCollection operations
  10. long CWMPStringCollection::GetCount()
  11. {
  12. long result;
  13. InvokeHelper(0x191, DISPATCH_PROPERTYGET, VT_I4, (void*)&result, NULL);
  14. return result;
  15. }
  16. CString CWMPStringCollection::Item(long lIndex)
  17. {
  18. CString result;
  19. static BYTE parms[] =
  20. VTS_I4;
  21. InvokeHelper(0x192, DISPATCH_METHOD, VT_BSTR, (void*)&result, parms,
  22. lIndex);
  23. return result;
  24. }