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_APEINFODIALOG_H
#define APE_APEINFODIALOG_H
BOOL CALLBACK FileInfoDialogProcedureA(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam);
class CAPEInfoDialog
{
public:
CAPEInfoDialog();
~CAPEInfoDialog();
int ShowAPEInfoDialog(const str_utf16 * pFilename, HINSTANCE hInstance, const str_utf16 * lpszTemplateName, HWND hWndParent);
private:
static LRESULT CALLBACK DialogProc(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam);
int FillGenreComboBox(HWND hDlg, int nComboBoxID, char * pSelectedGenre);
IAPEDecompress * m_pAPEDecompress;
};
#endif // #ifndef APE_APEINFODIALOG_H