summaryrefslogtreecommitdiff
path: root/protocols/WhatsApp/src/entities.h
diff options
context:
space:
mode:
authorKirill Volinsky <Mataes2007@gmail.com>2017-11-29 09:33:41 +0300
committerKirill Volinsky <Mataes2007@gmail.com>2017-11-29 09:33:41 +0300
commit89f3cf8bbb9dc1fa0fe72f6af6638ac086c7e011 (patch)
tree5be9a7ae2255b9ad420bed266b90b1f98059964a /protocols/WhatsApp/src/entities.h
parente28c4adb361a87e143eb8cb2af449e3bcb3375b1 (diff)
libevent, telegram, whatsapp moved to deprecated coz doesn't work
Diffstat (limited to 'protocols/WhatsApp/src/entities.h')
-rw-r--r--protocols/WhatsApp/src/entities.h34
1 files changed, 0 insertions, 34 deletions
diff --git a/protocols/WhatsApp/src/entities.h b/protocols/WhatsApp/src/entities.h
deleted file mode 100644
index 7ed362990e..0000000000
--- a/protocols/WhatsApp/src/entities.h
+++ /dev/null
@@ -1,34 +0,0 @@
-#if !defined(ENTITIES_H)
-#define ENTITIES_H
-
-struct send_direct
-{
- send_direct(MCONTACT hContact, const std::string &msg, HANDLE msgid) :
- hContact(hContact), msg(msg), msgid(msgid)
- {}
-
- MCONTACT hContact;
- std::string msg;
- HANDLE msgid;
-};
-
-struct input_box
-{
- wstring text;
- wstring title;
- wstring defaultValue;
- int limit;
-
- void(__cdecl WhatsAppProto::*thread)(void*);
- WhatsAppProto *proto;
- void *userData;
-};
-
-struct input_box_ret // has to be deleted by input-box handler
-{
- void *userData; // has to be deleted by input-box handler
- char *value; // mir_free() has to be called by input-box handler
-};
-
-
-#endif // ENTITIES_H \ No newline at end of file