include: Add STORAGE_HOTPLUG_INFO structure.
[wine.git] / dlls / dmusic / dmusic_wave.h
blobbdad8ca96056030d90d769e4c5c065e02cb06a51
1 /*
2 * Copyright 2023 RĂ©mi Bernon for CodeWeavers
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this program; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
19 #include <stdarg.h>
20 #include <stddef.h>
22 #define COBJMACROS
23 #include "windef.h"
24 #include "winbase.h"
26 #include "objbase.h"
27 #include "dmusici.h"
29 struct soundfont;
30 struct chunk_entry;
32 extern HRESULT wave_create(IDirectMusicObject **ret_iface);
33 extern HRESULT wave_create_from_soundfont(struct soundfont *soundfont, UINT index, IDirectMusicObject **out);
34 extern HRESULT wave_create_from_chunk(IStream *stream, struct chunk_entry *parent, IDirectMusicObject **out);
35 extern HRESULT wave_download_to_port(IDirectMusicObject *iface, IDirectMusicPortDownload *port, DWORD *id);
36 extern HRESULT wave_download_to_dsound(IDirectMusicObject *iface, IDirectSound *dsound,
37 IDirectSoundBuffer **ret_iface);
38 extern HRESULT wave_get_duration(IDirectMusicObject *iface, REFERENCE_TIME *duration);