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 for the Task Scheduler DLL // // History: 09-Sep-95 EricB created // //-----------------------------------------------------------------------------
#include "..\inc\resource.h"
#include <windows.h> #include "..\inc\job-ids.h"
#include "..\folderui\resource.h" #include "..\folderui\jobfldr.rc"
#include "..\schedui\schedui.rc"
#include "..\wizard\resource.h" #include "..\wizard\wizard.rc"
//+---------------------------------------------------------------------------- // // Icons // //-----------------------------------------------------------------------------
IDI_JOBSFLD ICON DISCARDABLE "..\folderui\jobfld.ICO" IDI_JOB ICON DISCARDABLE "job.ICO"
//+---------------------------------------------------------------------------- // // Bitmaps // //-----------------------------------------------------------------------------
#ifdef WIZARD97 IDB_BANNER256 BITMAP DISCARDABLE "..\wizard\Baner256.bmp" IDB_BANNER16 BITMAP DISCARDABLE "..\wizard\Baner16.bmp" IDB_WATERMARK16 BITMAP DISCARDABLE "..\wizard\Water16.bmp" IDB_WATERMARK256 BITMAP DISCARDABLE "..\wizard\Water256.bmp" #else IDB_SPLASH BITMAP DISCARDABLE "..\\wizard\\splash.bmp" #endif // WIZARD97
//+---------------------------------------------------------------------------- // // String table comes from 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 interface DLL" #define VER_INTERNALNAME_STR "TaskScheduler" #define VER_ORIGINALFILENAME_STR "mstask.dll"
#include <common.ver>
|