diff options
Diffstat (limited to 'src/T2DLL/T2SerialDialog.h')
-rw-r--r-- | src/T2DLL/T2SerialDialog.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/T2DLL/T2SerialDialog.h b/src/T2DLL/T2SerialDialog.h new file mode 100644 index 0000000..dab8deb --- /dev/null +++ b/src/T2DLL/T2SerialDialog.h @@ -0,0 +1,18 @@ +#pragma once +#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]; +}; |