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 test task application // // Microsoft Windows // Copyright (C) Microsoft Corporation, 1992 - 1996. // // File: jobtask.rc // // Contents: resources // // History: 14-Jan-96 EricB created // //-----------------------------------------------------------------------------
#include "res-ids.h"
#include <windows.h>
//+---------------------------------------------------------------------------- // // Icons // //-----------------------------------------------------------------------------
IDI_SCHEDULER ICON DISCARDABLE "..\..\service\sched.ICO"
//+---------------------------------------------------------------------------- // // Menus // //-----------------------------------------------------------------------------
MAIN_MENU MENU PRELOAD DISCARDABLE BEGIN MENUITEM "&Exit!", IDM_EXIT END
//+---------------------------------------------------------------------------- // // 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 Task App" #define VER_FILEVERSION JOB_MAJOR_VERSION,JOB_MINOR_VERSION,VER_PRODUCTBUILD,1 #define VER_INTERNALNAME_STR "JobTask\0" #define VER_ORIGINALFILENAME_STR "jobtask.exe"
#include <common.ver>
|