30 lines
787 B
Plaintext
30 lines
787 B
Plaintext
#include "winres.h"
|
|
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// 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
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Main string table
|
|
STRINGTABLE DISCARDABLE
|
|
BEGIN
|
|
|
|
127 "MyRuleGroup"
|
|
128 "ENABLEGROUP_RULE"
|
|
129 "This rule belongs to a rule group"
|
|
|
|
// Rule group description, displayed by Firewall Control Panel
|
|
|
|
10127 "This is a test rule group created by the Windows Firewall EnableGroup sample"
|
|
|
|
END
|
|
|
|
#endif // English (U.S.) resources
|