From 6d28d2a19427c84a065bae8871edfa340d8a979f Mon Sep 17 00:00:00 2001 From: Guillaume Gomez Date: Sun, 23 Jul 2023 15:05:08 +0200 Subject: [PATCH] Add missing CFRangeMake function --- core-foundation-sys/src/base.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/core-foundation-sys/src/base.rs b/core-foundation-sys/src/base.rs index 05dfb53c..631c7bf4 100644 --- a/core-foundation-sys/src/base.rs +++ b/core-foundation-sys/src/base.rs @@ -169,5 +169,6 @@ extern { pub fn CFShow(obj: CFTypeRef); /* Base Utilities Reference */ + pub fn CFRangeMake(loc: CFIndex, len: CFIndex) -> CFRange; // N.B. Some things missing here. }