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.
|
|
//+------------------------------------------------------------------------- // // Microsoft Windows // Copyright (C) Microsoft Corporation, 1992 - 1994. // // File: tinterface.rc // // Contents: Main resource definition file // // History: 01-02-96 DavidMun Created // // Notes: See Notes at the start of help.cxx for instructions on // adding help for a new command. // // When adding or editing strings in the RCDATA blocks, // remember that each string must be explicitly null // terminated, and that the DisplayHelp() function in help.cxx // expects to find an empty string ("\0") at the end of the // RCDATA block. // //--------------------------------------------------------------------------
#include <windows.h> #include <ntverp.h>
#define VER_FILETYPE VFT_APP #define VER_FILESUBTYPE VFT2_UNKNOWN #define VER_FILEDESCRIPTION_STR "Job Test" #define VER_INTERNALNAME_STR "tint\0" #define VER_ORIGINALFILENAME_STR "tint.exe"
#include <common.ver>
#include "resource.h"
|