Home
last modified time | relevance | path

Searched refs:chunk_entry (Results 1 – 3 of 3) sorted by relevance

/reactos/dll/directx/wine/dmusic/
H A Ddmobject.h27 struct chunk_entry;
28 struct chunk_entry { struct
33 const struct chunk_entry *parent; /* enclosing RIFF or LIST chunk */ argument
36 HRESULT stream_get_chunk(IStream *stream, struct chunk_entry *chunk) DECLSPEC_HIDDEN;
37 HRESULT stream_next_chunk(IStream *stream, struct chunk_entry *chunk) DECLSPEC_HIDDEN;
38 HRESULT stream_skip_chunk(IStream *stream, struct chunk_entry *chunk) DECLSPEC_HIDDEN;
40 HRESULT stream_chunk_get_data(IStream *stream, const struct chunk_entry *chunk, void *data,
42 HRESULT stream_chunk_get_wstr(IStream *stream, const struct chunk_entry *chunk, WCHAR *str,
45 static inline HRESULT stream_reset_chunk_data(IStream *stream, const struct chunk_entry *chunk) in stream_reset_chunk_data()
65 const char *debugstr_chunk(const struct chunk_entry *chunk) DECLSPEC_HIDDEN;
[all …]
H A Ddmobject.c48 const char *debugstr_chunk(const struct chunk_entry *chunk) in debugstr_chunk()
76 HRESULT stream_get_chunk(IStream *stream, struct chunk_entry *chunk) in stream_get_chunk()
121 HRESULT stream_skip_chunk(IStream *stream, struct chunk_entry *chunk) in stream_skip_chunk()
130 HRESULT stream_next_chunk(IStream *stream, struct chunk_entry *chunk) in stream_next_chunk()
262 struct chunk_entry chunk = {.parent = info}; in info_get_name()
264 struct chunk_entry chunk = { 0, 0, 0, {{0}}, info }; in info_get_name()
285 struct chunk_entry chunk = {.parent = unfo}; in unfo_get_name()
287 struct chunk_entry chunk = { 0, 0, 0, {{0}}, unfo }; in unfo_get_name()
296 HRESULT dmobj_parsedescriptor(IStream *stream, const struct chunk_entry *riff, in dmobj_parsedescriptor()
300 struct chunk_entry chunk = {.parent = riff}; in dmobj_parsedescriptor()
[all …]
H A Dcollection.c182 struct chunk_entry riff = {0}; in col_IDirectMusicObject_ParseDescriptor()