~ubuntu-branches/ubuntu/precise/wine1.3/precise

« back to all changes in this revision

Viewing changes to include/htiface.idl

  • Committer: Package Import Robot
  • Author(s): Scott Ritchie
  • Date: 2012-01-17 09:00:34 UTC
  • mfrom: (1.1.2)
  • Revision ID: package-import@ubuntu.com-20120117090034-eyhpp02jawlvrrkc
Tags: 1.3.37-0ubuntu1
* New upstream release
  - Many changes
* Convert to 3.0 source format
* debian/control:
  - Remove pre-multiarch amd64 build depends
  - Remove quilt build depends
  - Recommend proper gecko versions
* debian/rules:
  - Remove manual dh_quilt patch and unpatch
  - No need to uuencode/uudecode anymore with new source format

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright 2006,2011 Jacek Caban for CodeWeavers
 
3
 *
 
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.
 
8
 *
 
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.
 
13
 *
 
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
 
17
 */
 
18
 
 
19
import "objidl.idl";
 
20
import "oleidl.idl";
 
21
import "urlmon.idl";
 
22
 
 
23
cpp_quote("#include <htiframe.h>")
 
24
 
 
25
 
 
26
/*****************************************************************************
 
27
 *    ITargetFramePriv interface
 
28
 */
 
29
[
 
30
    object,
 
31
    uuid(9216e421-2bf5-11d0-82b4-00a0c90c29c5),
 
32
    pointer_default(unique)
 
33
]
 
34
interface ITargetFramePriv : IUnknown
 
35
{
 
36
    typedef [unique] ITargetFramePriv *LPTARGETFRAMEPRIV;
 
37
 
 
38
    HRESULT FindFrameDownwards(
 
39
            [in] LPCWSTR pszTargetName,
 
40
            [in] DWORD dwFlags,
 
41
            [out] IUnknown **ppunkTargetFrame);
 
42
 
 
43
    HRESULT FindFrameInContext(
 
44
            [in] LPCWSTR pszTargetName,
 
45
            [in] IUnknown *punkContextFrame,
 
46
            [in] DWORD dwFlags,
 
47
            [out] IUnknown **ppunkTargetFrame);
 
48
 
 
49
    HRESULT OnChildFrameActivate([in] IUnknown *pUnkChildFrame);
 
50
    HRESULT OnChildFrameDeactivate([in] IUnknown *pUnkChildFrame);
 
51
 
 
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);
 
59
 
 
60
    HRESULT FindBrowserByIndex(
 
61
            [in] DWORD dwID,
 
62
            [out] IUnknown **ppunkBrowser);
 
63
}
 
64
 
 
65
/*****************************************************************************
 
66
 *    ITargetFramePriv2 interface
 
67
 */
 
68
[
 
69
    object,
 
70
    uuid(b2c867e6-69d6-46f2-a611-ded9a4bd7fef),
 
71
    pointer_default(unique)
 
72
]
 
73
interface ITargetFramePriv2 : ITargetFramePriv
 
74
{
 
75
    typedef [unique] ITargetFramePriv2 *LPTARGETFRAMEPRIV2;
 
76
 
 
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);
 
84
}