mirror of
https://github.com/milkdrop2077/MilkDrop3.git
synced 2025-12-01 12:04:52 +00:00
16 lines
292 B
C++
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();
|
|
|
|
};
|