From 25769758ffdc744701fc04510d6986021027f92a Mon Sep 17 00:00:00 2001 From: Tim Van Holder Date: Wed, 8 Jun 2022 22:46:11 +0200 Subject: [PATCH] Add `Unmanaged` calling convention Fixes jbevain/cecil#842. --- Mono.Cecil/MethodCallingConvention.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Mono.Cecil/MethodCallingConvention.cs b/Mono.Cecil/MethodCallingConvention.cs index f9c0e0c95..80f3e9773 100644 --- a/Mono.Cecil/MethodCallingConvention.cs +++ b/Mono.Cecil/MethodCallingConvention.cs @@ -17,6 +17,7 @@ public enum MethodCallingConvention : byte { ThisCall = 0x3, FastCall = 0x4, VarArg = 0x5, + Unmanaged = 0x9, Generic = 0x10, } }