//------------------------------------------------------------------------------
// detab.rc
// Version info for 'detab.exe'
//
// Usage:
// rc /d "R=<rev>" /d "L=<lev>" [/d "P=<patch>"] /d "VS=\"R<rev>.<lev>\"" \
//   /d "DATE=\"yyyy-mm-dd\"" detab.rc
//
// @(#)drt/src/cmd/detab.rc $Revision: 1.1 $$Date: 2010/05/20 02:16:41 $
//------------------------------------------------------------------------------

#include <winver.h>

#ifdef _WIN32
LANGUAGE 9, 1           // English, US English
 #pragma code_page(1252)
#endif

#ifndef R
 #error Revision numbers R and L are not defined
#endif
#ifndef L
 #error Revision numbers R and L are not defined
#endif
#ifndef VS
 #error Revision number VS ("R.L") is not defined
#endif
#ifndef P
 #define P	""
#endif
#ifndef DATE
 #error Revision date DATE is not defined
#endif

#ifndef _MAC

VS_VERSION_INFO VERSIONINFO
    FILEVERSION R,L,0,0
    PRODUCTVERSION R,L,0,0
    FILEFLAGSMASK 0x3FL
#ifdef _DEBUG
    FILEFLAGS 0x1L
#else
    FILEFLAGS 0x0L
#endif
    FILEOS VOS__WINDOWS32	// 0x04L
    FILETYPE VFT_APP		// 0x01L
    FILESUBTYPE VFT2_UNKNOWN	// 0x00L
BEGIN
    BLOCK "StringFileInfo"
    BEGIN
        BLOCK "040904B0"
        BEGIN
          //VALUE "Comments", "\0"
          //VALUE "CompanyName", "David R. Tribble\0"
            VALUE "FileDescription", "Convert tabs in text files into spaces\0"
            VALUE "FileVersion", VS "\0"
            VALUE "InternalName", "detab\0"
            VALUE "Author", "David R. Tribble\0"
            VALUE "LegalCopyright", "Copyright \2512010 by David R. Tribble\0"
          //VALUE "LegalTrademarks", "\0"
          //VALUE "OriginalFilename", "detab.exe\0"
          //VALUE "PrivateBuild", "\0"
            VALUE "ProductName", "detab\0"
            VALUE "ProductVersion", VS "\0"
            VALUE "ProductPatch", P "\0"
            VALUE "BuildDate", DATE "\0"
          //VALUE "SpecialBuild", "\0"
        END
    END
    BLOCK "VarFileInfo"
    BEGIN
        VALUE "Translation", 0x409, 1200
    END
END

#endif // !_MAC

// End
