CoreFoundation: add cfdictionary

Signed-off-by: Simon Rozman <simon@rozman.si>
This commit is contained in:
Simon Rozman 2025-06-18 11:16:40 +02:00
parent 5f3b4cc1bf
commit 96ae46eaa9

View File

@ -43,9 +43,10 @@ namespace macstd {
} }
}; };
using cfstring = cf_object<CFStringRef, static_cast<CFStringRef>(NULL)>;
using cfarray = cf_object<CFArrayRef, static_cast<CFArrayRef>(NULL)>; using cfarray = cf_object<CFArrayRef, static_cast<CFArrayRef>(NULL)>;
using cfdictionary = cf_object<CFDictionaryRef, static_cast<CFDictionaryRef>(NULL)>;
using cferror = cf_object<CFErrorRef, static_cast<CFErrorRef>(NULL)>; using cferror = cf_object<CFErrorRef, static_cast<CFErrorRef>(NULL)>;
using cfstring = cf_object<CFStringRef, static_cast<CFStringRef>(NULL)>;
/// ///
/// Core Foundation runtime error /// Core Foundation runtime error