summaryrefslogtreecommitdiff
path: root/src/ext/Firewall/wixext/FirewallConstants.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/ext/Firewall/wixext/FirewallConstants.cs')
-rw-r--r--src/ext/Firewall/wixext/FirewallConstants.cs8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/ext/Firewall/wixext/FirewallConstants.cs b/src/ext/Firewall/wixext/FirewallConstants.cs
index 7bb12ba4..5ecfe032 100644
--- a/src/ext/Firewall/wixext/FirewallConstants.cs
+++ b/src/ext/Firewall/wixext/FirewallConstants.cs
@@ -2,12 +2,14 @@
2 2
3namespace WixToolset.Firewall 3namespace WixToolset.Firewall
4{ 4{
5 using System; 5 using System.Xml.Linq;
6 using System.Collections.Generic;
7 using System.Text;
8 6
9 static class FirewallConstants 7 static class FirewallConstants
10 { 8 {
9 internal static readonly XNamespace Namespace = "http://wixtoolset.org/schemas/v4/wxs/firewall";
10 internal static readonly XName FirewallExceptionName = Namespace + "FirewallException";
11 internal static readonly XName RemoteAddressName = Namespace + "RemoteAddress";
12
11 // from icftypes.h 13 // from icftypes.h
12 public const int NET_FW_RULE_DIR_IN = 1; 14 public const int NET_FW_RULE_DIR_IN = 1;
13 public const int NET_FW_RULE_DIR_OUT = 2; 15 public const int NET_FW_RULE_DIR_OUT = 2;