Cog/Libraries/MAC/Files/Source/Shared/APEInfoDialog.h
2005-06-02 18:16:43 +00:00

22 lines
No EOL
608 B
C++
Executable file

#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