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: // // Contents: // // History: // //--------------------------------------------------------------------------- #include <windows.h> #include <ntverp.h> #include "prottest.h"
#define VER_FILETYPE VFT_APP #define VER_FILESUBTYPE VFT2_UNKNOWN #define VER_FILEDESCRIPTION_STR "Licensing Protocol Test Program" #define VER_INTERNALNAME_STR "prottest" #define VER_ORIGINALFILENAME_STR "prottest.exe"
STRINGTABLE BEGIN
STR_TEMP_LICENSE_EXPIRED_MSG "Your terminal services temporary client license has expired.\nPlease contact your system administrator to get a permanent license." STR_TEMP_LICENSE_EXPIRATION_MSG "Your terminal services temporary client license will expire in %1 days.\nPlease contact your system administrator to get a permanent license." STR_TEMP_LICENSE_MSG_TITLE "Temporary License Warning!"
END
#include "common.ver"
|