Windows NT 4.0 source code leak
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

181 lines
4.4 KiB

/*
* !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
* !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
* !!!!!!!IF YOU CHANGE TABS TO SPACES, YOU WILL BE KILLED!!!!!!!
* !!!!!!!!!!!!!!DOING SO FUCKS THE BUILD PROCESS!!!!!!!!!!!!!!!!
* !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
* !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
*/
/*
* verinfo.h - internal header file to define the build version
*
*/
//
// WARNING! the following defines are used by some of the components in
// the multimedia core. do *NOT* put LEADING ZERO's on these numbers or
// they will end up as OCTAL numbers in the C code!
//
#include <ntverp.h>
#ifdef MTN
#define OFFICIAL 1
#define FINAL 0
#ifdef ALTACM
#define /*ALTACM*/ MMVERSION 2
#define /*ALTACM*/ MMREVISION 0
#define /*ALTACM*/ MMRELEASE 90
#ifdef RC_INVOKED
#define VERSIONPRODUCTNAME "Microsoft Audio Compression Manager\0"
#define VERSIONCOPYRIGHT "Copyright \251 Microsoft Corp. 1992-1994\0"
#endif
#if defined(DEBUG_RETAIL)
#define /*ALTACM*/ VERSIONSTR "Motown Retail Debug Version 2.00.090\0"
#elif defined(DEBUG)
#define /*ALTACM*/ VERSIONSTR "Motown Internal Debug Version 2.00.090\0"
#else
#define /*ALTACM*/ VERSIONSTR "2.00\0"
#endif
#elif defined(ALTVFW)
#define /*ALTVFW*/ MMVERSION 4
#define /*ALTVFW*/ MMREVISION 0
#define /*ALTVFW*/ MMRELEASE 90
#ifdef RC_INVOKED
#define VERSIONPRODUCTNAME "Microsoft Video for Windows\0"
#define VERSIONCOPYRIGHT "Copyright \251 Microsoft Corp. 1992-1994\0"
#endif
#if defined(DEBUG_RETAIL)
#define /*ALTVFW*/ VERSIONSTR "Motown Retail Debug Version 4.00.090\0"
#elif defined(DEBUG)
#define /*ALTVFW*/ VERSIONSTR "Motown Internal Debug Version 4.00.090\0"
#else
#define /*ALTVFW*/ VERSIONSTR "4.00\0"
#endif
#else
#define /*MTN*/ MMVERSION 4
#define /*MTN*/ MMREVISION 0
#define /*MTN*/ MMRELEASE 90
#ifdef RC_INVOKED
#define VERSIONPRODUCTNAME "Microsoft Windows\0"
#define VERSIONCOPYRIGHT "Copyright \251 Microsoft Corp. 1991-1994\0"
#endif
#if defined(DEBUG_RETAIL)
#define /*MTN*/ VERSIONSTR "Motown Retail Debug Version 4.00.090\0"
#elif defined(DEBUG)
#define /*MTN*/ VERSIONSTR "Motown Internal Debug Version 4.00.090\0"
#else
#define /*MTN*/ VERSIONSTR "4.00\0"
#endif
#endif
#elif defined(ACM)
#define OFFICIAL 1
#define FINAL 0
#define /*ACM*/ MMVERSION 4
#define /*ACM*/ MMREVISION 00
#define /*ACM*/ MMRELEASE VER_PRODUCTBUILD
#ifdef RC_INVOKED
#define VERSIONPRODUCTNAME "Microsoft\251 Windows NT(TM) Operating System\0"
#define VERSIONCOPYRIGHT "Copyright \251 Microsoft Corp. 1992-1996\0"
#endif
#if defined(DEBUG_RETAIL)
#define /*ACM*/ VERSIONSTR "ACM Retail Debug Version 4.00.000\0"
#elif defined(DEBUG)
#define /*ACM*/ VERSIONSTR "ACM Internal Debug Version 4.00.000\0"
#else
#define /*ACM*/ VERSIONSTR "4.00\0"
#endif
#elif defined(VFW)
#define OFFICIAL 1
#define FINAL 0
#define /*VFW*/ MMVERSION 1
#define /*VFW*/ MMREVISION 10
#define /*VFW*/ MMRELEASE 190
#ifdef RC_INVOKED
#define VERSIONPRODUCTNAME "Microsoft Video for Windows\0"
#define VERSIONCOPYRIGHT "Copyright \251 Microsoft Corp. 1992-1994\0"
#endif
#ifdef WIN32
#if defined(DEBUG_RETAIL)
#define /*VFW*/ VERSIONSTR "Video for Windows Retail Debug Version 1.15.001 (NT)\0"
#elif defined(DEBUG)
#define /*VFW*/ VERSIONSTR "Video for Windows Internal Debug Version 1.15.001 (NT)\0"
#else
#define /*VFW*/ VERSIONSTR "1.15\0"
#endif
#else // WIN32
#if defined(DEBUG_RETAIL)
#define /*VFW*/ VERSIONSTR "Video for Windows Retail Debug Version 1.15.001\0"
#elif defined(DEBUG)
#define /*VFW*/ VERSIONSTR "Video for Windows Internal Debug Version 1.15.001\0"
#else
#define /*VFW*/ VERSIONSTR "1.15\0"
#endif
#endif
#endif
/***************************************************************************
* DO NOT TOUCH BELOW THIS LINE *
***************************************************************************/
#ifdef RC_INVOKED
#define VERSIONCOMPANYNAME "Microsoft Corporation\0"
/*
* Version flags
*/
#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
#endif