1 /*****************************************************************************
2 * supporterrorinfo.cpp: ActiveX control for VLC
3 *****************************************************************************
4 * Copyright (C) 2005-2010 the VideoLAN team
6 * Authors: Damien Fouilleul <Damien.Fouilleul@laposte.net>
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.
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.
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 *****************************************************************************/
24 #include "supporterrorinfo.h"
27 #include "axvlc_idl.h"
31 STDMETHODIMP
VLCSupportErrorInfo::InterfaceSupportsErrorInfo(REFIID riid
)
33 if( (riid
== IID_IVLCAudio
)
34 || (riid
== IID_IVLCInput
)
35 || (riid
== IID_IVLCMarquee
)
36 || (riid
== IID_IVLCLogo
)
37 || (riid
== IID_IVLCPlaylist
)
38 || (riid
== IID_IVLCPlaylistItems
)
39 || (riid
== IID_IVLCSubtitle
)
40 || (riid
== IID_IVLCVideo
)
41 || (riid
== IID_IVLCControl2
) )
48 void VLCSupportErrorInfo::setErrorInfo(LPCOLESTR progid
, REFIID riid
, const char *description
)
50 BSTR bstrDescription
= BSTRFromCStr(CP_UTF8
, description
);
51 if( NULL
!= bstrDescription
)
53 ICreateErrorInfo
* pcerrinfo
;
55 HRESULT hr
= CreateErrorInfo(&pcerrinfo
);
60 pcerrinfo
->SetSource((LPOLESTR
)progid
);
61 pcerrinfo
->SetGUID(riid
);
62 pcerrinfo
->SetDescription((LPOLESTR
)bstrDescription
);
63 hr
= pcerrinfo
->QueryInterface(IID_IErrorInfo
, (LPVOID
*) &perrinfo
);
66 ::SetErrorInfo(0, perrinfo
);
71 SysFreeString(bstrDescription
);