initial checkin

This commit is contained in:
chudov
2008-10-13 19:25:11 +00:00
parent 2e379c72e2
commit 36757fca7a
937 changed files with 184964 additions and 0 deletions

View 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