Welcome to mirror list, hosted at ThFree Co, Russian Federation.

file_type.h « bundle « apphost « cli « corehost « installer « src - github.com/dotnet/runtime.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: acbfca06859012a81911cfcc8ad0e270116d7ade (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.

#ifndef __FILE_TYPE_H__
#define __FILE_TYPE_H__

#include <cstdint>

namespace bundle
{
    // FileType: Identifies the type of file embedded into the bundle.
    // 
    // The bundler differentiates a few kinds of files via the manifest,
    // with respect to the way in which they'll be used by the runtime.
    //
    // Currently all files are extracted out to the disk, but future 
    // implementations will process certain file_types directly from the bundle.

    enum file_type_t : uint8_t
    {
        unknown,
        assembly,
        native_binary,
        deps_json,
        runtime_config_json,
        symbols,
        __last
    };
}

#endif // __FILE_TYPE_H__