Initial community commit
This commit is contained in:
parent
537bcbc862
commit
fc06254474
16440 changed files with 4239995 additions and 2 deletions
31
Src/Plugins/Encoder/enc_wav/Config.h
Normal file
31
Src/Plugins/Encoder/enc_wav/Config.h
Normal file
|
@ -0,0 +1,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
|
Loading…
Add table
Add a link
Reference in a new issue