~ubuntu-branches/ubuntu/oneiric/monodevelop/oneiric

« back to all changes in this revision

Viewing changes to contrib/Mono.Cecil/Mono.Cecil/Mono.Cecil/VariantType.cs

  • Committer: Bazaar Package Importer
  • Author(s): Jo Shields
  • Date: 2011-06-27 17:03:13 UTC
  • mto: (1.8.1 upstream)
  • mto: This revision was merged to the branch mainline in revision 54.
  • Revision ID: james.westby@ubuntu.com-20110627170313-6cvz3s19x6e9hqe9
ImportĀ upstreamĀ versionĀ 2.5.92+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
// Author:
5
5
//   Jb Evain (jbevain@gmail.com)
6
6
//
7
 
// (C) 2005 Jb Evain
 
7
// Copyright (c) 2008 - 2010 Jb Evain
8
8
//
9
9
// Permission is hereby granted, free of charge, to any person obtaining
10
10
// a copy of this software and associated documentation files (the
29
29
namespace Mono.Cecil {
30
30
 
31
31
        public enum VariantType {
 
32
                None = 0,
32
33
                I2 = 2,
33
34
                I4 = 3,
34
35
                R4 = 4,
35
36
                R8 = 5,
36
37
                CY = 6,
37
 
                DATE = 7,
38
 
                BSTR = 8,
39
 
                DISPATCH = 9,
40
 
                ERROR = 10,
41
 
                BOOL = 11,
42
 
                VARIANT = 12,
43
 
                UNKNOWN = 13,
44
 
                DECIMAL = 14,
 
38
                Date = 7,
 
39
                BStr = 8,
 
40
                Dispatch = 9,
 
41
                Error = 10,
 
42
                Bool = 11,
 
43
                Variant = 12,
 
44
                Unknown = 13,
 
45
                Decimal = 14,
45
46
                I1 = 16,
46
47
                UI1 = 17,
47
48
                UI2 = 18,
48
49
                UI4 = 19,
49
 
                INT = 22,
50
 
                UINT = 23
 
50
                Int = 22,
 
51
                UInt = 23
51
52
        }
52
53
}