0

我必须设置一个指向库函数 ( IHTMLDocument2::write) 的指针,它是类的一个方法IHTMLDocument2。(对于好奇的:我必须用 Detours 挂钩该功能)

我不能直接这样做,因为类型不匹配,我也不能使用强制转换(reinterpret_cast<>这是“正确的”afaik 不起作用)

这就是我正在做的事情:

HRESULT (WINAPI *Real_IHTMLDocument2_write)(SAFEARRAY *) = &IHTMLDocument2::write

谢谢你的帮助!

4

2 回答 2

6

指向函数的指针具有以下类型:

HRESULT (WINAPI IHTMLDocument2::*)(SAFEARRAY*)

正如你所看到的,它是用它的类名来限定的。它需要一个类的实例来调用(因为它不是静态函数):

typedef HRESULT (WINAPI IHTMLDocument2::*DocumentWriter)(SAFEARRAY*);

DocumentWriter writeFunction = &IHTMLDocument2::write;

IHTMLDocument2 someDocument = /* Get an instance */;
IHTMLDocument2 *someDocumentPointer = /* Get an instance */;

(someDocument.*writefunction)(/* blah */);
(someDocumentPointer->*writefunction)(/* blah */);
于 2009-10-25T21:04:36.953 回答
4

您需要使用成员函数指针。普通函数指针不起作用,因为当您调用(非静态)类成员函数时,有一个隐式this指针指向该类的实例。

于 2009-10-25T21:04:32.917 回答