forked from IronLanguages/ironpython3
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSimpleTypeKind.cs
More file actions
63 lines (60 loc) · 1.92 KB
/
SimpleTypeKind.cs
File metadata and controls
63 lines (60 loc) · 1.92 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the Apache 2.0 License.
// See the LICENSE file in the project root for more information.
#if FEATURE_CTYPES
using System;
namespace IronPython.Modules {
/// <summary>
/// Provides support for interop with native code from Python code.
/// </summary>
public static partial class CTypes {
/// <summary>
/// The enum used for tracking the various ctypes primitive types.
/// </summary>
internal enum SimpleTypeKind {
/// <summary> 'c' </summary>
Char,
/// <summary> 'b' </summary>
SignedByte,
/// <summary> 'B' </summary>
UnsignedByte,
/// <summary> 'h' </summary>
SignedShort,
/// <summary> 'H' </summary>
UnsignedShort,
/// <summary> 'i' </summary>
SignedInt,
/// <summary> 'I' </summary>
UnsignedInt,
/// <summary> 'l' </summary>
SignedLong,
/// <summary> 'L' </summary>
UnsignedLong,
/// <summary> 'f' </summary>
Single,
/// <summary> 'd', 'g' </summary>
Double,
/// <summary> 'q' </summary>
SignedLongLong,
/// <summary> 'Q' </summary>
UnsignedLongLong,
/// <summary> 'O' </summary>
Object,
/// <summary> 'P' </summary>
Pointer,
/// <summary> 'z' </summary>
CharPointer,
/// <summary> 'Z' </summary>
WCharPointer,
/// <summary> 'u' </summary>
WChar,
/// <summary> '?' </summary>
Boolean,
/// <summary> 'v' </summary>
VariantBool,
/// <summary> 'X' </summary>
BStr
}
}
}
#endif