Add class_getInstanceMethod, method_setImplementation bindings

This commit is contained in:
Jan Ivanecky
2022-10-08 16:29:49 +02:00
parent 62440df051
commit 141133e326

View File

@@ -13,6 +13,9 @@ foreign Foundation {
objc_allocateClassPair :: proc "c" (superclass: Class, name: cstring, extraBytes: uint) ---
class_addMethod :: proc "c" (cls: Class, name: SEL, imp: IMP, types: cstring) -> BOOL ---
class_getInstanceMethod :: proc "c" (cls: Class, name: SEL) -> Method ---
method_setImplementation :: proc "c" (method: Method, imp: IMP) ---
}