Go to the documentation of this file.
34 #define UNI_MAJOR_VERSION 1
40 #define UNI_MINOR_VERSION 5
46 #define UNI_PATCH_VERSION 0
50 #define UNI_VERSION_AT_LEAST(major,minor,patch) \
51 (((major) < UNI_MAJOR_VERSION) \
52 || ((major) == UNI_MAJOR_VERSION && (minor) < UNI_MINOR_VERSION) \
53 || ((major) == UNI_MAJOR_VERSION && (minor) == UNI_MINOR_VERSION && (patch) <= UNI_PATCH_VERSION))
56 #define UNI_STRINGIFY(n) UNI_STRINGIFY_HELPER(n)
58 #define UNI_STRINGIFY_HELPER(n) #n
61 #define UNI_VERSION_STRING \
62 UNI_STRINGIFY(UNI_MAJOR_VERSION) "." \
63 UNI_STRINGIFY(UNI_MINOR_VERSION) "." \
64 UNI_STRINGIFY(UNI_PATCH_VERSION)
68 #define UNI_VERSION_STRING_CSV UNI_MAJOR_VERSION ##, \
69 ##UNI_MINOR_VERSION ##, \
73 #define UNI_COPYRIGHT "Copyright 2008-2017 Arsen Chaloyan"
79 #if defined(APSTUDIO_INVOKED) || defined(RC_INVOKED)
81 #define UNI_LICENSE "The Apache License, Version 2.0"
85 " * Licensed under the Apache License, Version 2.0 (the ""License"");\n" \
86 " * you may not use this file except in compliance with the License.\n" \
87 " * You may obtain a copy of the License at\n" \
89 " * http://www.apache.org/licenses/LICENSE-2.0 \n" \
91 " * Unless required by applicable law or agreed to in writing, software\n" \
92 " * distributed under the License is distributed on an ""AS IS"" BASIS,\n" \
93 " * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n" \
94 " * See the License for the specific language governing permissions and\n" \
95 " * limitations under the License.\n"