Handle email dumping separately from chat dumping

This makes it actually possible to unambiguously parse the full thing
on the receiving end.
This commit is contained in:
2021-12-03 22:23:59 +01:00
parent 9ab998688c
commit 05d6174351
3 changed files with 56 additions and 3 deletions

View File

@@ -1,5 +1,10 @@
#pragma once
#include <vector>
#include <string>
namespace Email {
void init();
extern std::vector<std::string> dump;
void init();
}