diff options
author | dec05eba <dec05eba@protonmail.com> | 2019-01-27 02:09:50 +0100 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2020-08-18 23:38:23 +0200 |
commit | 6778e3b87cc9a6f5d195a2c80e5b499e3d94558b (patch) | |
tree | d37e25d48168465bdf0fb29559fe6e186a15e1d7 /include/dchat/IncomingMessage.hpp | |
parent | 2446736bc775b22cf5aaae88c2c69c9504e5eb17 (diff) |
Add binds to emoji parsing, refactor
Diffstat (limited to 'include/dchat/IncomingMessage.hpp')
-rw-r--r-- | include/dchat/IncomingMessage.hpp | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/include/dchat/IncomingMessage.hpp b/include/dchat/IncomingMessage.hpp new file mode 100644 index 0000000..b20e4d1 --- /dev/null +++ b/include/dchat/IncomingMessage.hpp @@ -0,0 +1,22 @@ +#pragma once + +#include "types.hpp" +#include "Range.hpp" +#include <functional> + +namespace dchat +{ + struct IncomingMessagePart + { + enum class Type + { + TEXT, + EMOJI + }; + + Type type; + Range textRange; + }; + + void parseIncomingMessage(const char *text, usize size, std::function<void(IncomingMessagePart)> callbackFunc); +}
\ No newline at end of file |