You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
522 B
27 lines
522 B
#ifndef HWCTPRMP_H
|
|
#define HWCTPRMP_H
|
|
|
|
#include "hwprompt.h"
|
|
|
|
#define MAX_DEVICENAME 50
|
|
|
|
class CHWContentPromptDlg : public CHWPromptDlg
|
|
{
|
|
public:
|
|
CHWContentPromptDlg();
|
|
|
|
protected:
|
|
virtual ~CHWContentPromptDlg();
|
|
LRESULT OnOK(WORD wNotif);
|
|
|
|
HRESULT _FillListView();
|
|
HRESULT _InitStatics();
|
|
HRESULT _InitSelections();
|
|
HRESULT _InitExistingSettings();
|
|
HRESULT _SaveSettings();
|
|
|
|
private:
|
|
LPWSTR _pszContentTypeHandler;
|
|
};
|
|
|
|
#endif //HWCTPRMP_H
|