gitextract_my6o19ab/ ├── .github/ │ ├── CONTRIBUTING.md │ └── ISSUE_TEMPLATE.md ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── appveyor.yml ├── binding.gyp ├── index.d.ts ├── index.js ├── package.json ├── src/ │ ├── MMBitmap.c │ ├── MMBitmap.h │ ├── MMPointArray.c │ ├── MMPointArray.h │ ├── UTHashTable.c │ ├── UTHashTable.h │ ├── alert.c │ ├── alert.h │ ├── base64.c │ ├── base64.h │ ├── bitmap_find.c │ ├── bitmap_find.h │ ├── bmp_io.c │ ├── bmp_io.h │ ├── color_find.c │ ├── color_find.h │ ├── deadbeef_rand.c │ ├── deadbeef_rand.h │ ├── endian.h │ ├── inline_keywords.h │ ├── io.c │ ├── io.h │ ├── keycode.c │ ├── keycode.h │ ├── keypress.c │ ├── keypress.h │ ├── microsleep.h │ ├── mouse.c │ ├── mouse.h │ ├── ms_stdbool.h │ ├── ms_stdint.h │ ├── os.h │ ├── pasteboard.c │ ├── pasteboard.h │ ├── png_io.c │ ├── png_io.h │ ├── rgb.h │ ├── robotjs.cc │ ├── screen.c │ ├── screen.h │ ├── screengrab.c │ ├── screengrab.h │ ├── snprintf.c │ ├── snprintf.h │ ├── str_io.c │ ├── str_io.h │ ├── types.h │ ├── uthash.h │ ├── xdisplay.c │ ├── xdisplay.h │ ├── zlib_util.c │ └── zlib_util.h └── test/ ├── bitmap.js ├── integration/ │ ├── keyboard.js │ ├── mouse.js │ └── screen.js ├── keyboard.js ├── mouse.js └── screen.js