Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mumble-voip/mumble.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/MumbleConstants.h')
-rw-r--r--src/MumbleConstants.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/MumbleConstants.h b/src/MumbleConstants.h
new file mode 100644
index 000000000..df4fe49e5
--- /dev/null
+++ b/src/MumbleConstants.h
@@ -0,0 +1,20 @@
+// Copyright 2021 The Mumble Developers. All rights reserved.
+// Use of this source code is governed by a BSD-style license
+// that can be found in the LICENSE file at the root of the
+// Mumble source tree or at <https://www.mumble.info/LICENSE>.
+
+#ifndef MUMBLE_MUMBLECONSTANTS_H_
+#define MUMBLE_MUMBLECONSTANTS_H_
+
+namespace Mumble {
+namespace Plugins {
+ namespace PluginMessage {
+
+ constexpr int MAX_DATA_LENGTH = 1000;
+ constexpr int MAX_DATA_ID_LENGTH = 100;
+
+ }; // namespace PluginMessage
+}; // namespace Plugins
+}; // namespace Mumble
+
+#endif // MUMBLE_MUMBLECONSTANTS_H_