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

github.com/mono/cecil.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Van Holder <tim.vanholder@gmail.com>2022-06-15 06:27:35 +0300
committerGitHub <noreply@github.com>2022-06-15 06:27:35 +0300
commit49b1c52df5e8d2bf03768dc35ba6575e88277bc7 (patch)
treedc229240bd85e3af52176b99b3a4aa3610094aa8
parent2c6892705c20294859da5bc36f9b82f60aa333c7 (diff)
Add `Unmanaged` calling convention (#852)
Fixes jbevain/cecil#842.
-rw-r--r--Mono.Cecil/MethodCallingConvention.cs1
1 files changed, 1 insertions, 0 deletions
diff --git a/Mono.Cecil/MethodCallingConvention.cs b/Mono.Cecil/MethodCallingConvention.cs
index f9c0e0c..80f3e97 100644
--- a/Mono.Cecil/MethodCallingConvention.cs
+++ b/Mono.Cecil/MethodCallingConvention.cs
@@ -17,6 +17,7 @@ namespace Mono.Cecil {
ThisCall = 0x3,
FastCall = 0x4,
VarArg = 0x5,
+ Unmanaged = 0x9,
Generic = 0x10,
}
}