mirror of
https://github.com/claunia/cuetools.net.git
synced 2025-12-16 18:14:25 +00:00
23 lines
581 B
C
23 lines
581 B
C
|
|
#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
|