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

        // from wixhttpca.cpp
        public const int heReplace = 0;
        public const int heIgnore = 1;
        public const int heFail = 2;
    }
}