Native Source for java.awt.Robot

c++, java, java-native-interface

Solution

Okay so I did some digging around and found what I was looking for. These may not be the latest versions but the metadata is there.

- Linux: awt_robot.c

- Mac: CRobot.m

- Win: awt_robot.cpp

Problem

I am trying to find the native implementations of Java Robot functions. I found the Windows implementation here. Where can I find the mac and linux versions. I'm mainly trying to find out what it's doing to see how I can implement this functionality myself in C++.

Original source