summaryrefslogtreecommitdiff
path: root/src/inc/cahlpr.h
blob: 3287fb2530654b053d07b9bbf12b3c6c6c829079 (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
33
34
35
36
37
38
39
40
41
42
//
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
//
//*****************************************************************************
// File: CAHLPR.H
//
// 
//
//*****************************************************************************
#ifndef __CAHLPR_H__
#define __CAHLPR_H__

#include "caparser.h"

//*****************************************************************************
// This class assists in the parsing of CustomAttribute blobs.
//*****************************************************************************
struct CaValue
{
    union
    {
        signed __int8       i1;
        unsigned __int8     u1;
        signed __int16      i2;
        unsigned __int16    u2;
        signed __int32      i4;
        unsigned __int32    u4;
        signed __int64      i8;
        unsigned __int64    u8;
        float               r4;
        double              r8;
        struct
        {
            LPCUTF8         pStr;
            ULONG           cbStr;
        } str;
    };
    unsigned __int8         tag;
};

#endif // __CAHLPR_H__