aboutsummaryrefslogtreecommitdiff
path: root/src/ext/Http/wixext/HttpConstants.cs
blob: 5fb42d86685b196905cc9a50e5ef33cf8781af81 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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;

    }
}