pub unsafe extern "C" fn JSObjectGetPrivate(
object: JSObjectRef,
) -> *mut c_void
Expand description
Gets an object’s private data.
object
: AJSObjectRef
whose private data you want to get.
Returns a void*
that is the object’s private data, if the
object has private data, otherwise NULL
.