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.
24 lines
624 B
24 lines
624 B
//
|
|
// (c) 1995 Microsoft Corporation. All Rights Reserved.
|
|
//
|
|
/* Version Numbering stuff */
|
|
|
|
|
|
#include <windows.h>
|
|
|
|
// Is the following FLAG good to use for this?
|
|
#if WINNT
|
|
#include <ntverp.h>
|
|
#else
|
|
#include <version.h>
|
|
#endif
|
|
|
|
#define VER_FILEDESCRIPTION_STR "Microsoft\256 Windows(TM) Telephony 16bit SP support"
|
|
#define VER_INTERNALNAME_STR "16bit SP support"
|
|
#define VER_ORIGINALFILENAME_STR "tsp3216l.tsp"
|
|
#define VER_LEGALCOPYRIGHT_STR "Copyright \251 Microsoft Corporation 1995. All Rights Reserved."
|
|
|
|
#define VER_FILETYPE VFT_APP
|
|
#define VER_FILESUBTYPE VFT2_UNKNOWN
|
|
|
|
#include <common.ver>
|