c++ get other windows messages

前端 未结 2 636
名媛妹妹
名媛妹妹 2020-12-22 07:33

im learning to make things to other windows like resize the ie or any type of window. the only problem i don\'t know how i can get or give messages to other windows.
so

2条回答
  •  时光取名叫无心
    2020-12-22 08:04

    Normally your application won't receive Windows messages for other applications (this can be a security problem, for example with keylogger spyware). However, the CBT Hook method can be used to install a hook that receives other window message inputs.

    However, note that a Windows feature called UIPI can cause problems with CBT hooks.

提交回复
热议问题