Commit f6df50cf by Kresten Krab Thorup

(objc_get_meta_class): New function.

From-SVN: r7997
parent 2691a622
......@@ -132,6 +132,12 @@ objc_get_class (const char *name)
abort();
}
MetaClass*
objc_get_meta_class(const char *name)
{
return objc_get_class(name)->class_pointer;
}
/* This function provides a way to enumerate all the classes in the
executable. Pass *ENUM_STATE == NULL to start the enumeration. The
function will return 0 when there are no more classes.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment