From 4194343c39fa66778a8de9804c88789bd41dae48 Mon Sep 17 00:00:00 2001 From: Rob Mensching Date: Tue, 4 May 2021 22:47:19 -0700 Subject: Move Http.wixext into ext --- src/ext/Http/wixext/HttpConstants.cs | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 src/ext/Http/wixext/HttpConstants.cs (limited to 'src/ext/Http/wixext/HttpConstants.cs') diff --git a/src/ext/Http/wixext/HttpConstants.cs b/src/ext/Http/wixext/HttpConstants.cs new file mode 100644 index 00000000..5fb42d86 --- /dev/null +++ b/src/ext/Http/wixext/HttpConstants.cs @@ -0,0 +1,15 @@ +// Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. + +namespace WixToolset.Http +{ + using System; + + internal static class HttpConstants + { + // from winnt.h + public const int GENERIC_ALL = 0x10000000; + public const int GENERIC_EXECUTE = 0x20000000; + public const int GENERIC_WRITE = 0x40000000; + + } +} -- cgit v1.2.3-55-g6feb