Keyboard input on OSX

大憨熊 提交于 2019-12-17 19:25:16

问题


I was wondering if it was possible to read the keyboards input, on OSx from somewhere, such as GNU/Linux with the /dev/input files.

The purpose of this is to make a very simple keylogger, (learning purpose), or if there is a function that i could call in C.

Thanks.


回答1:


Since not all readers have good intentions as you, I won't get into details, but rather point you to the right direction.

As you may know, the WindowServer works over two environments: Carbon (old) and Cocoa (new). These are the respective APIs:

  1. Carbon → InstallEventHandler (link is broken due to age? Anyway, the referenced book is Learning Carbon, Chapter 6 - Carbon Events)
  2. Cocoa → addGlobalMonitorForEventsMatchingMask


来源:https://stackoverflow.com/questions/4809251/keyboard-input-on-osx

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!