├── .gitignore ├── LICENSE ├── README.md ├── binding.gyp ├── lib ├── index.js └── processname.cc ├── package.json └── test └── benchmark.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixrieseberg/windows-active-process/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixrieseberg/windows-active-process/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixrieseberg/windows-active-process/HEAD/README.md -------------------------------------------------------------------------------- /binding.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixrieseberg/windows-active-process/HEAD/binding.gyp -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixrieseberg/windows-active-process/HEAD/lib/index.js -------------------------------------------------------------------------------- /lib/processname.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixrieseberg/windows-active-process/HEAD/lib/processname.cc -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixrieseberg/windows-active-process/HEAD/package.json -------------------------------------------------------------------------------- /test/benchmark.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixrieseberg/windows-active-process/HEAD/test/benchmark.js --------------------------------------------------------------------------------