mirror of https://github.com/lianthony/NT4.0
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.
44 lines
1.2 KiB
44 lines
1.2 KiB
/***********************************************************************
|
|
* Microsoft (R) Debugging Information Compactor
|
|
*
|
|
* Copyright (C) Microsoft Corp 1987-1996. All rights reserved.
|
|
*
|
|
* File: cvpack,rc
|
|
*
|
|
* File Comments:
|
|
*
|
|
*
|
|
***********************************************************************/
|
|
|
|
#ifdef NT_BUILD
|
|
#include <windows.h>
|
|
#include <ntverp.h>
|
|
|
|
#include "version.h"
|
|
#define FILEVERSION_STR1(c) "4.29." #c
|
|
#else /* !NT_BUILD */
|
|
#include "verstamp.h"
|
|
#define FILEVERSION_STR1(c) "4.29." ruppad #c
|
|
#endif /* !NT_BUILD */
|
|
|
|
#define FILEVERSION_STR2(c) FILEVERSION_STR1(c)
|
|
|
|
#undef VER_FILEVERSION
|
|
#undef VER_FILEVERSION_STR
|
|
|
|
#define VER_FILEVERSION 4,29,0,rup
|
|
#define VER_FILETYPE VFT_APP
|
|
#define VER_FILESUBTYPE VFT2_UNKNOWN
|
|
#define VER_FILEVERSION_STR FILEVERSION_STR2(rup)
|
|
#define VER_FILEDESCRIPTION_STR "Microsoft\256 Debugging Information Compactor"
|
|
|
|
#define VER_LEGALCOPYRIGHT_YEARS "1987-1996"
|
|
|
|
#define VER_INTERNALNAME_STR "CVPACK.EXE"
|
|
#define VER_ORIGINALFILENAME_STR "CVPACK.EXE"
|
|
|
|
#ifdef NT_BUILD
|
|
#include <common.ver>
|
|
#else /* !NT_BUILD */
|
|
#include "common.ver"
|
|
#endif /* !NT_BUILD */
|