Change SDKHooks to VTable Hooks (bug 6070, r=psychonic).
This commit is contained in:
@@ -96,6 +96,16 @@ public:
|
||||
{
|
||||
return (this->GetVTablePtr() == other->GetVTablePtr());
|
||||
}
|
||||
|
||||
bool operator != (CVTableHook &other)
|
||||
{
|
||||
return (this->GetVTablePtr() != other.GetVTablePtr());
|
||||
}
|
||||
|
||||
bool operator != (CVTableHook *other)
|
||||
{
|
||||
return (this->GetVTablePtr() != other->GetVTablePtr());
|
||||
}
|
||||
private:
|
||||
void *vtableptr;
|
||||
int hookid;
|
||||
|
||||
Reference in New Issue
Block a user