Leaked source code of windows server 2003
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.
 
 
 
 
 
 

163 lines
4.1 KiB

/*
* !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
* !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
* !!!!!!!IF YOU CHANGE TABS TO SPACES, YOU WILL BE KILLED!!!!!!!
* !!!!!!!!!!!!!!DOING SO MESSES UP 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>
#define VERSIONPRODUCTNAME VER_PRODUCTNAME_STR
#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 VERSIONCOPYRIGHT "Copyright (C) Microsoft Corp. 1992-1999\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 VERSIONCOPYRIGHT "Copyright (C) Microsoft Corp. 1992-1999\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 VERSIONCOPYRIGHT "Copyright (C) Microsoft Corp. 1991-1999\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 5
#define /*ACM*/ MMREVISION 00
#define /*ACM*/ MMRELEASE VER_PRODUCTBUILD
#ifdef RC_INVOKED
#define VERSIONCOPYRIGHT "Copyright (C) Microsoft Corp. 1992-1999\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 VERSIONCOPYRIGHT "Copyright (C) Microsoft Corp. 1992-1999\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 VER_COMPANYNAME_STR
/*
* Version flags
*/
#ifndef OFFICIAL
#define VER_PRIVATEBUILD VS_FF_PRIVATEBUILD
#else
#define VER_PRIVATEBUILD 0
#endif
#define VERSIONFLAGS (VER_PRIVATEBUILD|VER_PRERELEASE|VER_DEBUG)
#define VERSIONFILEFLAGSMASK 0x0030003FL
#endif