├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── index.js ├── package.json ├── publish_node.sh └── src ├── JsPlayer.cpp ├── JsPlayer.h └── module.cpp /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | build/ 3 | dist/ 4 | CMakeLists.txt.user 5 | -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RSATom/wcjs-gs/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RSATom/wcjs-gs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RSATom/wcjs-gs/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RSATom/wcjs-gs/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RSATom/wcjs-gs/HEAD/package.json -------------------------------------------------------------------------------- /publish_node.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RSATom/wcjs-gs/HEAD/publish_node.sh -------------------------------------------------------------------------------- /src/JsPlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RSATom/wcjs-gs/HEAD/src/JsPlayer.cpp -------------------------------------------------------------------------------- /src/JsPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RSATom/wcjs-gs/HEAD/src/JsPlayer.h -------------------------------------------------------------------------------- /src/module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RSATom/wcjs-gs/HEAD/src/module.cpp --------------------------------------------------------------------------------