aboutsummaryrefslogtreecommitdiff
path: root/win32/waveout.h
diff options
context:
space:
mode:
authorTakamichi Horikawa <takamichiho@gmail.com>2017-01-26 20:32:26 +0900
committerTakamichi Horikawa <takamichiho@gmail.com>2017-01-26 20:32:26 +0900
commitfc1ea6ee5b5135e70e1a0e9b2737f6189b740691 (patch)
tree53f206e2f77e3450f8c0def24c488ef19ac3a72d /win32/waveout.h
parent49ecf760ec6e8b145850be6f3b13020502e10eb4 (diff)
refactor win32 sound output and improve stability under load
Diffstat (limited to 'win32/waveout.h')
-rw-r--r--win32/waveout.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/win32/waveout.h b/win32/waveout.h
index ff33b01..d8c4c3a 100644
--- a/win32/waveout.h
+++ b/win32/waveout.h
@@ -3,11 +3,7 @@
#include "soundout.h"
-struct waveout_state;
-
-struct waveout_state *waveout_init(HWND hwnd, unsigned srate, unsigned sectlen,
+struct sound_state *waveout_init(HWND hwnd, unsigned srate, unsigned sectlen,
sound_callback cbfunc, void *userptr);
-void waveout_delete(struct waveout_state *waveout);
-void waveout_pause(struct waveout_state *waveout, int pause);
#endif // MYON_WAVEOUT_H_INCLUDED