35 lines
1,011 B
Plaintext
35 lines
1,011 B
Plaintext
//+----------------------------------------------------------------------------
|
|
//
|
|
// 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>
|