]> git.sesse.net Git - vlc/blob - projects/activex/supporterrorinfo.cpp
Cosmetics: formatting, indentation.
[vlc] / projects / activex / supporterrorinfo.cpp
1 /*****************************************************************************
2  * supporterrorinfo.cpp: ActiveX control for VLC
3  *****************************************************************************
4  * Copyright (C) 2005 the VideoLAN team
5  *
6  * Authors: Damien Fouilleul <Damien.Fouilleul@laposte.net>
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 2 of the License, or
11  * (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
21  *****************************************************************************/
22
23 #include "plugin.h"
24 #include "supporterrorinfo.h"
25
26 #include "utils.h"
27 #include "axvlc_idl.h"
28
29 using namespace std;
30
31 STDMETHODIMP VLCSupportErrorInfo::InterfaceSupportsErrorInfo(REFIID  riid)
32 {
33     if( (riid == IID_IVLCAudio)
34      || (riid == IID_IVLCInput)
35      || (riid == IID_IVLCLog)
36      || (riid == IID_IVLCMessage)
37      || (riid == IID_IVLCMessageIterator)
38      || (riid == IID_IVLCMessages)
39      || (riid == IID_IVLCPlaylist)
40      || (riid == IID_IVLCPlaylistItems)
41      || (riid == IID_IVLCVideo)
42      || (riid == IID_IVLCSubtitle)
43      || (riid == IID_IVLCControl2) )
44     {
45         return S_OK;
46     }
47     return S_FALSE;
48 };
49
50 void VLCSupportErrorInfo::setErrorInfo(LPCOLESTR progid, REFIID riid, const char *description)
51 {
52     BSTR bstrDescription = BSTRFromCStr(CP_UTF8, description);
53     if( NULL != bstrDescription )
54     {
55         ICreateErrorInfo* pcerrinfo;
56
57         HRESULT hr = CreateErrorInfo(&pcerrinfo);
58         if( SUCCEEDED(hr) )
59         {
60             IErrorInfo* perrinfo;
61
62             pcerrinfo->SetSource((LPOLESTR)progid);
63             pcerrinfo->SetGUID(riid);
64             pcerrinfo->SetDescription((LPOLESTR)bstrDescription);
65             hr = pcerrinfo->QueryInterface(IID_IErrorInfo, (LPVOID*) &perrinfo);
66             if( SUCCEEDED(hr) )
67             {
68                ::SetErrorInfo(0, perrinfo);
69                perrinfo->Release();
70             }
71             pcerrinfo->Release();
72         }
73         SysFreeString(bstrDescription);
74     }
75 };
76