summaryrefslogtreecommitdiffstats
path: root/common/commands.h
diff options
context:
space:
mode:
authorChristian Mollekopf <chrigi_1@fastmail.fm>2016-02-09 16:14:31 +0100
committerChristian Mollekopf <chrigi_1@fastmail.fm>2016-02-09 16:14:31 +0100
commitd5b4d64ca0609f65cda606d1456f4040ff008cda (patch)
tree8e700409faa481609a2e678d2dc4eb2a520b5ef1 /common/commands.h
parent2b79fb7b6a4759086302c68d63731256465bc5fe (diff)
downloadsink-d5b4d64ca0609f65cda606d1456f4040ff008cda.tar.gz
sink-d5b4d64ca0609f65cda606d1456f4040ff008cda.zip
Use Sink instead of SinkCommon
Diffstat (limited to 'common/commands.h')
-rw-r--r--common/commands.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/common/commands.h b/common/commands.h
index adf2094..64abd76 100644
--- a/common/commands.h
+++ b/common/commands.h
@@ -20,7 +20,7 @@
20 20
21#pragma once 21#pragma once
22 22
23#include "sinkcommon_export.h" 23#include "sink_export.h"
24#include <flatbuffers/flatbuffers.h> 24#include <flatbuffers/flatbuffers.h>
25#include <QByteArray> 25#include <QByteArray>
26 26
@@ -55,10 +55,10 @@ enum CommandIds {
55 55
56QByteArray name(int commandId); 56QByteArray name(int commandId);
57 57
58int SINKCOMMON_EXPORT headerSize(); 58int SINK_EXPORT headerSize();
59void SINKCOMMON_EXPORT write(QIODevice *device, int messageId, int commandId); 59void SINK_EXPORT write(QIODevice *device, int messageId, int commandId);
60void SINKCOMMON_EXPORT write(QIODevice *device, int messageId, int commandId, const char *buffer, uint size); 60void SINK_EXPORT write(QIODevice *device, int messageId, int commandId, const char *buffer, uint size);
61void SINKCOMMON_EXPORT write(QIODevice *device, int messageId, int commandId, flatbuffers::FlatBufferBuilder &fbb); 61void SINK_EXPORT write(QIODevice *device, int messageId, int commandId, flatbuffers::FlatBufferBuilder &fbb);
62 62
63} 63}
64 64