diff options
author | chris_bednarski <Chris.Bednarski@minfos.com.au> | 2023-08-26 08:31:28 +1000 |
---|---|---|
committer | Bob Arnson <github@bobs.org> | 2023-08-26 17:58:25 -0400 |
commit | b3deb46def7d303a79f4a5eba6a921e45d5f16ef (patch) | |
tree | 3327ffd8525f793a511832172129c904ba062904 /src/ext/Firewall/wixext/FirewallConstants.cs | |
parent | 537e79d3c8b99e1576db48b19c8071c0922342f2 (diff) | |
download | wix-b3deb46def7d303a79f4a5eba6a921e45d5f16ef.tar.gz wix-b3deb46def7d303a79f4a5eba6a921e45d5f16ef.tar.bz2 wix-b3deb46def7d303a79f4a5eba6a921e45d5f16ef.zip |
add firewall extension decompiler
Diffstat (limited to 'src/ext/Firewall/wixext/FirewallConstants.cs')
-rw-r--r-- | src/ext/Firewall/wixext/FirewallConstants.cs | 8 |
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 | ||
3 | namespace WixToolset.Firewall | 3 | namespace 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; |