[BACK]Return to version.h CVS log [TXT][DIR] Up to [local] / src / usr.bin / vim

Annotation of src/usr.bin/vim/version.h, Revision 1.1

1.1     ! downsj      1: /* $OpenBSD$   */
        !             2: /* vi:set ts=4 sw=4:
        !             3:  *
        !             4:  * VIM - Vi IMproved       by Bram Moolenaar
        !             5:  *
        !             6:  * Do ":help uganda"  in Vim to read copying and usage conditions.
        !             7:  * Do ":help credits" in Vim to see a list of people who contributed.
        !             8:  */
        !             9:
        !            10: /*
        !            11:  * This file is currently only used for the Win32 version.
        !            12:  * Should probably generate all of this from the Makefile or in a separate
        !            13:  * little C program that reads a small file; e.g., version.dat:
        !            14:  *    major=3
        !            15:  *    minor=29
        !            16:  *    build=101
        !            17:  *    patchlevel=0
        !            18:  *    date=1996 May 23
        !            19:  */
        !            20:
        !            21:
        !            22: #define VIM_VERSION_MAJOR             4
        !            23: #define VIM_VERSION_MAJOR_STR        "4"
        !            24:
        !            25: #define VIM_VERSION_MINOR             2
        !            26: #define VIM_VERSION_MINOR_STR        "2"
        !            27:
        !            28: #define VIM_VERSION_BUILD             1
        !            29: #define VIM_VERSION_BUILD_STR        "1"
        !            30:
        !            31: #define VIM_VERSION_PATCHLEVEL        0
        !            32: #define VIM_VERSION_PATCHLEVEL_STR   "0"