user32: Move unpack_message call to User32CallWindowProc.
[wine.git] / dlls / mshtml / mshtml_private_iface.idl
blobb9039c956dbe2c019d8829919e101ba4406372d9
1 /*
2 * Copyright 2021 Paul Gofman 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 #pragma makedep typelib
21 #include <mshtmdid.h>
23 import "ocidl.idl";
26 version(1.0),
27 hidden,
28 uuid(90de541e-380b-4530-94a9-97367fe49d8d)
30 library MSHTML_private
33 importlib("stdole2.tlb");
36 odl,
37 oleautomation,
38 dual,
39 hidden,
40 uuid(fd55b4b6-2813-4fb4-829d-380099474ab1)
42 interface IWineMSHTMLConsole : IDispatch
44 [id(1)]
45 HRESULT assert([in] VARIANT_BOOL *assertion,
46 [in, optional] VARIANT *varargStart);
47 [id(2)]
48 HRESULT clear();
49 [id(3)]
50 HRESULT count([in, optional] VARIANT *label);
51 [id(4)]
52 HRESULT debug([in, optional] VARIANT *varargStart);
53 [id(5)]
54 HRESULT dir([in, optional] VARIANT *object);
55 [id(6)]
56 HRESULT dirxml([in, optional] VARIANT *object);
57 [id(7)]
58 HRESULT error([in, optional] VARIANT *varargStart);
59 [id(8)]
60 HRESULT group([in, optional] VARIANT *label);
61 [id(9)]
62 HRESULT groupCollapsed([in, optional] VARIANT *label);
63 [id(10)]
64 HRESULT groupEnd();
65 [id(11)]
66 HRESULT info([in, optional] VARIANT *varargStart);
67 [id(12)]
68 HRESULT log([in, optional] VARIANT *varargStart);
69 [id(13)]
70 HRESULT time([in, optional] VARIANT *label);
71 [id(14)]
72 HRESULT timeEnd([in, optional] VARIANT *label);
73 [id(15)]
74 HRESULT trace([in, optional] VARIANT *varargStart);
75 [id(16)]
76 HRESULT warn([in, optional] VARIANT *varargStart);
80 odl,
81 oleautomation,
82 dual,
83 hidden,
84 uuid(1b5939fc-8f84-43f3-8d89-f9a92069fad7)
86 interface IWineHTMLWindowPrivate : IDispatch
88 [id(50)]
89 HRESULT requestAnimationFrame([in] VARIANT *expr, [retval, out] VARIANT *timer_id);
90 [propget, id(51)]
91 HRESULT console([retval, out] IDispatch **console);
95 odl,
96 oleautomation,
97 dual,
98 hidden,
99 uuid(1b5939fc-8f84-43f3-8d89-f9a92069fad6)
101 interface IWineHTMLWindowCompatPrivate : IDispatch
103 [propput, id(DISPID_IHTMLWINDOW7_PERFORMANCE)]
104 HRESULT performance([in] VARIANT v);
106 [propget, id(DISPID_IHTMLWINDOW7_PERFORMANCE)]
107 HRESULT performance([out, retval] VARIANT *p);
111 odl,
112 oleautomation,
113 dual,
114 hidden,
115 uuid(465908fd-f394-489f-b7a3-4c00fbbe9eec)
117 interface IWineHTMLElementPrivate : IDispatch
119 [propget, id(1)]
120 HRESULT classList([retval, out] IDispatch **class_list);
124 odl,
125 oleautomation,
126 dual,
127 hidden,
128 uuid(08ef0edd-5fb8-4178-a2f0-9f686e00441b)
130 interface IWineDOMTokenList : IDispatch
132 [id(1)]
133 HRESULT add([in] BSTR token);
134 [id(2)]
135 HRESULT remove([in] BSTR token);
136 [id(3)]
137 HRESULT toString([retval, out] BSTR *String);
140 } /* library MSHTML_private */