Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/LAVFilters.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHendrik Leppkes <h.leppkes@gmail.com>2015-04-03 17:22:25 +0300
committerHendrik Leppkes <h.leppkes@gmail.com>2015-04-03 17:22:39 +0300
commit52d9d76c503fcea5e4a1431127fe2f916ba830db (patch)
tree08a88a0acf188e3eb1f866e8b0397d61dcd34aea /developer_info
parent8690f88e88e429718ece59850f6504d616031059 (diff)
Export coverart and attachments through IDSMResourceBag
Based on a patch by Underground78 <underground78@users.sourceforge.net>
Diffstat (limited to 'developer_info')
-rw-r--r--developer_info/IDSMResourceBag.h31
1 files changed, 31 insertions, 0 deletions
diff --git a/developer_info/IDSMResourceBag.h b/developer_info/IDSMResourceBag.h
new file mode 100644
index 00000000..21492007
--- /dev/null
+++ b/developer_info/IDSMResourceBag.h
@@ -0,0 +1,31 @@
+/*
+ * Copyright (C) 2003-2006 Gabest
+ * Copyright (C) 2010-2015 Hendrik Leppkes
+ * http://www.1f0.de
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License along
+ * with this program; if not, write to the Free Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+ */
+#pragma once
+
+interface __declspec(uuid("EBAFBCBE-BDE0-489A-9789-05D5692E3A93"))
+IDSMResourceBag :
+public IUnknown {
+ STDMETHOD_(DWORD, ResGetCount)() PURE;
+ STDMETHOD(ResGet)(DWORD iIndex, BSTR * ppName, BSTR * ppDesc, BSTR * ppMime, BYTE** ppData, DWORD * pDataLen, DWORD_PTR * pTag) PURE;
+ STDMETHOD(ResSet)(DWORD iIndex, LPCWSTR pName, LPCWSTR pDesc, LPCWSTR pMime, const BYTE * pData, DWORD len, DWORD_PTR tag) PURE;
+ STDMETHOD(ResAppend)(LPCWSTR pName, LPCWSTR pDesc, LPCWSTR pMime, BYTE * pData, DWORD len, DWORD_PTR tag) PURE;
+ STDMETHOD(ResRemoveAt)(DWORD iIndex) PURE;
+ STDMETHOD(ResRemoveAll)(DWORD_PTR tag) PURE;
+};