mirror of https://github.com/tongzx/nt5src
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.
28 lines
685 B
28 lines
685 B
// File: service.rc
|
|
|
|
#include <winres.h>
|
|
#include <resource.h>
|
|
|
|
#define VER_FILETYPE VFT_DLL
|
|
#define VER_DESCRIPTION_STR "Sample Remote Desktop Sharing Service\0"
|
|
#define VER_INTERNALNAME_STR "service\0"
|
|
#define VER_ORIGNAME_STR "service.exe\0"
|
|
|
|
#include <version.rc>
|
|
|
|
IDI_SM_WORLD ICON DISCARDABLE "service.ico"
|
|
|
|
STRINGTABLE DISCARDABLE
|
|
BEGIN
|
|
IDS_MNMSRVC_TITLE "Sample Remote Desktop Sharing Service"
|
|
IDS_MNMSRVC_DESCRIPTION "Allows authorized people to remotely access your Windows desktop using Salem."
|
|
END
|
|
|
|
IDR_TASKBAR_POPUP MENU DISCARDABLE
|
|
BEGIN
|
|
POPUP ""
|
|
BEGIN
|
|
MENUITEM "E&xit", IDM_TBPOPUP_STOP
|
|
END
|
|
END
|
|
|