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

MumbleConstants.h « src - github.com/mumble-voip/mumble.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: df4fe49e5cb21bfd25fed9b2c8b1df98a313ae5d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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_