I have a .dll injected into the address space of another process. The target app uses the QT library. I can insert a detour so that each time the QT function
?rowsInserted@QListView@@MAEXABVQModelIndex@@HH@Z is called my function is called instead and then the call passed on. However, how do I get access to the parameters passed into ?rowsInserted@QListView@@MAEXABVQModelIndex@@HH@Z? Is this name garbled, in which case what is it normally?
Thanks.
It looks like the function is probably
QListView::rowsInserted(const QModelIndex &, int, int). The parameters are listed in the function reference.