summaryrefslogtreecommitdiff
path: root/src/T2DLL/T2SerialDialog.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/T2DLL/T2SerialDialog.h')
-rw-r--r--src/T2DLL/T2SerialDialog.h18
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];
+};