├── .gitignore ├── LICENSE ├── README.md ├── appveyor.yml ├── binding.gyp ├── common.gypi ├── index.js ├── install.cmd ├── install.js ├── lib ├── bindings.js ├── rt-utils.js └── uwpAddition.js ├── package.json ├── test.js └── uwp ├── InitializeSecurity.h ├── generate-uwp.cmd ├── windows.devices.bluetooth.advertisement ├── .npmignore ├── CollectionsConverter.h ├── CollectionsConverterUtils.cpp ├── CollectionsConverterUtils.h ├── CollectionsWrap.h ├── LICENSE ├── NodeRtUtils.cpp ├── NodeRtUtils.h ├── OpaqueWrapper.cpp ├── OpaqueWrapper.h ├── README.md ├── WrapperBase.h ├── _nodert_generated.cpp ├── binding.gyp ├── lib │ ├── NodeRT_Windows_Devices_Bluetooth_Advertisement.d.js │ ├── NodeRT_Windows_Devices_Bluetooth_Advertisement.d.ts │ └── main.js ├── node-async.h └── package.json ├── windows.devices.bluetooth.genericattributeprofile ├── .npmignore ├── CollectionsConverter.h ├── CollectionsConverterUtils.cpp ├── CollectionsConverterUtils.h ├── CollectionsWrap.h ├── LICENSE ├── NodeRtUtils.cpp ├── NodeRtUtils.h ├── OpaqueWrapper.cpp ├── OpaqueWrapper.h ├── README.md ├── WrapperBase.h ├── _nodert_generated.cpp ├── binding.gyp ├── lib │ ├── NodeRT_Windows_Devices_Bluetooth_GenericAttributeProfile.d.js │ ├── NodeRT_Windows_Devices_Bluetooth_GenericAttributeProfile.d.ts │ └── main.js ├── node-async.h └── package.json ├── windows.devices.bluetooth ├── .npmignore ├── CollectionsConverter.h ├── CollectionsConverterUtils.cpp ├── CollectionsConverterUtils.h ├── CollectionsWrap.h ├── LICENSE ├── NodeRtUtils.cpp ├── NodeRtUtils.h ├── OpaqueWrapper.cpp ├── OpaqueWrapper.h ├── README.md ├── WrapperBase.h ├── _nodert_generated.cpp ├── binding.gyp ├── lib │ ├── NodeRT_Windows_Devices_Bluetooth.d.js │ ├── NodeRT_Windows_Devices_Bluetooth.d.ts │ └── main.js ├── node-async.h └── package.json ├── windows.devices.enumeration ├── .npmignore ├── CollectionsConverter.h ├── CollectionsConverterUtils.cpp ├── CollectionsConverterUtils.h ├── CollectionsWrap.h ├── LICENSE ├── NodeRtUtils.cpp ├── NodeRtUtils.h ├── OpaqueWrapper.cpp ├── OpaqueWrapper.h ├── README.md ├── WrapperBase.h ├── _nodert_generated.cpp ├── binding.gyp ├── lib │ ├── NodeRT_Windows_Devices_Enumeration.d.js │ ├── NodeRT_Windows_Devices_Enumeration.d.ts │ └── main.js ├── node-async.h └── package.json ├── windows.devices.radios ├── .npmignore ├── CollectionsConverter.h ├── CollectionsConverterUtils.cpp ├── CollectionsConverterUtils.h ├── CollectionsWrap.h ├── LICENSE ├── NodeRtUtils.cpp ├── NodeRtUtils.h ├── OpaqueWrapper.cpp ├── OpaqueWrapper.h ├── README.md ├── WrapperBase.h ├── _nodert_generated.cpp ├── binding.gyp ├── lib │ ├── NodeRT_Windows_Devices_Radios.d.js │ ├── NodeRT_Windows_Devices_Radios.d.ts │ └── main.js ├── node-async.h └── package.json ├── windows.foundation ├── .npmignore ├── CollectionsConverter.h ├── CollectionsConverterUtils.cpp ├── CollectionsConverterUtils.h ├── CollectionsWrap.h ├── LICENSE ├── NodeRtUtils.cpp ├── NodeRtUtils.h ├── OpaqueWrapper.cpp ├── OpaqueWrapper.h ├── README.md ├── WrapperBase.h ├── _nodert_generated.cpp ├── binding.gyp ├── lib │ ├── NodeRT_Windows_Foundation.d.js │ ├── NodeRT_Windows_Foundation.d.ts │ └── main.js ├── node-async.h └── package.json └── windows.storage.streams ├── .npmignore ├── CollectionsConverter.h ├── CollectionsConverterUtils.cpp ├── CollectionsConverterUtils.h ├── CollectionsWrap.h ├── LICENSE ├── NodeRtUtils.cpp ├── NodeRtUtils.h ├── OpaqueWrapper.cpp ├── OpaqueWrapper.h ├── README.md ├── WrapperBase.h ├── _nodert_generated.cpp ├── binding.gyp ├── lib ├── NodeRT_Windows_Storage_Streams.d.js ├── NodeRT_Windows_Storage_Streams.d.ts └── main.js ├── node-async.h └── package.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongin/noble-uwp/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongin/noble-uwp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongin/noble-uwp/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongin/noble-uwp/HEAD/appveyor.yml -------------------------------------------------------------------------------- /binding.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongin/noble-uwp/HEAD/binding.gyp -------------------------------------------------------------------------------- /common.gypi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongin/noble-uwp/HEAD/common.gypi -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongin/noble-uwp/HEAD/index.js -------------------------------------------------------------------------------- /install.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongin/noble-uwp/HEAD/install.cmd -------------------------------------------------------------------------------- /install.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongin/noble-uwp/HEAD/install.js -------------------------------------------------------------------------------- /lib/bindings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongin/noble-uwp/HEAD/lib/bindings.js -------------------------------------------------------------------------------- /lib/rt-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongin/noble-uwp/HEAD/lib/rt-utils.js -------------------------------------------------------------------------------- /lib/uwpAddition.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongin/noble-uwp/HEAD/lib/uwpAddition.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongin/noble-uwp/HEAD/package.json -------------------------------------------------------------------------------- /test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongin/noble-uwp/HEAD/test.js -------------------------------------------------------------------------------- /uwp/InitializeSecurity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongin/noble-uwp/HEAD/uwp/InitializeSecurity.h -------------------------------------------------------------------------------- /uwp/generate-uwp.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongin/noble-uwp/HEAD/uwp/generate-uwp.cmd -------------------------------------------------------------------------------- /uwp/windows.devices.bluetooth.advertisement/.npmignore: -------------------------------------------------------------------------------- 1 | *.vcxproj 2 | *.filters 3 | *.user 4 | Debug 5 | Release 6 | test -------------------------------------------------------------------------------- /uwp/windows.devices.bluetooth.advertisement/CollectionsConverter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongin/noble-uwp/HEAD/uwp/windows.devices.bluetooth.advertisement/CollectionsConverter.h -------------------------------------------------------------------------------- /uwp/windows.devices.bluetooth.advertisement/CollectionsConverterUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongin/noble-uwp/HEAD/uwp/windows.devices.bluetooth.advertisement/CollectionsConverterUtils.cpp -------------------------------------------------------------------------------- /uwp/windows.devices.bluetooth.advertisement/CollectionsConverterUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongin/noble-uwp/HEAD/uwp/windows.devices.bluetooth.advertisement/CollectionsConverterUtils.h -------------------------------------------------------------------------------- /uwp/windows.devices.bluetooth.advertisement/CollectionsWrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongin/noble-uwp/HEAD/uwp/windows.devices.bluetooth.advertisement/CollectionsWrap.h -------------------------------------------------------------------------------- /uwp/windows.devices.bluetooth.advertisement/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongin/noble-uwp/HEAD/uwp/windows.devices.bluetooth.advertisement/LICENSE -------------------------------------------------------------------------------- /uwp/windows.devices.bluetooth.advertisement/NodeRtUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongin/noble-uwp/HEAD/uwp/windows.devices.bluetooth.advertisement/NodeRtUtils.cpp -------------------------------------------------------------------------------- /uwp/windows.devices.bluetooth.advertisement/NodeRtUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongin/noble-uwp/HEAD/uwp/windows.devices.bluetooth.advertisement/NodeRtUtils.h -------------------------------------------------------------------------------- /uwp/windows.devices.bluetooth.advertisement/OpaqueWrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongin/noble-uwp/HEAD/uwp/windows.devices.bluetooth.advertisement/OpaqueWrapper.cpp -------------------------------------------------------------------------------- /uwp/windows.devices.bluetooth.advertisement/OpaqueWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongin/noble-uwp/HEAD/uwp/windows.devices.bluetooth.advertisement/OpaqueWrapper.h -------------------------------------------------------------------------------- /uwp/windows.devices.bluetooth.advertisement/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongin/noble-uwp/HEAD/uwp/windows.devices.bluetooth.advertisement/README.md -------------------------------------------------------------------------------- /uwp/windows.devices.bluetooth.advertisement/WrapperBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongin/noble-uwp/HEAD/uwp/windows.devices.bluetooth.advertisement/WrapperBase.h -------------------------------------------------------------------------------- /uwp/windows.devices.bluetooth.advertisement/_nodert_generated.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongin/noble-uwp/HEAD/uwp/windows.devices.bluetooth.advertisement/_nodert_generated.cpp -------------------------------------------------------------------------------- /uwp/windows.devices.bluetooth.advertisement/binding.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongin/noble-uwp/HEAD/uwp/windows.devices.bluetooth.advertisement/binding.gyp -------------------------------------------------------------------------------- /uwp/windows.devices.bluetooth.advertisement/lib/NodeRT_Windows_Devices_Bluetooth_Advertisement.d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongin/noble-uwp/HEAD/uwp/windows.devices.bluetooth.advertisement/lib/NodeRT_Windows_Devices_Bluetooth_Advertisement.d.js -------------------------------------------------------------------------------- /uwp/windows.devices.bluetooth.advertisement/lib/NodeRT_Windows_Devices_Bluetooth_Advertisement.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongin/noble-uwp/HEAD/uwp/windows.devices.bluetooth.advertisement/lib/NodeRT_Windows_Devices_Bluetooth_Advertisement.d.ts -------------------------------------------------------------------------------- /uwp/windows.devices.bluetooth.advertisement/lib/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongin/noble-uwp/HEAD/uwp/windows.devices.bluetooth.advertisement/lib/main.js -------------------------------------------------------------------------------- /uwp/windows.devices.bluetooth.advertisement/node-async.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongin/noble-uwp/HEAD/uwp/windows.devices.bluetooth.advertisement/node-async.h -------------------------------------------------------------------------------- /uwp/windows.devices.bluetooth.advertisement/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongin/noble-uwp/HEAD/uwp/windows.devices.bluetooth.advertisement/package.json -------------------------------------------------------------------------------- /uwp/windows.devices.bluetooth.genericattributeprofile/.npmignore: -------------------------------------------------------------------------------- 1 | *.vcxproj 2 | *.filters 3 | *.user 4 | Debug 5 | Release 6 | test -------------------------------------------------------------------------------- /uwp/windows.devices.bluetooth.genericattributeprofile/CollectionsConverter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongin/noble-uwp/HEAD/uwp/windows.devices.bluetooth.genericattributeprofile/CollectionsConverter.h -------------------------------------------------------------------------------- /uwp/windows.devices.bluetooth.genericattributeprofile/CollectionsConverterUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongin/noble-uwp/HEAD/uwp/windows.devices.bluetooth.genericattributeprofile/CollectionsConverterUtils.cpp -------------------------------------------------------------------------------- /uwp/windows.devices.bluetooth.genericattributeprofile/CollectionsConverterUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongin/noble-uwp/HEAD/uwp/windows.devices.bluetooth.genericattributeprofile/CollectionsConverterUtils.h -------------------------------------------------------------------------------- /uwp/windows.devices.bluetooth.genericattributeprofile/CollectionsWrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongin/noble-uwp/HEAD/uwp/windows.devices.bluetooth.genericattributeprofile/CollectionsWrap.h -------------------------------------------------------------------------------- /uwp/windows.devices.bluetooth.genericattributeprofile/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongin/noble-uwp/HEAD/uwp/windows.devices.bluetooth.genericattributeprofile/LICENSE -------------------------------------------------------------------------------- /uwp/windows.devices.bluetooth.genericattributeprofile/NodeRtUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongin/noble-uwp/HEAD/uwp/windows.devices.bluetooth.genericattributeprofile/NodeRtUtils.cpp -------------------------------------------------------------------------------- /uwp/windows.devices.bluetooth.genericattributeprofile/NodeRtUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongin/noble-uwp/HEAD/uwp/windows.devices.bluetooth.genericattributeprofile/NodeRtUtils.h -------------------------------------------------------------------------------- /uwp/windows.devices.bluetooth.genericattributeprofile/OpaqueWrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongin/noble-uwp/HEAD/uwp/windows.devices.bluetooth.genericattributeprofile/OpaqueWrapper.cpp -------------------------------------------------------------------------------- /uwp/windows.devices.bluetooth.genericattributeprofile/OpaqueWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongin/noble-uwp/HEAD/uwp/windows.devices.bluetooth.genericattributeprofile/OpaqueWrapper.h -------------------------------------------------------------------------------- /uwp/windows.devices.bluetooth.genericattributeprofile/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongin/noble-uwp/HEAD/uwp/windows.devices.bluetooth.genericattributeprofile/README.md -------------------------------------------------------------------------------- /uwp/windows.devices.bluetooth.genericattributeprofile/WrapperBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongin/noble-uwp/HEAD/uwp/windows.devices.bluetooth.genericattributeprofile/WrapperBase.h -------------------------------------------------------------------------------- /uwp/windows.devices.bluetooth.genericattributeprofile/_nodert_generated.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongin/noble-uwp/HEAD/uwp/windows.devices.bluetooth.genericattributeprofile/_nodert_generated.cpp -------------------------------------------------------------------------------- /uwp/windows.devices.bluetooth.genericattributeprofile/binding.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongin/noble-uwp/HEAD/uwp/windows.devices.bluetooth.genericattributeprofile/binding.gyp -------------------------------------------------------------------------------- /uwp/windows.devices.bluetooth.genericattributeprofile/lib/NodeRT_Windows_Devices_Bluetooth_GenericAttributeProfile.d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongin/noble-uwp/HEAD/uwp/windows.devices.bluetooth.genericattributeprofile/lib/NodeRT_Windows_Devices_Bluetooth_GenericAttributeProfile.d.js -------------------------------------------------------------------------------- /uwp/windows.devices.bluetooth.genericattributeprofile/lib/NodeRT_Windows_Devices_Bluetooth_GenericAttributeProfile.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongin/noble-uwp/HEAD/uwp/windows.devices.bluetooth.genericattributeprofile/lib/NodeRT_Windows_Devices_Bluetooth_GenericAttributeProfile.d.ts -------------------------------------------------------------------------------- /uwp/windows.devices.bluetooth.genericattributeprofile/lib/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongin/noble-uwp/HEAD/uwp/windows.devices.bluetooth.genericattributeprofile/lib/main.js -------------------------------------------------------------------------------- /uwp/windows.devices.bluetooth.genericattributeprofile/node-async.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongin/noble-uwp/HEAD/uwp/windows.devices.bluetooth.genericattributeprofile/node-async.h -------------------------------------------------------------------------------- /uwp/windows.devices.bluetooth.genericattributeprofile/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongin/noble-uwp/HEAD/uwp/windows.devices.bluetooth.genericattributeprofile/package.json -------------------------------------------------------------------------------- /uwp/windows.devices.bluetooth/.npmignore: -------------------------------------------------------------------------------- 1 | *.vcxproj 2 | *.filters 3 | *.user 4 | Debug 5 | Release 6 | test -------------------------------------------------------------------------------- /uwp/windows.devices.bluetooth/CollectionsConverter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongin/noble-uwp/HEAD/uwp/windows.devices.bluetooth/CollectionsConverter.h -------------------------------------------------------------------------------- /uwp/windows.devices.bluetooth/CollectionsConverterUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongin/noble-uwp/HEAD/uwp/windows.devices.bluetooth/CollectionsConverterUtils.cpp -------------------------------------------------------------------------------- /uwp/windows.devices.bluetooth/CollectionsConverterUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongin/noble-uwp/HEAD/uwp/windows.devices.bluetooth/CollectionsConverterUtils.h -------------------------------------------------------------------------------- /uwp/windows.devices.bluetooth/CollectionsWrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongin/noble-uwp/HEAD/uwp/windows.devices.bluetooth/CollectionsWrap.h -------------------------------------------------------------------------------- /uwp/windows.devices.bluetooth/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongin/noble-uwp/HEAD/uwp/windows.devices.bluetooth/LICENSE -------------------------------------------------------------------------------- /uwp/windows.devices.bluetooth/NodeRtUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongin/noble-uwp/HEAD/uwp/windows.devices.bluetooth/NodeRtUtils.cpp -------------------------------------------------------------------------------- /uwp/windows.devices.bluetooth/NodeRtUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongin/noble-uwp/HEAD/uwp/windows.devices.bluetooth/NodeRtUtils.h -------------------------------------------------------------------------------- /uwp/windows.devices.bluetooth/OpaqueWrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongin/noble-uwp/HEAD/uwp/windows.devices.bluetooth/OpaqueWrapper.cpp -------------------------------------------------------------------------------- /uwp/windows.devices.bluetooth/OpaqueWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongin/noble-uwp/HEAD/uwp/windows.devices.bluetooth/OpaqueWrapper.h -------------------------------------------------------------------------------- /uwp/windows.devices.bluetooth/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongin/noble-uwp/HEAD/uwp/windows.devices.bluetooth/README.md -------------------------------------------------------------------------------- /uwp/windows.devices.bluetooth/WrapperBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongin/noble-uwp/HEAD/uwp/windows.devices.bluetooth/WrapperBase.h -------------------------------------------------------------------------------- /uwp/windows.devices.bluetooth/_nodert_generated.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongin/noble-uwp/HEAD/uwp/windows.devices.bluetooth/_nodert_generated.cpp -------------------------------------------------------------------------------- /uwp/windows.devices.bluetooth/binding.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongin/noble-uwp/HEAD/uwp/windows.devices.bluetooth/binding.gyp -------------------------------------------------------------------------------- /uwp/windows.devices.bluetooth/lib/NodeRT_Windows_Devices_Bluetooth.d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongin/noble-uwp/HEAD/uwp/windows.devices.bluetooth/lib/NodeRT_Windows_Devices_Bluetooth.d.js -------------------------------------------------------------------------------- /uwp/windows.devices.bluetooth/lib/NodeRT_Windows_Devices_Bluetooth.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongin/noble-uwp/HEAD/uwp/windows.devices.bluetooth/lib/NodeRT_Windows_Devices_Bluetooth.d.ts -------------------------------------------------------------------------------- /uwp/windows.devices.bluetooth/lib/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongin/noble-uwp/HEAD/uwp/windows.devices.bluetooth/lib/main.js -------------------------------------------------------------------------------- /uwp/windows.devices.bluetooth/node-async.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongin/noble-uwp/HEAD/uwp/windows.devices.bluetooth/node-async.h -------------------------------------------------------------------------------- /uwp/windows.devices.bluetooth/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongin/noble-uwp/HEAD/uwp/windows.devices.bluetooth/package.json -------------------------------------------------------------------------------- /uwp/windows.devices.enumeration/.npmignore: -------------------------------------------------------------------------------- 1 | *.vcxproj 2 | *.filters 3 | *.user 4 | Debug 5 | Release 6 | test -------------------------------------------------------------------------------- /uwp/windows.devices.enumeration/CollectionsConverter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongin/noble-uwp/HEAD/uwp/windows.devices.enumeration/CollectionsConverter.h -------------------------------------------------------------------------------- /uwp/windows.devices.enumeration/CollectionsConverterUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongin/noble-uwp/HEAD/uwp/windows.devices.enumeration/CollectionsConverterUtils.cpp -------------------------------------------------------------------------------- /uwp/windows.devices.enumeration/CollectionsConverterUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongin/noble-uwp/HEAD/uwp/windows.devices.enumeration/CollectionsConverterUtils.h -------------------------------------------------------------------------------- /uwp/windows.devices.enumeration/CollectionsWrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongin/noble-uwp/HEAD/uwp/windows.devices.enumeration/CollectionsWrap.h -------------------------------------------------------------------------------- /uwp/windows.devices.enumeration/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongin/noble-uwp/HEAD/uwp/windows.devices.enumeration/LICENSE -------------------------------------------------------------------------------- /uwp/windows.devices.enumeration/NodeRtUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongin/noble-uwp/HEAD/uwp/windows.devices.enumeration/NodeRtUtils.cpp -------------------------------------------------------------------------------- /uwp/windows.devices.enumeration/NodeRtUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongin/noble-uwp/HEAD/uwp/windows.devices.enumeration/NodeRtUtils.h -------------------------------------------------------------------------------- /uwp/windows.devices.enumeration/OpaqueWrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongin/noble-uwp/HEAD/uwp/windows.devices.enumeration/OpaqueWrapper.cpp -------------------------------------------------------------------------------- /uwp/windows.devices.enumeration/OpaqueWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongin/noble-uwp/HEAD/uwp/windows.devices.enumeration/OpaqueWrapper.h -------------------------------------------------------------------------------- /uwp/windows.devices.enumeration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongin/noble-uwp/HEAD/uwp/windows.devices.enumeration/README.md -------------------------------------------------------------------------------- /uwp/windows.devices.enumeration/WrapperBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongin/noble-uwp/HEAD/uwp/windows.devices.enumeration/WrapperBase.h -------------------------------------------------------------------------------- /uwp/windows.devices.enumeration/_nodert_generated.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongin/noble-uwp/HEAD/uwp/windows.devices.enumeration/_nodert_generated.cpp -------------------------------------------------------------------------------- /uwp/windows.devices.enumeration/binding.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongin/noble-uwp/HEAD/uwp/windows.devices.enumeration/binding.gyp -------------------------------------------------------------------------------- /uwp/windows.devices.enumeration/lib/NodeRT_Windows_Devices_Enumeration.d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongin/noble-uwp/HEAD/uwp/windows.devices.enumeration/lib/NodeRT_Windows_Devices_Enumeration.d.js -------------------------------------------------------------------------------- /uwp/windows.devices.enumeration/lib/NodeRT_Windows_Devices_Enumeration.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongin/noble-uwp/HEAD/uwp/windows.devices.enumeration/lib/NodeRT_Windows_Devices_Enumeration.d.ts -------------------------------------------------------------------------------- /uwp/windows.devices.enumeration/lib/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongin/noble-uwp/HEAD/uwp/windows.devices.enumeration/lib/main.js -------------------------------------------------------------------------------- /uwp/windows.devices.enumeration/node-async.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongin/noble-uwp/HEAD/uwp/windows.devices.enumeration/node-async.h -------------------------------------------------------------------------------- /uwp/windows.devices.enumeration/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongin/noble-uwp/HEAD/uwp/windows.devices.enumeration/package.json -------------------------------------------------------------------------------- /uwp/windows.devices.radios/.npmignore: -------------------------------------------------------------------------------- 1 | *.vcxproj 2 | *.filters 3 | *.user 4 | Debug 5 | Release 6 | test -------------------------------------------------------------------------------- /uwp/windows.devices.radios/CollectionsConverter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongin/noble-uwp/HEAD/uwp/windows.devices.radios/CollectionsConverter.h -------------------------------------------------------------------------------- /uwp/windows.devices.radios/CollectionsConverterUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongin/noble-uwp/HEAD/uwp/windows.devices.radios/CollectionsConverterUtils.cpp -------------------------------------------------------------------------------- /uwp/windows.devices.radios/CollectionsConverterUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongin/noble-uwp/HEAD/uwp/windows.devices.radios/CollectionsConverterUtils.h -------------------------------------------------------------------------------- /uwp/windows.devices.radios/CollectionsWrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongin/noble-uwp/HEAD/uwp/windows.devices.radios/CollectionsWrap.h -------------------------------------------------------------------------------- /uwp/windows.devices.radios/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongin/noble-uwp/HEAD/uwp/windows.devices.radios/LICENSE -------------------------------------------------------------------------------- /uwp/windows.devices.radios/NodeRtUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongin/noble-uwp/HEAD/uwp/windows.devices.radios/NodeRtUtils.cpp -------------------------------------------------------------------------------- /uwp/windows.devices.radios/NodeRtUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongin/noble-uwp/HEAD/uwp/windows.devices.radios/NodeRtUtils.h -------------------------------------------------------------------------------- /uwp/windows.devices.radios/OpaqueWrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongin/noble-uwp/HEAD/uwp/windows.devices.radios/OpaqueWrapper.cpp -------------------------------------------------------------------------------- /uwp/windows.devices.radios/OpaqueWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongin/noble-uwp/HEAD/uwp/windows.devices.radios/OpaqueWrapper.h -------------------------------------------------------------------------------- /uwp/windows.devices.radios/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongin/noble-uwp/HEAD/uwp/windows.devices.radios/README.md -------------------------------------------------------------------------------- /uwp/windows.devices.radios/WrapperBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongin/noble-uwp/HEAD/uwp/windows.devices.radios/WrapperBase.h -------------------------------------------------------------------------------- /uwp/windows.devices.radios/_nodert_generated.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongin/noble-uwp/HEAD/uwp/windows.devices.radios/_nodert_generated.cpp -------------------------------------------------------------------------------- /uwp/windows.devices.radios/binding.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongin/noble-uwp/HEAD/uwp/windows.devices.radios/binding.gyp -------------------------------------------------------------------------------- /uwp/windows.devices.radios/lib/NodeRT_Windows_Devices_Radios.d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongin/noble-uwp/HEAD/uwp/windows.devices.radios/lib/NodeRT_Windows_Devices_Radios.d.js -------------------------------------------------------------------------------- /uwp/windows.devices.radios/lib/NodeRT_Windows_Devices_Radios.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongin/noble-uwp/HEAD/uwp/windows.devices.radios/lib/NodeRT_Windows_Devices_Radios.d.ts -------------------------------------------------------------------------------- /uwp/windows.devices.radios/lib/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongin/noble-uwp/HEAD/uwp/windows.devices.radios/lib/main.js -------------------------------------------------------------------------------- /uwp/windows.devices.radios/node-async.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongin/noble-uwp/HEAD/uwp/windows.devices.radios/node-async.h -------------------------------------------------------------------------------- /uwp/windows.devices.radios/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongin/noble-uwp/HEAD/uwp/windows.devices.radios/package.json -------------------------------------------------------------------------------- /uwp/windows.foundation/.npmignore: -------------------------------------------------------------------------------- 1 | *.vcxproj 2 | *.filters 3 | *.user 4 | Debug 5 | Release 6 | test -------------------------------------------------------------------------------- /uwp/windows.foundation/CollectionsConverter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongin/noble-uwp/HEAD/uwp/windows.foundation/CollectionsConverter.h -------------------------------------------------------------------------------- /uwp/windows.foundation/CollectionsConverterUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongin/noble-uwp/HEAD/uwp/windows.foundation/CollectionsConverterUtils.cpp -------------------------------------------------------------------------------- /uwp/windows.foundation/CollectionsConverterUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongin/noble-uwp/HEAD/uwp/windows.foundation/CollectionsConverterUtils.h -------------------------------------------------------------------------------- /uwp/windows.foundation/CollectionsWrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongin/noble-uwp/HEAD/uwp/windows.foundation/CollectionsWrap.h -------------------------------------------------------------------------------- /uwp/windows.foundation/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongin/noble-uwp/HEAD/uwp/windows.foundation/LICENSE -------------------------------------------------------------------------------- /uwp/windows.foundation/NodeRtUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongin/noble-uwp/HEAD/uwp/windows.foundation/NodeRtUtils.cpp -------------------------------------------------------------------------------- /uwp/windows.foundation/NodeRtUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongin/noble-uwp/HEAD/uwp/windows.foundation/NodeRtUtils.h -------------------------------------------------------------------------------- /uwp/windows.foundation/OpaqueWrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongin/noble-uwp/HEAD/uwp/windows.foundation/OpaqueWrapper.cpp -------------------------------------------------------------------------------- /uwp/windows.foundation/OpaqueWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongin/noble-uwp/HEAD/uwp/windows.foundation/OpaqueWrapper.h -------------------------------------------------------------------------------- /uwp/windows.foundation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongin/noble-uwp/HEAD/uwp/windows.foundation/README.md -------------------------------------------------------------------------------- /uwp/windows.foundation/WrapperBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongin/noble-uwp/HEAD/uwp/windows.foundation/WrapperBase.h -------------------------------------------------------------------------------- /uwp/windows.foundation/_nodert_generated.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongin/noble-uwp/HEAD/uwp/windows.foundation/_nodert_generated.cpp -------------------------------------------------------------------------------- /uwp/windows.foundation/binding.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongin/noble-uwp/HEAD/uwp/windows.foundation/binding.gyp -------------------------------------------------------------------------------- /uwp/windows.foundation/lib/NodeRT_Windows_Foundation.d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongin/noble-uwp/HEAD/uwp/windows.foundation/lib/NodeRT_Windows_Foundation.d.js -------------------------------------------------------------------------------- /uwp/windows.foundation/lib/NodeRT_Windows_Foundation.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongin/noble-uwp/HEAD/uwp/windows.foundation/lib/NodeRT_Windows_Foundation.d.ts -------------------------------------------------------------------------------- /uwp/windows.foundation/lib/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongin/noble-uwp/HEAD/uwp/windows.foundation/lib/main.js -------------------------------------------------------------------------------- /uwp/windows.foundation/node-async.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongin/noble-uwp/HEAD/uwp/windows.foundation/node-async.h -------------------------------------------------------------------------------- /uwp/windows.foundation/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongin/noble-uwp/HEAD/uwp/windows.foundation/package.json -------------------------------------------------------------------------------- /uwp/windows.storage.streams/.npmignore: -------------------------------------------------------------------------------- 1 | *.vcxproj 2 | *.filters 3 | *.user 4 | Debug 5 | Release 6 | test -------------------------------------------------------------------------------- /uwp/windows.storage.streams/CollectionsConverter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongin/noble-uwp/HEAD/uwp/windows.storage.streams/CollectionsConverter.h -------------------------------------------------------------------------------- /uwp/windows.storage.streams/CollectionsConverterUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongin/noble-uwp/HEAD/uwp/windows.storage.streams/CollectionsConverterUtils.cpp -------------------------------------------------------------------------------- /uwp/windows.storage.streams/CollectionsConverterUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongin/noble-uwp/HEAD/uwp/windows.storage.streams/CollectionsConverterUtils.h -------------------------------------------------------------------------------- /uwp/windows.storage.streams/CollectionsWrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongin/noble-uwp/HEAD/uwp/windows.storage.streams/CollectionsWrap.h -------------------------------------------------------------------------------- /uwp/windows.storage.streams/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongin/noble-uwp/HEAD/uwp/windows.storage.streams/LICENSE -------------------------------------------------------------------------------- /uwp/windows.storage.streams/NodeRtUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongin/noble-uwp/HEAD/uwp/windows.storage.streams/NodeRtUtils.cpp -------------------------------------------------------------------------------- /uwp/windows.storage.streams/NodeRtUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongin/noble-uwp/HEAD/uwp/windows.storage.streams/NodeRtUtils.h -------------------------------------------------------------------------------- /uwp/windows.storage.streams/OpaqueWrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongin/noble-uwp/HEAD/uwp/windows.storage.streams/OpaqueWrapper.cpp -------------------------------------------------------------------------------- /uwp/windows.storage.streams/OpaqueWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongin/noble-uwp/HEAD/uwp/windows.storage.streams/OpaqueWrapper.h -------------------------------------------------------------------------------- /uwp/windows.storage.streams/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongin/noble-uwp/HEAD/uwp/windows.storage.streams/README.md -------------------------------------------------------------------------------- /uwp/windows.storage.streams/WrapperBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongin/noble-uwp/HEAD/uwp/windows.storage.streams/WrapperBase.h -------------------------------------------------------------------------------- /uwp/windows.storage.streams/_nodert_generated.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongin/noble-uwp/HEAD/uwp/windows.storage.streams/_nodert_generated.cpp -------------------------------------------------------------------------------- /uwp/windows.storage.streams/binding.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongin/noble-uwp/HEAD/uwp/windows.storage.streams/binding.gyp -------------------------------------------------------------------------------- /uwp/windows.storage.streams/lib/NodeRT_Windows_Storage_Streams.d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongin/noble-uwp/HEAD/uwp/windows.storage.streams/lib/NodeRT_Windows_Storage_Streams.d.js -------------------------------------------------------------------------------- /uwp/windows.storage.streams/lib/NodeRT_Windows_Storage_Streams.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongin/noble-uwp/HEAD/uwp/windows.storage.streams/lib/NodeRT_Windows_Storage_Streams.d.ts -------------------------------------------------------------------------------- /uwp/windows.storage.streams/lib/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongin/noble-uwp/HEAD/uwp/windows.storage.streams/lib/main.js -------------------------------------------------------------------------------- /uwp/windows.storage.streams/node-async.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongin/noble-uwp/HEAD/uwp/windows.storage.streams/node-async.h -------------------------------------------------------------------------------- /uwp/windows.storage.streams/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongin/noble-uwp/HEAD/uwp/windows.storage.streams/package.json --------------------------------------------------------------------------------