summaryrefslogtreecommitdiff
path: root/protocols/WhatsApp/src/entities.h
diff options
context:
space:
mode:
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