99 lines
3.3 KiB
Plaintext
99 lines
3.3 KiB
Plaintext
/*
|
|
* The contents of this file are subject to the Mozilla Public
|
|
* License Version 1.1 (the "License"); you may not use this file
|
|
* except in compliance with the License. You may obtain a copy of
|
|
* the License at http://www.mozilla.org/MPL/
|
|
*
|
|
* Software distributed under the License is distributed on an "AS
|
|
* IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
|
* implied. See the License for the specific language governing
|
|
* rights and limitations under the License.
|
|
*
|
|
* The Original Code is the Netscape security libraries.
|
|
*
|
|
* The Initial Developer of the Original Code is Netscape
|
|
* Communications Corporation. Portions created by Netscape are
|
|
* Copyright (C) 1994-2000 Netscape Communications Corporation. All
|
|
* Rights Reserved.
|
|
*
|
|
* Contributor(s):
|
|
*
|
|
* Adam Lock <adamlock@netscape.com>
|
|
*
|
|
* Alternatively, the contents of this file may be used under the
|
|
* terms of the GNU General Public License Version 2 or later (the
|
|
* "GPL"), in which case the provisions of the GPL are applicable
|
|
* instead of those above. If you wish to allow use of your
|
|
* version of this file only under the terms of the GPL and not to
|
|
* allow others to use your version of this file under the MPL,
|
|
* indicate your decision by deleting the provisions above and
|
|
* replace them with the notice and other provisions required by
|
|
* the GPL. If you do not delete the provisions above, a recipient
|
|
* may use your version of this file under either the MPL or the
|
|
* GPL.
|
|
*/
|
|
// pluginhostctrl.idl : IDL source for pluginhostctrl.dll
|
|
//
|
|
|
|
// This file will be processed by the MIDL tool to
|
|
// produce the type library (pluginhostctrl.tlb) and marshalling code.
|
|
|
|
import "oaidl.idl";
|
|
import "ocidl.idl";
|
|
#include "olectl.h"
|
|
|
|
|
|
[
|
|
object,
|
|
uuid(A37A5B60-071D-4885-AD8A-CC6B57F691CF),
|
|
dual,
|
|
helpstring("IMozPluginHostCtrl Interface"),
|
|
pointer_default(unique)
|
|
]
|
|
interface IMozPluginHostCtrl : IDispatch
|
|
{
|
|
[propget, id(DISPID_HWND)]
|
|
HRESULT Window([out, retval]long* phwnd);
|
|
[propput, id(DISPID_TEXT)]
|
|
HRESULT Text([in]BSTR strText);
|
|
[propget, id(DISPID_TEXT)]
|
|
HRESULT Text([out, retval]BSTR* pstrText);
|
|
[propget, id(1), helpstring("property PluginContentType")] HRESULT PluginContentType([out, retval] BSTR *pVal);
|
|
[propput, id(1), helpstring("property PluginContentType")] HRESULT PluginContentType([in] BSTR newVal);
|
|
[propget, id(2), helpstring("property PluginSource")] HRESULT PluginSource([out, retval] BSTR *pVal);
|
|
[propput, id(2), helpstring("property PluginSource")] HRESULT PluginSource([in] BSTR newVal);
|
|
[propget, id(3), helpstring("property PluginsPage")] HRESULT PluginsPage([out, retval] BSTR *pVal);
|
|
[propput, id(3), helpstring("property PluginsPage")] HRESULT PluginsPage([in] BSTR newVal);
|
|
};
|
|
|
|
[
|
|
uuid(5C670C1C-33E2-4B67-8D1E-CC2CF8091A0A),
|
|
version(1.0),
|
|
helpstring("pluginhostctrl 1.0 Type Library")
|
|
]
|
|
library PLUGINHOSTCTRLLib
|
|
{
|
|
importlib("stdole32.tlb");
|
|
importlib("stdole2.tlb");
|
|
|
|
[
|
|
uuid(A059405B-2AFC-4C24-9140-F9AD6FE2B11B),
|
|
helpstring("_IMozPluginHostCtrlEvents Interface")
|
|
]
|
|
dispinterface _IMozPluginHostCtrlEvents
|
|
{
|
|
properties:
|
|
methods:
|
|
};
|
|
|
|
[
|
|
uuid(DBB2DE32-61F1-4F7F-BEB8-A37F5BC24EE2),
|
|
helpstring("Mozilla PluginHostCtrl Class")
|
|
]
|
|
coclass MozPluginHostCtrl
|
|
{
|
|
[default] interface IMozPluginHostCtrl;
|
|
[default, source] dispinterface _IMozPluginHostCtrlEvents;
|
|
};
|
|
};
|