blob: 7ca66652b7321847706349f6cbb6c7759958d6f5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
#ifndef NULLSOFT_ENC_ACM_CONFIG_H
#define NULLSOFT_ENC_ACM_CONFIG_H
#include <windows.h>
#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
|