Files
MilkDrop3/code/audio/prefs.h
2023-04-17 19:25:26 -04:00

16 lines
292 B
C++

// prefs.h
class CPrefs {
public:
IMMDevice *m_pMMDevice;
HMMIO m_hFile;
bool m_bInt16;
PWAVEFORMATEX m_pwfx;
LPCWSTR m_szFilename;
// set hr to S_FALSE to abort but return success
CPrefs(int argc, LPCWSTR argv[], HRESULT &hr);
~CPrefs();
};