├── .gitignore ├── .npmignore ├── README.md ├── binding.gyp ├── index.js ├── package.json ├── source ├── addon.cc ├── mouse.cc └── mouse.h └── test ├── parallel-destroy.js ├── parallel-unref.js ├── sequence-destroy.js └── sequence-unref.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | build 3 | .DS_Store 4 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | build 2 | test 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kapetan/osx-mouse/HEAD/README.md -------------------------------------------------------------------------------- /binding.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kapetan/osx-mouse/HEAD/binding.gyp -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kapetan/osx-mouse/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kapetan/osx-mouse/HEAD/package.json -------------------------------------------------------------------------------- /source/addon.cc: -------------------------------------------------------------------------------- 1 | #include "mouse.h" 2 | 3 | NODE_MODULE_INIT() { 4 | Mouse::Initialize(exports, module, context); 5 | } 6 | -------------------------------------------------------------------------------- /source/mouse.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kapetan/osx-mouse/HEAD/source/mouse.cc -------------------------------------------------------------------------------- /source/mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kapetan/osx-mouse/HEAD/source/mouse.h -------------------------------------------------------------------------------- /test/parallel-destroy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kapetan/osx-mouse/HEAD/test/parallel-destroy.js -------------------------------------------------------------------------------- /test/parallel-unref.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kapetan/osx-mouse/HEAD/test/parallel-unref.js -------------------------------------------------------------------------------- /test/sequence-destroy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kapetan/osx-mouse/HEAD/test/sequence-destroy.js -------------------------------------------------------------------------------- /test/sequence-unref.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kapetan/osx-mouse/HEAD/test/sequence-unref.js --------------------------------------------------------------------------------