|
|
|
/*
|
|
|
|
* Secure X Message Passing Library v2 implementation.
|
|
|
|
* (sxmplv2) it superseed all versions before due to the:
|
|
|
|
* - memory consumption
|
|
|
|
* - new features such as pulse emitting
|
|
|
|
* - performance optimization
|
|
|
|
*
|
|
|
|
* (c) Askele Group 2013-2015 <http://askele.com>
|
|
|
|
* (c) Alexander Vdolainen 2013-2015, 2016 <avdolainen@zoho.com>
|
|
|
|
*
|
|
|
|
* libsxmp is free software: you can redistribute it and/or modify it
|
|
|
|
* under the terms of the GNU Lesser General Public License as published
|
|
|
|
* by the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* libsxmp is distributed in the hope that it will be useful, but
|
|
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
* See the GNU Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.";
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __SXMP_VERSION_H__
|
|
|
|
#define __SXMP_VERSION_H__
|
|
|
|
|
|
|
|
#define SXMP_BRANCH 0
|
|
|
|
#define SXMP_MAJOR 5
|
|
|
|
#define SXMP_MINOR 0
|
|
|
|
|
|
|
|
#define V2_1_TPROT "v2_1"
|
|
|
|
|
|
|
|
typedef enum {
|
|
|
|
V2 = 0,
|
|
|
|
V2_1,
|
|
|
|
V_UNKNOWN = 200,
|
|
|
|
} sxmp_proto_version_t;
|
|
|
|
|
|
|
|
#endif /* __SXMP_VERSION_H__ */
|
|
|
|
|