objectsafety.h
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:3k
源码类别:

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * objectsafety.h: 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. #ifndef __OBJECTSAFETY_H__
  23. #define __OBJECTSAFETY_H__
  24. #if HAVE_OBJSAFE_HEADER
  25. /*
  26. ** at last, a version of mingw that supports this header
  27. */
  28. #include <objsafe.h>
  29. #else
  30. /*
  31. ** mingw does not yet support objsafe.h, redefine what we need here
  32. */
  33. // {CB5BDC81-93C1-11cf-8F20-00805F2CD064}
  34. extern "C" const IID IID_IObjectSafety;
  35. #define INTERFACESAFE_FOR_UNTRUSTED_CALLER 1L
  36. #define INTERFACESAFE_FOR_UNTRUSTED_DATA   2L
  37. struct IObjectSafety : public IUnknown
  38. {
  39.     virtual STDMETHODIMP GetInterfaceSafetyOptions(
  40.         REFIID riid,
  41.         DWORD __RPC_FAR *pdwSupportedOptions,
  42.         DWORD __RPC_FAR *pdwEnabledOptions
  43.     ) = 0;
  44.     virtual STDMETHODIMP SetInterfaceSafetyOptions(
  45.         REFIID riid,
  46.         DWORD dwSupportedOptions,
  47.         DWORD dwOptionSetMask
  48.     ) = 0;
  49. };
  50. #endif
  51. class VLCObjectSafety : public IObjectSafety
  52. {
  53. public:
  54.     VLCObjectSafety(VLCPlugin *p_instance) : _p_instance(p_instance) {};
  55.     virtual ~VLCObjectSafety() {};
  56.     // IUnknown methods
  57.     STDMETHODIMP QueryInterface(REFIID riid, void **ppv)
  58.     {
  59.         if( NULL == ppv)
  60.             return E_POINTER;
  61.         if( (IID_IUnknown == riid)
  62.          || (IID_IObjectSafety == riid) )
  63.         {
  64.             AddRef();
  65.             *ppv = reinterpret_cast<LPVOID>(this);
  66.             return NOERROR;
  67.         }
  68.         return _p_instance->pUnkOuter->QueryInterface(riid, ppv);
  69.     };
  70.     STDMETHODIMP_(ULONG) AddRef(void) { return _p_instance->pUnkOuter->AddRef(); };
  71.     STDMETHODIMP_(ULONG) Release(void) { return _p_instance->pUnkOuter->Release(); };
  72.     // IUnknown methods
  73.     STDMETHODIMP GetInterfaceSafetyOptions(
  74.         REFIID riid,
  75.         DWORD *pdwSupportedOptions,
  76.         DWORD *pdwEnabledOptions
  77.     );
  78.     STDMETHODIMP SetInterfaceSafetyOptions(
  79.         REFIID riid,
  80.         DWORD dwOptionSetMask,
  81.         DWORD dwEnabledOptions
  82.     );
  83. private:
  84.     VLCPlugin *_p_instance;
  85. };
  86. #endif