dolphin
驱动中牛
驱动中牛
  • 注册日期2001-04-30
  • 最后登录2013-03-08
  • 粉丝0
  • 关注0
  • 积分14分
  • 威望23点
  • 贡献值0点
  • 好评度1点
  • 原创分0分
  • 专家分0分
阅读:2002回复:1

在毕业设计中无意发现指向函数的指针的内容(*pfOpenVxDHandle)与指针的值pfOpenVxDHandle相同。Why?

楼主#
更多 发布于:2001-05-09 17:34
Question:
在毕业设计中无意发现指向函数的指针的内容(*pfOpenVxDHandle)与指针的值pfOpenVxDHandle相同。Why?
////
static HANDLE(WINAPI * pfOpenVxDHandle)(HANDLE)=0;
.
.
.
pfOpenVxDHandle=(HANDLE(WINAPI*)(HANDLE))GetProcAddress(hKernel32Dll,"OpenVxDHandle");

cout<<"pfOpenVxDHandle is "<<pfOpenVxDHandle<<endl;

if(!pfOpenVxDHandle)
{
cout<<"Can't get addr of OpenVxDHandle"<<endl;
exit(1);
}
if(pfOpenVxDHandle && hKernel32Dll)
hEventRing0=(*pfOpenVxDHandle)(hEventRing3); //将Ring3级事件句柄转换为Ring0级事件句柄

printf("pfOpenVxDHandle is %u\n",pfOpenVxDHandle);
printf("(*pfOpenVxDHandle) is %u \n",(*pfOpenVxDHandle));
.
.
.
////
screen show :
------------------------------
hKernel32Dll is  0xBFF70000
pfOpenVxDHandle is 3220807919
(*pfOpenVxDHandle) is 3220807919
hEventRing0 is 0xC164C290
The child Thread runing
.
.
.
--------------------------

最新喜欢:

yangngyangng
[b]弃我去者昨日之日不可留,乱我心者今日之日多烦忧。[/b]
rayyang2000
管理员
管理员
  • 注册日期2001-03-23
  • 最后登录2012-09-13
  • 粉丝3
  • 关注0
  • 积分1036分
  • 威望925点
  • 贡献值3点
  • 好评度823点
  • 原创分0分
  • 专家分0分
沙发#
发布于:2001-05-09 21:24
pfOpenVxDHandle有效么?
天天coding-debugging中----超稀饭memory dump file ======================================================== [b]Windows Device Driver Development and Consulting Service[/b] [color=blue][url]http://www.ybwork.com[/url][/color] ========================================================
游客

返回顶部