mirror of
https://github.com/WinampDesktop/winamp.git
synced 2025-06-10 11:59:58 -05:00
Initial community commit
This commit is contained in:
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
|
Reference in New Issue
Block a user