44 lines
1.2 KiB
Plaintext
44 lines
1.2 KiB
Plaintext
|
//+----------------------------------------------------------------------------
|
||
|
//
|
||
|
// Job Schedule service
|
||
|
//
|
||
|
// Microsoft Windows
|
||
|
// Copyright (C) Microsoft Corporation, 1992 - 1996.
|
||
|
//
|
||
|
// File: service.rc
|
||
|
//
|
||
|
// Contents: resources
|
||
|
//
|
||
|
// History: 09-Sep-95 EricB created
|
||
|
// 20-Nov-01 ShBrown Switched to use standard NT build versioning
|
||
|
//
|
||
|
//-----------------------------------------------------------------------------
|
||
|
|
||
|
#include "..\..\inc\resource.h"
|
||
|
|
||
|
#include <windows.h>
|
||
|
|
||
|
//+----------------------------------------------------------------------------
|
||
|
//
|
||
|
// String table comes from client\strings.rc
|
||
|
//
|
||
|
//-----------------------------------------------------------------------------
|
||
|
|
||
|
#include "..\..\inc\strings.rc"
|
||
|
|
||
|
//+----------------------------------------------------------------------------
|
||
|
//
|
||
|
// Version resource
|
||
|
//
|
||
|
//-----------------------------------------------------------------------------
|
||
|
|
||
|
#include <ntverp.h>
|
||
|
|
||
|
#define VER_FILETYPE VFT_DLL
|
||
|
#define VER_FILESUBTYPE VFT2_UNKNOWN
|
||
|
#define VER_FILEDESCRIPTION_STR "Task Scheduler Engine"
|
||
|
#define VER_INTERNALNAME_STR "TaskScheduler"
|
||
|
#define VER_ORIGINALFILENAME_STR "schedsvc.dll"
|
||
|
|
||
|
#include <common.ver>
|