Compile fix + handle case with no xml:base
[vlc.git] / activex / objectsafety.cpp
blob8f333d4d74830d3b46920ec0869e15df5aa25d5b
1 /*****************************************************************************
2 * objectsafety.cpp: ActiveX control for VLC
3 *****************************************************************************
4 * Copyright (C) 2005 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 *****************************************************************************/
23 #include "plugin.h"
24 #include "objectsafety.h"
26 #include "axvlc_idl.h"
28 #if 0
29 const GUID IID_IObjectSafety =
30 {0xCB5BDC81,0x93C1,0x11cf,{0x8F,0x20,0x00,0x80,0x5F,0x2C,0xD0,0x64}};
31 #endif
33 using namespace std;
35 STDMETHODIMP VLCObjectSafety::GetInterfaceSafetyOptions(
36 REFIID riid,
37 DWORD *pdwSupportedOptions,
38 DWORD *pdwEnabledOptions
41 if( (NULL == pdwSupportedOptions) || (NULL == pdwEnabledOptions) )
42 return E_POINTER;
44 *pdwSupportedOptions = INTERFACESAFE_FOR_UNTRUSTED_DATA|INTERFACESAFE_FOR_UNTRUSTED_CALLER;
46 if( (IID_IDispatch == riid)
47 || (IID_IVLCControl == riid) )
49 *pdwEnabledOptions = INTERFACESAFE_FOR_UNTRUSTED_CALLER;
50 return NOERROR;
52 else if( (IID_IPersist == riid)
53 || (IID_IPersistStreamInit == riid)
54 || (IID_IPersistStorage == riid)
55 || (IID_IPersistPropertyBag == riid) )
57 *pdwEnabledOptions = INTERFACESAFE_FOR_UNTRUSTED_DATA;
58 return NOERROR;
60 *pdwEnabledOptions = 0;
61 return E_NOINTERFACE;
64 STDMETHODIMP VLCObjectSafety::SetInterfaceSafetyOptions(
65 REFIID riid,
66 DWORD dwOptionSetMask,
67 DWORD dwEnabledOptions
70 if( (IID_IDispatch == riid)
71 || (IID_IVLCControl == riid) )
73 if( (INTERFACESAFE_FOR_UNTRUSTED_CALLER == dwOptionSetMask)
74 && (INTERFACESAFE_FOR_UNTRUSTED_CALLER == dwEnabledOptions) )
76 return NOERROR;
78 return E_FAIL;
80 else if( (IID_IPersist == riid)
81 || (IID_IPersistStreamInit == riid)
82 || (IID_IPersistStorage == riid)
83 || (IID_IPersistPropertyBag == riid) )
85 if( (INTERFACESAFE_FOR_UNTRUSTED_DATA == dwOptionSetMask)
86 && (INTERFACESAFE_FOR_UNTRUSTED_DATA == dwEnabledOptions) )
88 return NOERROR;
90 return E_FAIL;
92 return E_FAIL;