Go to the documentation of this file.
36 #define UNI_MAJOR_VERSION 1
42 #define UNI_MINOR_VERSION 3
48 #define UNI_PATCH_VERSION 0
52 #define UNI_VERSION_AT_LEAST(major,minor,patch) \
53 (((major) < UNI_MAJOR_VERSION) \
54 || ((major) == UNI_MAJOR_VERSION && (minor) < UNI_MINOR_VERSION) \
55 || ((major) == UNI_MAJOR_VERSION && (minor) == UNI_MINOR_VERSION && (patch) <= UNI_PATCH_VERSION))
58 #define UNI_STRINGIFY(n) UNI_STRINGIFY_HELPER(n)
60 #define UNI_STRINGIFY_HELPER(n) #n
63 #define UNI_VERSION_STRING \
64 UNI_STRINGIFY(UNI_MAJOR_VERSION) "." \
65 UNI_STRINGIFY(UNI_MINOR_VERSION) "." \
66 UNI_STRINGIFY(UNI_PATCH_VERSION)
70 #define UNI_VERSION_STRING_CSV UNI_MAJOR_VERSION ##, \
71 ##UNI_MINOR_VERSION ##, \
75 #define UNI_COPYRIGHT "Copyright 2008-2014 Arsen Chaloyan"
81 #if defined(APSTUDIO_INVOKED) || defined(RC_INVOKED)
83 #define UNI_LICENSE "The Apache License, Version 2.0"
87 " * Licensed under the Apache License, Version 2.0 (the ""License"");\n" \
88 " * you may not use this file except in compliance with the License.\n" \
89 " * You may obtain a copy of the License at\n" \
91 " * http://www.apache.org/licenses/LICENSE-2.0 \n" \
93 " * Unless required by applicable law or agreed to in writing, software\n" \
94 " * distributed under the License is distributed on an ""AS IS"" BASIS,\n" \
95 " * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n" \
96 " * See the License for the specific language governing permissions and\n" \
97 " * limitations under the License.\n"