diff options
author | Alexander Lantsev <aunsane@gmail.com> | 2015-04-15 21:29:20 +0000 |
---|---|---|
committer | Alexander Lantsev <aunsane@gmail.com> | 2015-04-15 21:29:20 +0000 |
commit | f2dcf0c403d9083ec794376ba690d79727a6d318 (patch) | |
tree | a81596bcb1694d033f0a843c66111841fefa9a17 /protocols/Tox/src/tox_multimedia.h | |
parent | da9ae2242b65c735ccda30107cd2f8ee5a021948 (diff) |
Tox: audio support pt.3
git-svn-id: http://svn.miranda-ng.org/main/trunk@12850 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Tox/src/tox_multimedia.h')
-rw-r--r-- | protocols/Tox/src/tox_multimedia.h | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/protocols/Tox/src/tox_multimedia.h b/protocols/Tox/src/tox_multimedia.h new file mode 100644 index 0000000000..3dd5ad475b --- /dev/null +++ b/protocols/Tox/src/tox_multimedia.h @@ -0,0 +1,24 @@ +#ifndef _TOX_MULTIMEDIA_H_
+#define _TOX_MULTIMEDIA_H_
+
+class CToxAudioCall : public CToxDlgBase
+{
+private:
+ int callId;
+
+ CCtrlButton ok;
+ CCtrlButton cancel;
+
+protected:
+ void OnInitDialog();
+ void OnOk(CCtrlBase*);
+ void OnCancel(CCtrlBase*);
+ void OnClose();
+
+ INT_PTR DlgProc(UINT msg, WPARAM wParam, LPARAM lParam);
+
+public:
+ CToxAudioCall(CToxProto *proto, int callId);
+};
+
+#endif //_TOX_MULTIMEDIA_H_
\ No newline at end of file |