Skip to content

Latest commit

 

History

History
27 lines (23 loc) · 852 Bytes

mms_version.h

File metadata and controls

27 lines (23 loc) · 852 Bytes
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/*
* Copyright (C) 2016 Jolla Ltd.
* Contact: Slava Monich <slava.monich@jolla.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation.
*
* This program 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 General Public License for more details.
*
*/
#ifndef JOLLA_MMS_VERSION_H
#define JOLLA_MMS_VERSION_H
#ifndef MMS_ENGINE_VERSION
Apr 4, 2016
Apr 4, 2016
20
# define MMS_ENGINE_VERSION 1.0.48
21
22
23
24
25
26
27
#endif
#define MMS_VERSION_STRING__(x) #x
#define MMS_VERSION_STRING_(x) MMS_VERSION_STRING__(x)
#define MMS_VERSION_STRING MMS_VERSION_STRING_(MMS_ENGINE_VERSION)
#endif /* JOLLA_MMS_VERSION_H */