po: Update Brazilian Portuguese translation.
[wine/multimedia.git] / include / htiface.idl
blob2c98ec2e1023177403ae0a02a1191aa2263d91bd
1 /*
2 * Copyright 2006,2011 Jacek Caban for CodeWeavers
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
19 import "objidl.idl";
20 import "oleidl.idl";
21 import "urlmon.idl";
23 cpp_quote("#include <htiframe.h>")
26 /*****************************************************************************
27 * ITargetFramePriv interface
30 object,
31 uuid(9216e421-2bf5-11d0-82b4-00a0c90c29c5),
32 pointer_default(unique)
34 interface ITargetFramePriv : IUnknown
36 typedef [unique] ITargetFramePriv *LPTARGETFRAMEPRIV;
38 HRESULT FindFrameDownwards(
39 [in] LPCWSTR pszTargetName,
40 [in] DWORD dwFlags,
41 [out] IUnknown **ppunkTargetFrame);
43 HRESULT FindFrameInContext(
44 [in] LPCWSTR pszTargetName,
45 [in] IUnknown *punkContextFrame,
46 [in] DWORD dwFlags,
47 [out] IUnknown **ppunkTargetFrame);
49 HRESULT OnChildFrameActivate([in] IUnknown *pUnkChildFrame);
50 HRESULT OnChildFrameDeactivate([in] IUnknown *pUnkChildFrame);
52 HRESULT NavigateHack(
53 [in] DWORD grfHLNF,
54 [in, unique] LPBC pbc,
55 [in, unique] IBindStatusCallback *pibsc,
56 [in, unique] LPCWSTR pszTargetName,
57 [in] LPCWSTR pszUrl,
58 [in, unique] LPCWSTR pszLocation);
60 HRESULT FindBrowserByIndex(
61 [in] DWORD dwID,
62 [out] IUnknown **ppunkBrowser);
65 /*****************************************************************************
66 * ITargetFramePriv2 interface
69 object,
70 uuid(b2c867e6-69d6-46f2-a611-ded9a4bd7fef),
71 pointer_default(unique)
73 interface ITargetFramePriv2 : ITargetFramePriv
75 typedef [unique] ITargetFramePriv2 *LPTARGETFRAMEPRIV2;
77 HRESULT AggregatedNavigation2(
78 [in] DWORD grfHLNF,
79 [in, unique] LPBC pbc,
80 [in, unique] IBindStatusCallback *pibsc,
81 [in, unique] LPCWSTR pszTargetName,
82 [in] IUri *pUri,
83 [in, unique] LPCWSTR pszLocation);