Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-fonts
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Aleksandr Isakov
wine-fonts
Commits
7e32226a
Commit
7e32226a
authored
Mar 26, 2017
by
Nikolay Sivov
Committed by
Alexandre Julliard
Mar 27, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
include: Fix IRequestDictionary and IResponse definition.
Signed-off-by:
Nikolay Sivov
<
nsivov@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
ea9b7974
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
36 additions
and
37 deletions
+36
-37
asptlb.idl
include/asptlb.idl
+36
-37
No files found.
include/asptlb.idl
View file @
7e32226a
...
...
@@ -28,17 +28,16 @@ import "oaidl.idl";
interface
IRequestDictionary
:
IDispatch
{
[
propget
]
HRESULT
Item
(
IRequestDictionary
*
iface
,
[
in
,
optional
]
VARIANT
Var
,
[
retval
,
out
]
VARIANT
*
pVariantReturn
)
;
HRESULT
Item
(
[
in
,
optional
]
VARIANT
Var
,
[
retval
,
out
]
VARIANT
*
pVariantReturn
)
;
[
restricted
,
propget
]
HRESULT
_NewEnum
(
IRequestDictionary
*
iface
,
[
retval
,
out
]
IUnknown
**
ppEnumReturn
)
;
HRESULT
_NewEnum
(
[
retval
,
out
]
IUnknown
**
ppEnumReturn
)
;
[
propget
]
HRESULT
Count
(
IRequestDictionary
*
iface
,
[
retval
,
out
]
int
*
cStrRe
t
)
;
HRESULT
Count
(
[
retval
,
out
]
int
*
coun
t
)
;
[
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
{
[
propget
]
HRESULT
Buffer
(
IResponse
*
iface
,
[
retval
,
out
]
VARIANT_BOOL
*
fIsB
uffering
)
;
HRESULT
Buffer
(
[
retval
,
out
]
VARIANT_BOOL
*
is_b
uffering
)
;
[
propput
]
HRESULT
Buffer
(
IResponse
*
iface
,
[
in
]
VARIANT_BOOL
fIsB
uffering
)
;
HRESULT
Buffer
(
[
in
]
VARIANT_BOOL
is_b
uffering
)
;
[
propget
]
HRESULT
ContentType
(
IResponse
*
iface
,
[
retval
,
out
]
BSTR
*
pbstrContentTypeRet
)
;
HRESULT
ContentType
(
[
retval
,
out
]
BSTR
*
content_type
)
;
[
propput
]
HRESULT
ContentType
(
IResponse
*
iface
,
[
in
]
BSTR
bstrContentT
ype
)
;
HRESULT
ContentType
(
[
in
]
BSTR
content_t
ype
)
;
[
propget
]
HRESULT
Expires
(
IResponse
*
iface
,
[
retval
,
out
]
VARIANT
*
pvarExpiresMinutesRet
)
;
HRESULT
Expires
(
[
retval
,
out
]
VARIANT
*
minutes
)
;
[
propput
]
HRESULT
Expires
(
IResponse
*
iface
,
[
in
]
long
lExpiresM
inutes
)
;
HRESULT
Expires
(
[
in
]
LONG
m
inutes
)
;
[
propget
]
HRESULT
ExpiresAbsolute
(
IResponse
*
iface
,
[
retval
,
out
]
VARIANT
*
pvarExpiresRet
)
;
HRESULT
ExpiresAbsolute
(
[
retval
,
out
]
VARIANT
*
expires
)
;
[
propput
]
HRESULT
ExpiresAbsolute
(
IResponse
*
iface
,
[
in
]
DATE
dtE
xpires
)
;
HRESULT
ExpiresAbsolute
(
[
in
]
DATE
e
xpires
)
;
[
propget
]
HRESULT
Cookies
(
IResponse
*
iface
,
[
retval
,
out
]
IRequestDictionary
**
ppC
ookies
)
;
HRESULT
Cookies
(
[
retval
,
out
]
IRequestDictionary
**
c
ookies
)
;
[
propget
]
HRESULT
Status
(
IResponse
*
iface
,
[
retval
][
out
]
BSTR
*
pbstrStatusRet
)
;
HRESULT
Status
(
[
retval
,
out
]
BSTR
*
status
)
;
[
propput
]
HRESULT
Status
(
IResponse
*
iface
,
[
in
]
BSTR
bstrS
tatus
)
;
HRESULT
Status
(
[
in
]
BSTR
s
tatus
)
;
[
hidden
]
HRESULT
Add
(
IResponse
*
iface
,
[
in
]
BSTR
bstrHeaderValue
,
[
in
]
BSTR
bstrHeaderN
ame
)
;
HRESULT
Add
(
[
in
]
BSTR
value
,
[
in
]
BSTR
n
ame
)
;
HRESULT
AddHeader
(
IResponse
*
iface
,
[
in
]
BSTR
bstrHeaderName
,
[
in
]
BSTR
bstrHeaderV
alue
)
;
HRESULT
AddHeader
(
[
in
]
BSTR
name
,
[
in
]
BSTR
v
alue
)
;
HRESULT
AppendToLog
(
IResponse
*
iface
,
[
in
]
BSTR
bstrLogE
ntry
)
;
HRESULT
AppendToLog
(
[
in
]
BSTR
log_e
ntry
)
;
HRESULT
BinaryWrite
(
IResponse
*
iface
,
[
in
]
VARIANT
varI
nput
)
;
HRESULT
BinaryWrite
(
[
in
]
VARIANT
i
nput
)
;
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
varT
ext
)
;
HRESULT
Write
(
[
in
]
VARIANT
t
ext
)
;
[
hidden
]
HRESULT
WriteBlock
(
IResponse
*
iface
,
[
in
]
short
iBlockN
umber
)
;
HRESULT
WriteBlock
(
[
in
]
short
block_n
umber
)
;
HRESULT
IsClientConnected
(
IResponse
*
iface
,
[
retval
,
out
]
VARIANT_BOOL
*
pfIsClientC
onnected
)
;
HRESULT
IsClientConnected
(
[
retval
,
out
]
VARIANT_BOOL
*
is_c
onnected
)
;
[
propget
]
HRESULT
get_CharSet
(
IResponse
*
iface
,
[
retval
,
out
]
BSTR
*
pbstrCharSetR
et
)
;
HRESULT
CharSet
(
[
retval
,
out
]
BSTR
*
chars
et
)
;
[
propput
]
HRESULT
put_CharSet
(
IResponse
*
iface
,
[
in
]
BSTR
bstrCharS
et
)
;
HRESULT
CharSet
(
[
in
]
BSTR
chars
et
)
;
HRESULT
Pics
(
IResponse
*
iface
,
[
in
]
BSTR
bstrHeaderV
alue
)
;
HRESULT
Pics
(
[
in
]
BSTR
v
alue
)
;
[
propget
]
HRESULT
get_CacheControl
(
IResponse
*
iface
,
[
retval
,
out
]
BSTR
*
pbstrCacheC
ontrol
)
;
HRESULT
CacheControl
(
[
retval
,
out
]
BSTR
*
cache_c
ontrol
)
;
[
propput
]
HRESULT
put_CacheControl
(
IResponse
*
iface
,
[
in
]
BSTR
bstrCacheC
ontrol
)
;
HRESULT
CacheControl
(
[
in
]
BSTR
cache_c
ontrol
)
;
[
propget
]
HRESULT
get_CodePage
(
IResponse
*
iface
,
[
retval
,
out
]
long
*
plvar
)
;
HRESULT
CodePage
(
[
retval
,
out
]
LONG
*
codepage
)
;
[
propput
]
HRESULT
put_CodePage
(
IResponse
*
iface
,
[
in
]
long
lvar
)
;
HRESULT
CodePage
(
[
in
]
LONG
codepage
)
;
[
propget
]
HRESULT
get_LCID
(
IResponse
*
iface
,
[
retval
,
out
]
long
*
plvar
)
;
HRESULT
LCID
(
[
retval
,
out
]
LONG
*
lcid
)
;
[
propput
]
HRESULT
put_LCID
(
IResponse
*
iface
,
[
in
]
long
lvar
)
;
}
;
HRESULT
LCID
(
[
in
]
LONG
lcid
)
;
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment