// 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; } }