首页
社区
课程
招聘
[旧帖] call delphi事件 0.00雪花
发表于: 2011-12-5 12:36 3489

[旧帖] call delphi事件 0.00雪花

2011-12-5 12:36
3489
带托盘的程序,有启动和暂停2个菜单

我写个dll插入到此程序,如何call这2个事件

我搞的总是不稳定,会报错,有没通杀方案?

[培训]《安卓高级研修班(网课)》月薪三万计划,掌握调试、分析还原ollvm、vmp的方法,定制art虚拟机自动化脱壳的方法

收藏
免费 0
支持
分享
最新回复 (4)
雪    币: 4580
活跃值: (992)
能力值: ( LV4,RANK:50 )
在线值:
发帖
回帖
粉丝
2
SendMessage
The SendMessage function sends the specified message to a window or windows. It calls the window procedure for the specified window and does not return until the window procedure has processed the message.

To send a message and return immediately, use the SendMessageCallback or SendNotifyMessage function. To post a message to a thread's message queue and return immediately, use the PostMessage or PostThreadMessage function.

LRESULT SendMessage(
  HWND hWnd,      // handle to destination window
  UINT Msg,       // message
  WPARAM wParam,  // first message parameter
  LPARAM lParam   // second message parameter
);
2011-12-5 13:06
0
雪    币: 2210
活跃值: (12)
能力值: ( LV4,RANK:50 )
在线值:
发帖
回帖
粉丝
3
是CALL事件,还是CALL你DLL中的函数啊?
事件的话,要拦截
函数的话,直接弄个快捷键调用就可以了,游戏挂都是这个思路
2011-12-20 13:24
0
雪    币: 57
活跃值: (10)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
4
嗯  只能好好 学习 没法帮你的的忙
2011-12-24 07:59
0
雪    币: 38
活跃值: (10)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
5
都看不懂啊! 太专业了! 哎太打击信心了。
2011-12-24 19:01
0
游客
登录 | 注册 方可回帖
返回
//