From 28cb2b8e9d464d241aaf9f837cf3190c971cdde7 Mon Sep 17 00:00:00 2001 From: Brian Fiete Date: Wed, 23 Mar 2022 09:35:34 -0700 Subject: [PATCH] Added c_bool --- BeefLibs/corlib/src/Interop.bf | 1 + 1 file changed, 1 insertion(+) diff --git a/BeefLibs/corlib/src/Interop.bf b/BeefLibs/corlib/src/Interop.bf index fcb69f57..1378792f 100644 --- a/BeefLibs/corlib/src/Interop.bf +++ b/BeefLibs/corlib/src/Interop.bf @@ -2,6 +2,7 @@ namespace System { namespace Interop { + typealias c_bool = bool; typealias c_short = int16; typealias c_ushort = uint16; typealias c_int = int32;