diff options
author | Alexander Lantsev <aunsane@gmail.com> | 2015-04-18 22:24:28 +0000 |
---|---|---|
committer | Alexander Lantsev <aunsane@gmail.com> | 2015-04-18 22:24:28 +0000 |
commit | 0e78d281be6ce359321346526f9687bab987d9e1 (patch) | |
tree | 6824185b4baa11cff7fa006249e2ef7e2276ceed /protocols/Steam/src/steam_dialogs.h | |
parent | b6c4bc14c137ecf8f4bea73f01ebde7786bf8a0f (diff) |
Steam: fixed captacha & guard dialogs
git-svn-id: http://svn.miranda-ng.org/main/trunk@12926 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Steam/src/steam_dialogs.h')
-rw-r--r-- | protocols/Steam/src/steam_dialogs.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/protocols/Steam/src/steam_dialogs.h b/protocols/Steam/src/steam_dialogs.h index 768d87c75c..d98eac7222 100644 --- a/protocols/Steam/src/steam_dialogs.h +++ b/protocols/Steam/src/steam_dialogs.h @@ -32,6 +32,7 @@ private: typedef CSteamDlgBase CSuper;
char m_domain[32];
+ char m_guardCode[5];
CCtrlEdit m_text;
CCtrlButton m_ok;
@@ -45,7 +46,7 @@ protected: public:
CSteamGuardDialog(CSteamProto *proto, char *domain);
- char *GetGuardCode();
+ const char *GetGuardCode();
};
/////////////////////////////////////////////////////////////////////////////////
@@ -55,6 +56,8 @@ class CSteamCaptchaDialog : public CSteamDlgBase private:
typedef CSteamDlgBase CSuper;
+ char m_captchaText[6];
+
BYTE *m_captchaImage;
int m_captchaImageSize;
@@ -72,7 +75,7 @@ public: CSteamCaptchaDialog(CSteamProto *proto, BYTE *captchaImage, int captchaImageSize);
~CSteamCaptchaDialog();
- char *GetCaptchaText();
+ const char *GetCaptchaText();
};
/////////////////////////////////////////////////////////////////////////////////
|