mirror of
https://github.com/claunia/cuetools.net.git
synced 2025-12-16 18:14:25 +00:00
initial checkin
This commit is contained in:
22
MAC_SDK/Source/Shared/WAVInfoDialog.h
Normal file
22
MAC_SDK/Source/Shared/WAVInfoDialog.h
Normal file
@@ -0,0 +1,22 @@
|
||||
#ifndef APE_WAVINFODIALOG_H
|
||||
#define APE_WAVINFODIALOG_H
|
||||
|
||||
BOOL CALLBACK FileInfoDialogProcedureA(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam);
|
||||
|
||||
class CWAVInfoDialog
|
||||
{
|
||||
public:
|
||||
|
||||
CWAVInfoDialog();
|
||||
~CWAVInfoDialog();
|
||||
|
||||
long ShowWAVInfoDialog(const str_utf16 * pFilename, HINSTANCE hInstance, const str_utf16 * lpTemplateName, HWND hWndParent);
|
||||
|
||||
private:
|
||||
|
||||
static LRESULT CALLBACK DialogProc(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam);
|
||||
long InitDialog(HWND hDlg);
|
||||
TCHAR m_cFileName[MAX_PATH];
|
||||
};
|
||||
|
||||
#endif // #ifndef APE_WAVINFODIALOG_H
|
||||
Reference in New Issue
Block a user