]> git.sesse.net Git - vlc/blobdiff - activex/objectsafety.h
Removes trailing spaces. Removes tabs.
[vlc] / activex / objectsafety.h
index 36440507c39504fe08eb1dd0bd51aec2ef38eecb..14ad3404334c703a35b67cdea624d77cd3772419 100644 (file)
-/*****************************************************************************\r
- * objectsafety.h: ActiveX control for VLC\r
- *****************************************************************************\r
- * Copyright (C) 2005 VideoLAN\r
- *\r
- * Authors: Damien Fouilleul <Damien.Fouilleul@laposte.net>\r
- *\r
- * This program is free software; you can redistribute it and/or modify\r
- * it under the terms of the GNU General Public License as published by\r
- * the Free Software Foundation; either version 2 of the License, or\r
- * (at your option) any later version.\r
- *\r
- * This program is distributed in the hope that it will be useful,\r
- * but WITHOUT ANY WARRANTY; without even the implied warranty of\r
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
- * GNU General Public License for more details.\r
- *\r
- * You should have received a copy of the GNU General Public License\r
- * along with this program; if not, write to the Free Software\r
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.\r
- *****************************************************************************/\r
-\r
-#ifndef __OBJECTSAFETY_H__\r
-#define __OBJECTSAFETY_H__\r
-\r
-#if HAVE_OBJSAFE_HEADER\r
-/*\r
-** at last, a version of mingw that supports this header\r
-*/\r
-#include <objsafe.h>\r
-\r
-#else\r
-\r
-// {CB5BDC81-93C1-11cf-8F20-00805F2CD064}\r
-extern "C" const IID IID_IObjectSafety;\r
-\r
-#define INTERFACESAFE_FOR_UNTRUSTED_CALLER 1L\r
-#define INTERFACESAFE_FOR_UNTRUSTED_DATA   2L\r
-\r
-struct IObjectSafety : public IUnknown\r
-{\r
-    virtual STDMETHODIMP GetInterfaceSafetyOptions(      \r
-        REFIID riid,\r
-        DWORD __RPC_FAR *pdwSupportedOptions,\r
-        DWORD __RPC_FAR *pdwEnabledOptions\r
-    ) = 0;\r
-\r
-    virtual STDMETHODIMP SetInterfaceSafetyOptions(      \r
-        REFIID riid,\r
-        DWORD dwSupportedOptions,\r
-        DWORD dwOptionSetMask\r
-    ) = 0;\r
-};\r
-\r
-#endif\r
-\r
-class VLCObjectSafety : public IObjectSafety\r
-{\r
-public:\r
-\r
-    VLCObjectSafety(VLCPlugin *p_instance) : _p_instance(p_instance) {};\r
-    virtual ~VLCObjectSafety() {};\r
-\r
-    // IUnknown methods\r
-    STDMETHODIMP QueryInterface(REFIID riid, void **ppv)\r
-    {\r
-        if( (NULL != ppv)\r
-         && (IID_IUnknown == riid)\r
-         && (IID_IObjectSafety == riid) ) \r
-        {\r
-            AddRef();\r
-            *ppv = reinterpret_cast<LPVOID>(this);\r
-            return NOERROR;\r
-        }\r
-        return _p_instance->QueryInterface(riid, ppv);\r
-    };\r
-\r
-    STDMETHODIMP_(ULONG) AddRef(void) { return _p_instance->AddRef(); };\r
-    STDMETHODIMP_(ULONG) Release(void) { return _p_instance->Release(); };\r
-\r
-    // IUnknown methods\r
-    STDMETHODIMP GetInterfaceSafetyOptions(      \r
-        REFIID riid,\r
-        DWORD *pdwSupportedOptions,\r
-        DWORD *pdwEnabledOptions\r
-    );\r
-\r
-    STDMETHODIMP SetInterfaceSafetyOptions(      \r
-        REFIID riid,\r
-        DWORD dwOptionSetMask,\r
-        DWORD dwEnabledOptions\r
-    );\r
-\r
-private: \r
-\r
-    VLCPlugin *_p_instance;\r
-};\r
-\r
-#endif\r
+/*****************************************************************************
+ * objectsafety.h: ActiveX control for VLC
+ *****************************************************************************
+ * Copyright (C) 2005 the VideoLAN team
+ *
+ * Authors: Damien Fouilleul <Damien.Fouilleul@laposte.net>
+ *
+ * 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.
+ *****************************************************************************/
+
+#ifndef __OBJECTSAFETY_H__
+#define __OBJECTSAFETY_H__
+
+#if HAVE_OBJSAFE_HEADER
+/*
+** at last, a version of mingw that supports this header
+*/
+#include <objsafe.h>
+
+#else
+/*
+** mingw does not yet support objsafe.h, redefine what we need here
+*/
+
+// {CB5BDC81-93C1-11cf-8F20-00805F2CD064}
+extern "C" const IID IID_IObjectSafety;
+
+#define INTERFACESAFE_FOR_UNTRUSTED_CALLER 1L
+#define INTERFACESAFE_FOR_UNTRUSTED_DATA   2L
+
+struct IObjectSafety : public IUnknown
+{
+    virtual STDMETHODIMP GetInterfaceSafetyOptions(
+        REFIID riid,
+        DWORD __RPC_FAR *pdwSupportedOptions,
+        DWORD __RPC_FAR *pdwEnabledOptions
+    ) = 0;
+
+    virtual STDMETHODIMP SetInterfaceSafetyOptions(
+        REFIID riid,
+        DWORD dwSupportedOptions,
+        DWORD dwOptionSetMask
+    ) = 0;
+};
+
+#endif
+
+class VLCObjectSafety : public IObjectSafety
+{
+public:
+
+    VLCObjectSafety(VLCPlugin *p_instance) : _p_instance(p_instance) {};
+    virtual ~VLCObjectSafety() {};
+
+    // IUnknown methods
+    STDMETHODIMP QueryInterface(REFIID riid, void **ppv)
+    {
+        if( NULL == ppv)
+            return E_POINTER;
+        if( (IID_IUnknown == riid)
+         || (IID_IObjectSafety == riid) )
+        {
+            AddRef();
+            *ppv = reinterpret_cast<LPVOID>(this);
+            return NOERROR;
+        }
+        return _p_instance->pUnkOuter->QueryInterface(riid, ppv);
+    };
+
+    STDMETHODIMP_(ULONG) AddRef(void) { return _p_instance->pUnkOuter->AddRef(); };
+    STDMETHODIMP_(ULONG) Release(void) { return _p_instance->pUnkOuter->Release(); };
+
+    // IUnknown methods
+    STDMETHODIMP GetInterfaceSafetyOptions(
+        REFIID riid,
+        DWORD *pdwSupportedOptions,
+        DWORD *pdwEnabledOptions
+    );
+
+    STDMETHODIMP SetInterfaceSafetyOptions(
+        REFIID riid,
+        DWORD dwOptionSetMask,
+        DWORD dwEnabledOptions
+    );
+
+private:
+
+    VLCPlugin *_p_instance;
+};
+
+#endif