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.
|
|
//+---------------------------------------------------------------------------- // // 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>
|