2024-09-24 12:54:57 +00:00
|
|
|
#ifndef NULLSOFT_ENC_ACM_CONFIG_H
|
|
|
|
#define NULLSOFT_ENC_ACM_CONFIG_H
|
|
|
|
|
2024-09-29 02:04:03 +00:00
|
|
|
#include <arch.h>
|
2024-09-24 12:54:57 +00:00
|
|
|
#include <mmreg.h>
|
|
|
|
#include <msacm.h>
|
|
|
|
|
|
|
|
#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
|