blob: cf17fa24ea2019c229eb5c4918a2c05a4e8675bb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#ifndef T2DLL_T2SERIALDIALOG_H
#define T2DLL_T2SERIALDIALOG_H
#include "../common.h"
class T2SerialDialog : public CDialog {
public:
T2SerialDialog(CWnd *parent);
void GetSerial(char *buf);
DECLARE_MESSAGE_MAP();
protected:
virtual void DoDataExchange(CDataExchange *pDX);
virtual void OnOK();
virtual BOOL OnCommand(WPARAM wParam, LPARAM lParam);
void OnPaint();
CString mStrings[4];
};
#endif
|