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/APEInfoDialog.h
Normal file
22
MAC_SDK/Source/Shared/APEInfoDialog.h
Normal 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
|
||||
Reference in New Issue
Block a user