]> gitweb @ CieloNegro.org - bindings-CoreFoundation.git/blobdiff - cbits/helper_CFCharacterSet.c
CFCharacterSet.h
[bindings-CoreFoundation.git] / cbits / helper_CFCharacterSet.c
diff --git a/cbits/helper_CFCharacterSet.c b/cbits/helper_CFCharacterSet.c
new file mode 100644 (file)
index 0000000..cfd118a
--- /dev/null
@@ -0,0 +1,20 @@
+#include <bindings.cmacros.h>
+#include <CoreFoundation/CFCharacterSet.h>
+
+CFCharacterSetRef
+inline_CFCharacterSetCreateWithCharactersInRange(CFAllocatorRef alloc,
+                                                 CFRange* theRange) {
+    return CFCharacterSetCreateWithCharactersInRange(alloc, *theRange);
+}
+
+void
+inline_CFCharacterSetAddCharactersInRange(CFMutableCharacterSetRef theSet,
+                                          CFRange* theRange) {
+    return CFCharacterSetAddCharactersInRange(theSet, *theRange);
+}
+
+void
+inline_CFCharacterSetRemoveCharactersInRange(CFMutableCharacterSetRef theSet,
+                                             CFRange* theRange) {
+    return CFCharacterSetRemoveCharactersInRange(theSet, *theRange);
+}