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.
|
|
//+-------------------------------------------------------------------------- // // Copyright (c) 1997-1999 Microsoft Corporation // // File: server.rc // // Contents: // // History: // //--------------------------------------------------------------------------- #include <windows.h> #include <ntverp.h> #include "resource.h"
///////////////////////////////////////////////////////////////////////// // For use in Resource // #define VER_FILETYPE VFT_APP #define VER_FILESUBTYPE VFT2_UNKNOWN
#ifndef __WIN9XBUILD__
#define VER_FILEDESCRIPTION_STR "Microsoft\256 Remote Desktop Help Session Manager"
#else
#define VER_FILEDESCRIPTION_STR "Microsoft\256 Win9X Remote Desktop Help Session Manager"
#endif
#define VER_INTERNALNAME_STR "SessMgr.exe" #define VER_ORIGINALFILENAME_STR "SessMgr.exe"
#include <common.ver>
//Microsoft Developer Studio generated resource script. // #include "resource.h"
#define APSTUDIO_READONLY_SYMBOLS ///////////////////////////////////////////////////////////////////////////// // // Generated from the TEXTINCLUDE 2 resource. // #include "winres.h"
///////////////////////////////////////////////////////////////////////////// #undef APSTUDIO_READONLY_SYMBOLS
///////////////////////////////////////////////////////////////////////////// // English (U.S.) resources
#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENU) #ifdef _WIN32 LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US #pragma code_page(1252) #endif //_WIN32
#include "SessMgrmc.rc"
#ifdef APSTUDIO_INVOKED ///////////////////////////////////////////////////////////////////////////// // // TEXTINCLUDE //
1 TEXTINCLUDE DISCARDABLE BEGIN "resource.h\0" END
2 TEXTINCLUDE DISCARDABLE BEGIN "#include ""winres.h""\r\n" "\0" END
3 TEXTINCLUDE DISCARDABLE BEGIN "1 TYPELIB ""sessmgr.tlb""\r\n" "\0" END
#endif // APSTUDIO_INVOKED
///////////////////////////////////////////////////////////////////////////// // // REGISTRY //
IDR_Sessmgr REGISTRY MOVEABLE PURE "sessmgr.rgs" // IDR_REMOTEDESKTOPHELPSESSION REGISTRY DISCARDABLE "HelpSess.rgs" IDR_REMOTEDESKTOPHELPSESSIONMGR REGISTRY DISCARDABLE "HelpMgr.rgs"
///////////////////////////////////////////////////////////////////////////// // // String Table //
STRINGTABLE DISCARDABLE BEGIN IDS_SERVICENAME "RDSessMgr" IDS_SERVICEDISPLAYNAME "Remote Desktop Help Session Manager" IDS_SERVICEDESC "Manages and controls Remote Assistance. If this service is stopped, Remote Assistance will be unavailable. Before stopping this service, see the Dependencies tab of the Properties dialog box." IDS_HELPACCNAME "HelpAssistant" IDS_HELPACCFULLNAME "Remote Desktop Help Assistant Account" IDS_HELPACCDESC "Account for Providing Remote Assistance" IDS_HELPACCGROUP "Remote Desktop Help Assistant Group" IDS_HELPACCGROUPDESC "Remote Desktop Help Assistant Group" IDS_UNKNOWN "Unknown" IDS_RA_STRING "Solicited Remote Assistance" IDS_URA_STRING "Offer Remote Assistance" END
#endif // English (U.S.) resources /////////////////////////////////////////////////////////////////////////////
#ifndef APSTUDIO_INVOKED ///////////////////////////////////////////////////////////////////////////// // // Generated from the TEXTINCLUDE 3 resource. // 1 TYPELIB "sessmgr.tlb"
///////////////////////////////////////////////////////////////////////////// #endif // not APSTUDIO_INVOKED
|