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
23 cpp_quote
("#include <htiframe.h>")
26 /*****************************************************************************
27 * ITargetFramePriv interface
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
,
41 [out] IUnknown
**ppunkTargetFrame
);
43 HRESULT FindFrameInContext
(
44 [in] LPCWSTR pszTargetName
,
45 [in] IUnknown
*punkContextFrame
,
47 [out] IUnknown
**ppunkTargetFrame
);
49 HRESULT OnChildFrameActivate
([in] IUnknown
*pUnkChildFrame
);
50 HRESULT OnChildFrameDeactivate
([in] IUnknown
*pUnkChildFrame
);
54 [in, unique] LPBC pbc
,
55 [in, unique] IBindStatusCallback
*pibsc
,
56 [in, unique] LPCWSTR pszTargetName
,
58 [in, unique] LPCWSTR pszLocation
);
60 HRESULT FindBrowserByIndex
(
62 [out] IUnknown
**ppunkBrowser
);
65 /*****************************************************************************
66 * ITargetFramePriv2 interface
70 uuid(b2c867e6
-69d6
-46f2
-a611
-ded9a4bd7fef
),
71 pointer_default(unique)
73 interface ITargetFramePriv2
: ITargetFramePriv
75 typedef [unique] ITargetFramePriv2
*LPTARGETFRAMEPRIV2
;
77 HRESULT AggregatedNavigation2
(
79 [in, unique] LPBC pbc
,
80 [in, unique] IBindStatusCallback
*pibsc
,
81 [in, unique] LPCWSTR pszTargetName
,
83 [in, unique] LPCWSTR pszLocation
);