summaryrefslogtreecommitdiffstats
path: root/common/commands
diff options
context:
space:
mode:
authorAaron Seigo <aseigo@kde.org>2014-12-16 22:40:44 +0100
committerAaron Seigo <aseigo@kde.org>2014-12-16 22:40:44 +0100
commit77944384d24b5005d6b8648572a31a3ae84dd946 (patch)
tree8726831773b4182cb6177d6c72a723e08a6c15aa /common/commands
parent66b21fd2e3c53e4a820e3343b192be7b043da110 (diff)
downloadsink-77944384d24b5005d6b8648572a31a3ae84dd946.tar.gz
sink-77944384d24b5005d6b8648572a31a3ae84dd946.zip
add pipelines (as a sketch only), message ids and message responses
Diffstat (limited to 'common/commands')
-rw-r--r--common/commands/commandcompletion.fbs6
1 files changed, 3 insertions, 3 deletions
diff --git a/common/commands/commandcompletion.fbs b/common/commands/commandcompletion.fbs
index 9583108..5330b4f 100644
--- a/common/commands/commandcompletion.fbs
+++ b/common/commands/commandcompletion.fbs
@@ -1,9 +1,9 @@
1namespace Akonadi2; 1namespace Akonadi2;
2 2
3table CommandCompletion { 3table CommandCompletion {
4 id: ulong 4 id: ulong;
5 success: bool 5 success: bool = true;
6 log: ulong = 0 6 log: ulong = 0;
7} 7}
8 8
9root_type CommandCompletion; 9root_type CommandCompletion;