VERINFO.H
上传用户:carrie980
上传日期:2013-03-28
资源大小:1143k
文件大小:1k
- /**************************************************************************
- *
- * THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY
- * KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR
- * PURPOSE.
- *
- * Copyright (C) 1993 - 1996 Microsoft Corporation. All Rights Reserved.
- *
- **************************************************************************/
- #define APPVERSION 4
- #define APPREVISION 0
- #define APPRELEASE 0
- #define VERSIONPRODUCTNAME "Microsoft Windows "
- #define VERSIONCOPYRIGHT "Copyright (C)Microsoft Corp. 1991-1995 "
- #define VERSIONSTR "4.00 "
- #define VERSIONCOMPANYNAME "Microsoft Corporation "
- #ifndef OFFICIAL
- #define VER_PRIVATEBUILD VS_FF_PRIVATEBUILD
- #else
- #define VER_PRIVATEBUILD 0
- #endif
- #ifndef FINAL
- #define VER_PRERELEASE VS_FF_PRERELEASE
- #else
- #define VER_PRERELEASE 0
- #endif
- #if defined(DEBUG_RETAIL)
- #define VER_DEBUG VS_FF_DEBUG
- #elif defined(DEBUG)
- #define VER_DEBUG VS_FF_DEBUG
- #else
- #define VER_DEBUG 0
- #endif
- #define VERSIONFLAGS (VER_PRIVATEBUILD|VER_PRERELEASE|VER_DEBUG)
- #define VERSIONFILEFLAGSMASK 0x0030003FL