Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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
wine
wine-winehq
Commits
c3ce7b5d
Commit
c3ce7b5d
authored
Aug 03, 2009
by
Vincent Povirk
Committed by
Alexandre Julliard
Aug 10, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
include: Add IWICStream to headers.
parent
52bade97
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
23 additions
and
1 deletion
+23
-1
wincodec.idl
include/wincodec.idl
+23
-1
No files found.
include/wincodec.idl
View file @
c3ce7b5d
...
...
@@ -143,7 +143,6 @@ interface IWICFormatConverter;
interface
IWICBitmapScaler
;
interface
IWICBitmapClipper
;
interface
IWICBitmapFlipRotator
;
interface
IWICStream
;
interface
IWICColorContext
;
interface
IWICColorTransform
;
interface
IWICFastMetadataEncoder
;
...
...
@@ -401,6 +400,29 @@ interface IWICBitmapDecoder : IUnknown
[
out
]
IWICBitmapFrameDecode
**
ppIBitmapFrame
)
;
}
[
object
,
uuid
(
135
ff860
-
22b7
-
4
ddf
-
b0f6
-
218
f4f299a43
)
]
interface
IWICStream
:
IStream
{
HRESULT
InitializeFromIStream
(
[
in
]
IStream
*
pIStream
)
;
HRESULT
InitializeFromFilename
(
[
in
]
LPCWSTR
wzFileName
,
[
in
]
DWORD
dwAccessMode
)
;
HRESULT
InitializeFromMemory
(
[
in
,
size_is
(
cbBufferSize
)
]
BYTE
*
pbBuffer
,
[
in
]
DWORD
cbBufferSize
)
;
HRESULT
InitializeFromIStreamRegion
(
[
in
]
IStream
*
pIStream
,
[
in
]
ULARGE_INTEGER
ulOffset
,
[
in
]
ULARGE_INTEGER
ulMaxSize
)
;
}
cpp_quote
(
"DEFINE_GUID(CLSID_WICImagingFactory, 0xcacaf262,0x9370,0x4615,0xa1,0x3b,0x9f,0x55,0x39,0xda,0x4c,0x0a);"
)
[
...
...
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