mirror of https://github.com/tongzx/nt5src
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.
34 lines
1011 B
34 lines
1011 B
//+----------------------------------------------------------------------------
|
|
//
|
|
// Job Scheduler
|
|
//
|
|
// Microsoft Windows
|
|
// Copyright (C) Microsoft Corporation, 1992 - 1996.
|
|
//
|
|
// File: ver.rc
|
|
//
|
|
// Contents: version resources
|
|
//
|
|
// History: 14-Nov-95 EricB created
|
|
//
|
|
//-----------------------------------------------------------------------------
|
|
|
|
#include <windows.h>
|
|
|
|
//+----------------------------------------------------------------------------
|
|
//
|
|
// Version resource
|
|
//
|
|
//-----------------------------------------------------------------------------
|
|
|
|
#include <ntverp.h>
|
|
#include "..\..\inc\version.h"
|
|
|
|
#define VER_FILETYPE VFT_APP
|
|
#define VER_FILESUBTYPE VFT2_UNKNOWN
|
|
#define VER_FILEDESCRIPTION_STR "Windows Job Scheduler Test Harness"
|
|
#define VER_FILEVERSION JOB_MAJOR_VERSION,JOB_MINOR_VERSION,VER_PRODUCTBUILD,1
|
|
#define VER_INTERNALNAME_STR "Scheduler\0"
|
|
#define VER_ORIGINALFILENAME_STR "jobtest.exe"
|
|
|
|
#include <common.ver>
|