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 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>
|