From 20d28e80a5c861a9d5f449ea911ab75b4f37ad0d Mon Sep 17 00:00:00 2001 From: Jef Date: Tue, 24 Sep 2024 14:54:57 +0200 Subject: Initial community commit --- Src/Plugins/Encoder/enc_wav/Config.h | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 Src/Plugins/Encoder/enc_wav/Config.h (limited to 'Src/Plugins/Encoder/enc_wav/Config.h') diff --git a/Src/Plugins/Encoder/enc_wav/Config.h b/Src/Plugins/Encoder/enc_wav/Config.h new file mode 100644 index 00000000..7ca66652 --- /dev/null +++ b/Src/Plugins/Encoder/enc_wav/Config.h @@ -0,0 +1,31 @@ +#ifndef NULLSOFT_ENC_ACM_CONFIG_H +#define NULLSOFT_ENC_ACM_CONFIG_H + +#include +#include +#include + +#define WFSIZ 0x800 +struct EXT_WFX +{ + WAVEFORMATEX wfx; + BYTE crap[WFSIZ]; +}; + +struct ACMConfig +{ + EXT_WFX convert_wfx; + char wav_ext[32]; + bool header; + bool convert; +}; + +struct ConfigWnd +{ + ACMConfig cfg; + char *configfile; +}; + +INT_PTR WINAPI DlgProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam); + +#endif \ No newline at end of file -- cgit