File: APEInfoDialog.h

package info (click to toggle)
libjmac-java 1.74-8
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 1,780 kB
  • sloc: java: 9,279; cpp: 4,375; xml: 369; makefile: 31; sh: 12
file content (22 lines) | stat: -rw-r--r-- 629 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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