"Fossies" - the Fresh Open Source Software Archive

Member "xombrero-1.6.4/version.h" (17 Feb 2015, 1195 Bytes) of package /linux/www/old/xombrero-1.6.4.tgz:


As a special service "Fossies" has tried to format the requested source page into HTML format using (guessed) C and C++ source code syntax highlighting (style: standard) with prefixed line numbers and code folding option. Alternatively you can here view or download the uninterpreted source code file. For more information about "version.h" see the Fossies "Dox" file reference documentation and the latest Fossies "Diffs" side-by-side code changes report: 1.6.3_vs_1.6.4.

    1 /*
    2  * Copyright (c) 2011 Conformal Systems LLC <info@conformal.com>
    3  *
    4  * Permission to use, copy, modify, and distribute this software for any
    5  * purpose with or without fee is hereby granted, provided that the above
    6  * copyright notice and this permission notice appear in all copies.
    7  *
    8  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
    9  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
   10  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
   11  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
   12  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
   13  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
   14  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
   15  */
   16 
   17 
   18 #ifndef XOMBRERO_VERSION_H
   19 #define XOMBRERO_VERSION_H
   20 
   21 #define XOMBRERO_STR(x)     #x
   22 #define XOMBRERO_STRINGIZE(x)   XOMBRERO_STR(x)
   23 
   24 #define XOMBRERO_MAJOR      1
   25 #define XOMBRERO_MINOR      6
   26 #define XOMBRERO_PATCH      4
   27 #define XOMBRERO_VERSION    XOMBRERO_STRINGIZE(XOMBRERO_MAJOR) "." \
   28                 XOMBRERO_STRINGIZE(XOMBRERO_MINOR) "." \
   29                 XOMBRERO_STRINGIZE(XOMBRERO_PATCH)
   30 
   31 #endif /* XOMBRERO_VERSION_H */
   32