include: Fix IRequestDictionary and IResponse definition.
Signed-off-by: Nikolay Sivov <nsivov@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
ea9b797409
commit
7e32226afd
|
@ -28,17 +28,16 @@ import "oaidl.idl";
|
||||||
interface IRequestDictionary : IDispatch
|
interface IRequestDictionary : IDispatch
|
||||||
{
|
{
|
||||||
[propget]
|
[propget]
|
||||||
HRESULT Item(IRequestDictionary *iface, [in, optional] VARIANT Var,
|
HRESULT Item([in, optional] VARIANT Var, [retval, out] VARIANT *pVariantReturn);
|
||||||
[retval, out] VARIANT *pVariantReturn);
|
|
||||||
|
|
||||||
[restricted, propget]
|
[restricted, propget]
|
||||||
HRESULT _NewEnum(IRequestDictionary *iface, [retval, out] IUnknown **ppEnumReturn);
|
HRESULT _NewEnum([retval, out] IUnknown **ppEnumReturn);
|
||||||
|
|
||||||
[propget]
|
[propget]
|
||||||
HRESULT Count(IRequestDictionary *iface, [retval, out] int *cStrRet);
|
HRESULT Count([retval, out] int *count);
|
||||||
|
|
||||||
[propget]
|
[propget]
|
||||||
HRESULT Key(IRequestDictionary *iface, [in] VARIANT VarKey, [retval, out]VARIANT *pvar);
|
HRESULT Key([in] VARIANT key, [retval, out] VARIANT *value);
|
||||||
};
|
};
|
||||||
|
|
||||||
[
|
[
|
||||||
|
@ -49,85 +48,85 @@ interface IRequestDictionary : IDispatch
|
||||||
interface IResponse : IDispatch
|
interface IResponse : IDispatch
|
||||||
{
|
{
|
||||||
[propget]
|
[propget]
|
||||||
HRESULT Buffer(IResponse *iface, [retval, out] VARIANT_BOOL *fIsBuffering);
|
HRESULT Buffer([retval, out] VARIANT_BOOL *is_buffering);
|
||||||
|
|
||||||
[propput]
|
[propput]
|
||||||
HRESULT Buffer(IResponse *iface, [in] VARIANT_BOOL fIsBuffering);
|
HRESULT Buffer([in] VARIANT_BOOL is_buffering);
|
||||||
|
|
||||||
[propget]
|
[propget]
|
||||||
HRESULT ContentType(IResponse *iface, [retval, out] BSTR *pbstrContentTypeRet);
|
HRESULT ContentType([retval, out] BSTR *content_type);
|
||||||
|
|
||||||
[propput]
|
[propput]
|
||||||
HRESULT ContentType(IResponse *iface, [in] BSTR bstrContentType);
|
HRESULT ContentType([in] BSTR content_type);
|
||||||
|
|
||||||
[propget]
|
[propget]
|
||||||
HRESULT Expires(IResponse *iface, [retval, out] VARIANT *pvarExpiresMinutesRet);
|
HRESULT Expires([retval, out] VARIANT *minutes);
|
||||||
|
|
||||||
[propput]
|
[propput]
|
||||||
HRESULT Expires(IResponse *iface, [in] long lExpiresMinutes);
|
HRESULT Expires([in] LONG minutes);
|
||||||
|
|
||||||
[propget]
|
[propget]
|
||||||
HRESULT ExpiresAbsolute(IResponse *iface, [retval, out] VARIANT *pvarExpiresRet);
|
HRESULT ExpiresAbsolute([retval, out] VARIANT *expires);
|
||||||
|
|
||||||
[propput]
|
[propput]
|
||||||
HRESULT ExpiresAbsolute(IResponse *iface, [in] DATE dtExpires);
|
HRESULT ExpiresAbsolute([in] DATE expires);
|
||||||
|
|
||||||
[propget]
|
[propget]
|
||||||
HRESULT Cookies(IResponse *iface, [retval, out] IRequestDictionary **ppCookies);
|
HRESULT Cookies([retval, out] IRequestDictionary **cookies);
|
||||||
|
|
||||||
[propget]
|
[propget]
|
||||||
HRESULT Status(IResponse *iface, [retval][out] BSTR *pbstrStatusRet);
|
HRESULT Status([retval, out] BSTR *status);
|
||||||
|
|
||||||
[propput]
|
[propput]
|
||||||
HRESULT Status(IResponse *iface, [in] BSTR bstrStatus);
|
HRESULT Status([in] BSTR status);
|
||||||
|
|
||||||
[hidden]
|
[hidden]
|
||||||
HRESULT Add(IResponse *iface, [in] BSTR bstrHeaderValue, [in] BSTR bstrHeaderName);
|
HRESULT Add([in] BSTR value, [in] BSTR name);
|
||||||
|
|
||||||
HRESULT AddHeader(IResponse *iface, [in] BSTR bstrHeaderName, [in] BSTR bstrHeaderValue);
|
HRESULT AddHeader([in] BSTR name, [in] BSTR value);
|
||||||
|
|
||||||
HRESULT AppendToLog(IResponse *iface, [in] BSTR bstrLogEntry);
|
HRESULT AppendToLog([in] BSTR log_entry);
|
||||||
|
|
||||||
HRESULT BinaryWrite(IResponse *iface, [in] VARIANT varInput);
|
HRESULT BinaryWrite([in] VARIANT input);
|
||||||
|
|
||||||
HRESULT Clear(IResponse *iface);
|
HRESULT Clear();
|
||||||
|
|
||||||
HRESULT End(IResponse *iface);
|
HRESULT End();
|
||||||
|
|
||||||
HRESULT Flush(IResponse *iface);
|
HRESULT Flush();
|
||||||
|
|
||||||
HRESULT Redirect(IResponse *iface, [in] BSTR bstrURL);
|
HRESULT Redirect(BSTR url);
|
||||||
|
|
||||||
HRESULT Write(IResponse *iface, [in] VARIANT varText);
|
HRESULT Write([in] VARIANT text);
|
||||||
|
|
||||||
[hidden]
|
[hidden]
|
||||||
HRESULT WriteBlock(IResponse *iface, [in] short iBlockNumber);
|
HRESULT WriteBlock([in] short block_number);
|
||||||
|
|
||||||
HRESULT IsClientConnected(IResponse *iface, [retval, out] VARIANT_BOOL *pfIsClientConnected);
|
HRESULT IsClientConnected([retval, out] VARIANT_BOOL *is_connected);
|
||||||
|
|
||||||
[propget]
|
[propget]
|
||||||
HRESULT get_CharSet( IResponse *iface, [retval, out] BSTR *pbstrCharSetRet);
|
HRESULT CharSet([retval, out] BSTR *charset);
|
||||||
|
|
||||||
[propput]
|
[propput]
|
||||||
HRESULT put_CharSet(IResponse *iface, [in] BSTR bstrCharSet);
|
HRESULT CharSet([in] BSTR charset);
|
||||||
|
|
||||||
HRESULT Pics(IResponse *iface, [in] BSTR bstrHeaderValue);
|
HRESULT Pics([in] BSTR value);
|
||||||
|
|
||||||
[propget]
|
[propget]
|
||||||
HRESULT get_CacheControl(IResponse *iface, [retval, out] BSTR *pbstrCacheControl);
|
HRESULT CacheControl([retval, out] BSTR *cache_control);
|
||||||
|
|
||||||
[propput]
|
[propput]
|
||||||
HRESULT put_CacheControl(IResponse *iface, [in] BSTR bstrCacheControl);
|
HRESULT CacheControl([in] BSTR cache_control);
|
||||||
|
|
||||||
[propget]
|
[propget]
|
||||||
HRESULT get_CodePage(IResponse *iface, [retval, out] long *plvar);
|
HRESULT CodePage([retval, out] LONG *codepage);
|
||||||
|
|
||||||
[propput]
|
[propput]
|
||||||
HRESULT put_CodePage(IResponse *iface, [in] long lvar);
|
HRESULT CodePage([in] LONG codepage);
|
||||||
|
|
||||||
[propget]
|
[propget]
|
||||||
HRESULT get_LCID(IResponse *iface, [retval, out] long *plvar);
|
HRESULT LCID([retval, out] LONG *lcid);
|
||||||
|
|
||||||
[propput]
|
[propput]
|
||||||
HRESULT put_LCID(IResponse *iface, [in] long lvar);
|
HRESULT LCID([in] LONG lcid);
|
||||||
};
|
}
|
||||||
|
|
Loading…
Reference in New Issue