├── .gitignore ├── LICENSE ├── README.md ├── nodewiring.sln ├── nodewiring ├── ReadMe.txt ├── Win32DLL.cpp ├── dllmain.cpp ├── nodewiring.cpp ├── nodewiring.vcxproj ├── nodewiring.vcxproj.filters ├── packages.config ├── stdafx.cpp ├── stdafx.h └── targetver.h ├── package.json └── test.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/node-wiring/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/node-wiring/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/node-wiring/HEAD/README.md -------------------------------------------------------------------------------- /nodewiring.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/node-wiring/HEAD/nodewiring.sln -------------------------------------------------------------------------------- /nodewiring/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/node-wiring/HEAD/nodewiring/ReadMe.txt -------------------------------------------------------------------------------- /nodewiring/Win32DLL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/node-wiring/HEAD/nodewiring/Win32DLL.cpp -------------------------------------------------------------------------------- /nodewiring/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/node-wiring/HEAD/nodewiring/dllmain.cpp -------------------------------------------------------------------------------- /nodewiring/nodewiring.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/node-wiring/HEAD/nodewiring/nodewiring.cpp -------------------------------------------------------------------------------- /nodewiring/nodewiring.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/node-wiring/HEAD/nodewiring/nodewiring.vcxproj -------------------------------------------------------------------------------- /nodewiring/nodewiring.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/node-wiring/HEAD/nodewiring/nodewiring.vcxproj.filters -------------------------------------------------------------------------------- /nodewiring/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/node-wiring/HEAD/nodewiring/packages.config -------------------------------------------------------------------------------- /nodewiring/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/node-wiring/HEAD/nodewiring/stdafx.cpp -------------------------------------------------------------------------------- /nodewiring/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/node-wiring/HEAD/nodewiring/stdafx.h -------------------------------------------------------------------------------- /nodewiring/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/node-wiring/HEAD/nodewiring/targetver.h -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/node-wiring/HEAD/package.json -------------------------------------------------------------------------------- /test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/node-wiring/HEAD/test.js --------------------------------------------------------------------------------