You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
290 B
C

/**
* A slot, stored in the dispatch table. A pointer to a slot is returned by
* every lookup function. The slot may be safely cached.
*/
struct objc_slot
{
/**
* The class that owns this slot.
*/
Class owner;
Class cachedFor;
const char *types;
int version;
IMP method;
};