diff options
author | Berke Viktor <bviktor@hexchat.org> | 2013-04-13 02:38:44 +0200 |
---|---|---|
committer | Berke Viktor <bviktor@hexchat.org> | 2013-04-13 02:38:44 +0200 |
commit | 0c351c9cbc273b89c8ff21c8b80c162f8b6be494 (patch) | |
tree | 1f87233c457a71d137b4d6246320f5ec0bfac94f /plugins/wmpa/wmpplaylistcollection.cpp | |
parent | cc1f2b2d27e5a41f0cbb32b34329e720b8e63f59 (diff) |
Nuke WMPA, not supported by Express
Diffstat (limited to 'plugins/wmpa/wmpplaylistcollection.cpp')
-rw-r--r-- | plugins/wmpa/wmpplaylistcollection.cpp | 82 |
1 files changed, 0 insertions, 82 deletions
diff --git a/plugins/wmpa/wmpplaylistcollection.cpp b/plugins/wmpa/wmpplaylistcollection.cpp deleted file mode 100644 index f13c98de..00000000 --- a/plugins/wmpa/wmpplaylistcollection.cpp +++ /dev/null @@ -1,82 +0,0 @@ -// Machine generated IDispatch wrapper class(es) created by Microsoft Visual C++ - -// NOTE: Do not modify the contents of this file. If this class is regenerated by -// Microsoft Visual C++, your modifications will be overwritten. - - -#include "stdafx.h" -#include "wmpplaylistcollection.h" - -// Dispatch interfaces referenced by this interface -#include "wmpplaylist.h" -#include "WMPPlaylistArray.h" - - -///////////////////////////////////////////////////////////////////////////// -// CWMPPlaylistCollection properties - -///////////////////////////////////////////////////////////////////////////// -// CWMPPlaylistCollection operations - -CWMPPlaylist CWMPPlaylistCollection::newPlaylist(LPCTSTR bstrName) -{ - LPDISPATCH pDispatch; - static BYTE parms[] = - VTS_BSTR; - InvokeHelper(0x228, DISPATCH_METHOD, VT_DISPATCH, (void*)&pDispatch, parms, - bstrName); - return CWMPPlaylist(pDispatch); -} - -CWMPPlaylistArray CWMPPlaylistCollection::getAll() -{ - LPDISPATCH pDispatch; - InvokeHelper(0x229, DISPATCH_METHOD, VT_DISPATCH, (void*)&pDispatch, NULL); - return CWMPPlaylistArray(pDispatch); -} - -CWMPPlaylistArray CWMPPlaylistCollection::getByName(LPCTSTR bstrName) -{ - LPDISPATCH pDispatch; - static BYTE parms[] = - VTS_BSTR; - InvokeHelper(0x22a, DISPATCH_METHOD, VT_DISPATCH, (void*)&pDispatch, parms, - bstrName); - return CWMPPlaylistArray(pDispatch); -} - -void CWMPPlaylistCollection::remove(LPDISPATCH pItem) -{ - static BYTE parms[] = - VTS_DISPATCH; - InvokeHelper(0x22c, DISPATCH_METHOD, VT_EMPTY, NULL, parms, - pItem); -} - -void CWMPPlaylistCollection::setDeleted(LPDISPATCH pItem, BOOL varfIsDeleted) -{ - static BYTE parms[] = - VTS_DISPATCH VTS_BOOL; - InvokeHelper(0x230, DISPATCH_METHOD, VT_EMPTY, NULL, parms, - pItem, varfIsDeleted); -} - -BOOL CWMPPlaylistCollection::isDeleted(LPDISPATCH pItem) -{ - BOOL result; - static BYTE parms[] = - VTS_DISPATCH; - InvokeHelper(0x231, DISPATCH_METHOD, VT_BOOL, (void*)&result, parms, - pItem); - return result; -} - -CWMPPlaylist CWMPPlaylistCollection::importPlaylist(LPDISPATCH pItem) -{ - LPDISPATCH pDispatch; - static BYTE parms[] = - VTS_DISPATCH; - InvokeHelper(0x232, DISPATCH_METHOD, VT_DISPATCH, (void*)&pDispatch, parms, - pItem); - return CWMPPlaylist(pDispatch); -} |