Good morning,
Is it possible, using dyld interposition feature, to interpose this kind of C function ?
typedef struct aStructure {
IOReturn (*aCfunction)(void *self, UInt32 integer); // self is a
// pointer to aStructure
} aStructure;
How the function is called:
aStructure **myStruct = ......;
(*myStruct)->aCfunction(myStruct, 1);