├── .gitignore ├── Makefile ├── README.md ├── screenshot.png └── src ├── cli ├── Makefile ├── main.c └── script.py └── core ├── Makefile ├── NSString_helper.h ├── NSString_helper.m ├── mach_exc.h ├── mach_excServer.c ├── ncmnp.h ├── ncmnp.m ├── ncmnp_commons.h ├── ncmnp_traps.h ├── ncmnp_types.h └── ncmnp_utils.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumimakito/NeteaseCloudMusic-Now-Playing/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumimakito/NeteaseCloudMusic-Now-Playing/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumimakito/NeteaseCloudMusic-Now-Playing/HEAD/README.md -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumimakito/NeteaseCloudMusic-Now-Playing/HEAD/screenshot.png -------------------------------------------------------------------------------- /src/cli/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumimakito/NeteaseCloudMusic-Now-Playing/HEAD/src/cli/Makefile -------------------------------------------------------------------------------- /src/cli/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumimakito/NeteaseCloudMusic-Now-Playing/HEAD/src/cli/main.c -------------------------------------------------------------------------------- /src/cli/script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumimakito/NeteaseCloudMusic-Now-Playing/HEAD/src/cli/script.py -------------------------------------------------------------------------------- /src/core/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumimakito/NeteaseCloudMusic-Now-Playing/HEAD/src/core/Makefile -------------------------------------------------------------------------------- /src/core/NSString_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumimakito/NeteaseCloudMusic-Now-Playing/HEAD/src/core/NSString_helper.h -------------------------------------------------------------------------------- /src/core/NSString_helper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumimakito/NeteaseCloudMusic-Now-Playing/HEAD/src/core/NSString_helper.m -------------------------------------------------------------------------------- /src/core/mach_exc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumimakito/NeteaseCloudMusic-Now-Playing/HEAD/src/core/mach_exc.h -------------------------------------------------------------------------------- /src/core/mach_excServer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumimakito/NeteaseCloudMusic-Now-Playing/HEAD/src/core/mach_excServer.c -------------------------------------------------------------------------------- /src/core/ncmnp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumimakito/NeteaseCloudMusic-Now-Playing/HEAD/src/core/ncmnp.h -------------------------------------------------------------------------------- /src/core/ncmnp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumimakito/NeteaseCloudMusic-Now-Playing/HEAD/src/core/ncmnp.m -------------------------------------------------------------------------------- /src/core/ncmnp_commons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumimakito/NeteaseCloudMusic-Now-Playing/HEAD/src/core/ncmnp_commons.h -------------------------------------------------------------------------------- /src/core/ncmnp_traps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumimakito/NeteaseCloudMusic-Now-Playing/HEAD/src/core/ncmnp_traps.h -------------------------------------------------------------------------------- /src/core/ncmnp_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumimakito/NeteaseCloudMusic-Now-Playing/HEAD/src/core/ncmnp_types.h -------------------------------------------------------------------------------- /src/core/ncmnp_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumimakito/NeteaseCloudMusic-Now-Playing/HEAD/src/core/ncmnp_utils.h --------------------------------------------------------------------------------