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.
|
|
#if DBG #define DEBUG #endif
#include "resource.h"
#include <ntverp.h> #define VER_FILETYPE VFT_APP #define VER_FILESUBTYPE VFT2_UNKNOWN #define VER_FILEDESCRIPTION_STR "Tablet PC Listener Service" #define VER_INTERNALNAME_STR "tabsrv.exe" #define VER_ORIGINALFILENAME_STR "tabsrv.exe" #define VER_LEGALCOPYRIGHT_STR "Copyright (C) Microsoft Corp. 1999-2000\0" #include <winver.h> #include <common.ver>
// // Icon //
// Icon with lowest ID value placed first to ensure application icon // remains consistent on all systems. IDI_SUPERTIP ICON DISCARDABLE "SuperTIP.ico" IDC_NORMAL CURSOR DISCARDABLE "normal.cur" IDC_PRESSHOLD CURSOR DISCARDABLE "preshold.cur"
// // Menu //
IDR_TRAYMENU MENU DISCARDABLE BEGIN POPUP "Tray" BEGIN MENUITEM "Show &SuperTIP", IDM_OPEN MENUITEM SEPARATOR MENUITEM "&Rotate Screen to Portrait", IDM_TOGGLE_ROTATION #ifdef DEBUG MENUITEM "&Properties...", IDM_PROPERTIES #endif END END
STRINGTABLE PRELOAD DISCARDABLE BEGIN IDS_TABSRV_TITLE "Tablet PC Listener Service" IDS_SUPERTIP_TITLE "SuperTIP" IDS_BALLOON_TEXT "To show the text entry window, tap on the pen icon." IDS_SHOW_SUPERTIP "Show &SuperTip" IDS_HIDE_SUPERTIP "Hide &SuperTip" IDS_SCREEN_PORTRAIT "&Rotate Screen to Portrait" IDS_SCREEN_LANDSCAPE "&Rotate Screen to Landscape" END
|