dmime: Constify the chunk parameter of stream_skip_chunk().
Signed-off-by: Michael Stefaniuc <mstefani@winehq.org> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
2b76b9f234
commit
4fc685a8b7
|
@ -349,7 +349,7 @@ HRESULT stream_get_chunk(IStream *stream, struct chunk_entry *chunk)
|
|||
return S_OK;
|
||||
}
|
||||
|
||||
HRESULT stream_skip_chunk(IStream *stream, struct chunk_entry *chunk)
|
||||
HRESULT stream_skip_chunk(IStream *stream, const struct chunk_entry *chunk)
|
||||
{
|
||||
LARGE_INTEGER end;
|
||||
|
||||
|
|
|
@ -33,7 +33,7 @@ struct chunk_entry {
|
|||
|
||||
HRESULT stream_get_chunk(IStream *stream, struct chunk_entry *chunk) DECLSPEC_HIDDEN;
|
||||
HRESULT stream_next_chunk(IStream *stream, struct chunk_entry *chunk) DECLSPEC_HIDDEN;
|
||||
HRESULT stream_skip_chunk(IStream *stream, struct chunk_entry *chunk) DECLSPEC_HIDDEN;
|
||||
HRESULT stream_skip_chunk(IStream *stream, const struct chunk_entry *chunk) DECLSPEC_HIDDEN;
|
||||
|
||||
HRESULT stream_chunk_get_data(IStream *stream, const struct chunk_entry *chunk, void *data,
|
||||
ULONG size) DECLSPEC_HIDDEN;
|
||||
|
|
Loading…
Reference in New Issue