winemac: When realizing latent child windows, maintain their relative z-order.
[wine.git] / include / asptlb.idl
blobd0109083847644f56e75fc33a6b585420607d240
1 /*
2 * Copyright (C) 2010 Alistair Leslie-Hughes
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 "unknwn.idl";
20 import "objidl.idl";
21 import "oaidl.idl";
24 object,
25 dual,
26 uuid(D97A6DA0-A864-11cf-83BE-00A0C90C2BD8)
28 interface IRequestDictionary : IDispatch
30 [propget]
31 HRESULT Item([in, optional] VARIANT Var, [retval, out] VARIANT *pVariantReturn);
33 [restricted, propget]
34 HRESULT _NewEnum([retval, out] IUnknown **ppEnumReturn);
36 [propget]
37 HRESULT Count([retval, out] int *count);
39 [propget]
40 HRESULT Key([in] VARIANT key, [retval, out] VARIANT *value);
44 object,
45 dual,
46 uuid(D97A6DA0-A864-11cf-83BE-00A0C90C2BD8)
48 interface IResponse : IDispatch
50 [propget]
51 HRESULT Buffer([retval, out] VARIANT_BOOL *is_buffering);
53 [propput]
54 HRESULT Buffer([in] VARIANT_BOOL is_buffering);
56 [propget]
57 HRESULT ContentType([retval, out] BSTR *content_type);
59 [propput]
60 HRESULT ContentType([in] BSTR content_type);
62 [propget]
63 HRESULT Expires([retval, out] VARIANT *minutes);
65 [propput]
66 HRESULT Expires([in] LONG minutes);
68 [propget]
69 HRESULT ExpiresAbsolute([retval, out] VARIANT *expires);
71 [propput]
72 HRESULT ExpiresAbsolute([in] DATE expires);
74 [propget]
75 HRESULT Cookies([retval, out] IRequestDictionary **cookies);
77 [propget]
78 HRESULT Status([retval, out] BSTR *status);
80 [propput]
81 HRESULT Status([in] BSTR status);
83 [hidden]
84 HRESULT Add([in] BSTR value, [in] BSTR name);
86 HRESULT AddHeader([in] BSTR name, [in] BSTR value);
88 HRESULT AppendToLog([in] BSTR log_entry);
90 HRESULT BinaryWrite([in] VARIANT input);
92 HRESULT Clear();
94 HRESULT End();
96 HRESULT Flush();
98 HRESULT Redirect(BSTR url);
100 HRESULT Write([in] VARIANT text);
102 [hidden]
103 HRESULT WriteBlock([in] short block_number);
105 HRESULT IsClientConnected([retval, out] VARIANT_BOOL *is_connected);
107 [propget]
108 HRESULT CharSet([retval, out] BSTR *charset);
110 [propput]
111 HRESULT CharSet([in] BSTR charset);
113 HRESULT Pics([in] BSTR value);
115 [propget]
116 HRESULT CacheControl([retval, out] BSTR *cache_control);
118 [propput]
119 HRESULT CacheControl([in] BSTR cache_control);
121 [propget]
122 HRESULT CodePage([retval, out] LONG *codepage);
124 [propput]
125 HRESULT CodePage([in] LONG codepage);
127 [propget]
128 HRESULT LCID([retval, out] LONG *lcid);
130 [propput]
131 HRESULT LCID([in] LONG lcid);