Source code of Windows XP (NT5)
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.
|
|
/*****************************************************************************
* * VERINFO.H * * Copyright (C) Microsoft Corporation 1996-1997 * All Rights reserved. * ****************************************************************************** * * Module Intent: Version specific constant definitions * *****************************************************************************/
// InfoTech version number: major, minor, update, application.
#define rmj 4
#define rmm 72
#define rup 8084
#define rap 0
#define szVerName ""
#define szVerUser ""
// NT build environment defines DBG instead of _DEBUG
#ifdef DBG
#define _DEBUG
#endif
#ifdef _DEBUG
#define VERSIONSTR "Debug Version 4.72\0"
#define VERSIONFLAGS VS_FF_DEBUG
#else
#define VERSIONSTR "4.72\0"
#define VERSIONFLAGS 0
#endif
|