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.
24 lines
450 B
24 lines
450 B
#ifndef MXCTDLG_H
|
|
#define MXCTDLG_H
|
|
|
|
#include "hwprompt.h"
|
|
|
|
#define MAX_DEVICENAME 50
|
|
|
|
class CMixedContentDlg : public CHWPromptDlg
|
|
{
|
|
public:
|
|
CMixedContentDlg();
|
|
|
|
protected:
|
|
virtual ~CMixedContentDlg();
|
|
HRESULT _FillListView();
|
|
HRESULT _InitStatics();
|
|
HRESULT _InitSelections();
|
|
|
|
private:
|
|
LPWSTR _rgpszContentTypeFN[5];
|
|
DWORD _cContentTypeFN;
|
|
};
|
|
|
|
#endif //MXCTDLG_H
|