├── .gitignore ├── LICENSE ├── README.md ├── binding.gyp ├── index.js ├── package.json ├── src ├── linux │ ├── prtscn_linux.c │ ├── prtscn_linux.h │ └── screenshot_linux.cpp ├── osx │ ├── prtscn_osx.h │ ├── prtscn_osx.mm │ └── screenshot_osx.cpp └── windows │ ├── prtscn_windows.cpp │ ├── prtscn_windows.h │ └── screenshot_windows.cpp └── test.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuzat/screenshot-node/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuzat/screenshot-node/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuzat/screenshot-node/HEAD/README.md -------------------------------------------------------------------------------- /binding.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuzat/screenshot-node/HEAD/binding.gyp -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuzat/screenshot-node/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuzat/screenshot-node/HEAD/package.json -------------------------------------------------------------------------------- /src/linux/prtscn_linux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuzat/screenshot-node/HEAD/src/linux/prtscn_linux.c -------------------------------------------------------------------------------- /src/linux/prtscn_linux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuzat/screenshot-node/HEAD/src/linux/prtscn_linux.h -------------------------------------------------------------------------------- /src/linux/screenshot_linux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuzat/screenshot-node/HEAD/src/linux/screenshot_linux.cpp -------------------------------------------------------------------------------- /src/osx/prtscn_osx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuzat/screenshot-node/HEAD/src/osx/prtscn_osx.h -------------------------------------------------------------------------------- /src/osx/prtscn_osx.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuzat/screenshot-node/HEAD/src/osx/prtscn_osx.mm -------------------------------------------------------------------------------- /src/osx/screenshot_osx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuzat/screenshot-node/HEAD/src/osx/screenshot_osx.cpp -------------------------------------------------------------------------------- /src/windows/prtscn_windows.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuzat/screenshot-node/HEAD/src/windows/prtscn_windows.cpp -------------------------------------------------------------------------------- /src/windows/prtscn_windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuzat/screenshot-node/HEAD/src/windows/prtscn_windows.h -------------------------------------------------------------------------------- /src/windows/screenshot_windows.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuzat/screenshot-node/HEAD/src/windows/screenshot_windows.cpp -------------------------------------------------------------------------------- /test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuzat/screenshot-node/HEAD/test.js --------------------------------------------------------------------------------