├── .gitignore ├── Cx ├── NfcCx │ ├── NfcCx.sln │ ├── NfcCx.vcxproj │ ├── NfcCx.vcxproj.filters │ ├── Readme.txt │ └── common.props ├── NfcCxDTA.cpp ├── NfcCxDTA.h ├── NfcCxDTAInternal.cpp ├── NfcCxESE.cpp ├── NfcCxESE.h ├── NfcCxLLCP.cpp ├── NfcCxLLCP.h ├── NfcCxNFP.cpp ├── NfcCxNFP.h ├── NfcCxPch.cpp ├── NfcCxPch.h ├── NfcCxRF.cpp ├── NfcCxRF.h ├── NfcCxSC.cpp ├── NfcCxSC.h ├── NfcCxSCCommon.cpp ├── NfcCxSCCommon.h ├── NfcCxSCPresentAbsentDispatcher.cpp ├── NfcCxSCPresentAbsentDispatcher.h ├── NfcCxSE.cpp ├── NfcCxSE.h ├── NfcCxSNEP.cpp ├── NfcCxSNEP.h ├── NfcCxSequence.cpp ├── NfcCxSequence.h ├── NfcCxState.cpp ├── NfcCxState.h ├── NfcCxTml.cpp ├── NfcCxTml.h ├── NfcCxTraceLogging.h ├── NfcCxTracing.h ├── NfcCxUtils.cpp ├── NfcCxUtils.h ├── StorageCardManager.cpp ├── StorageCardManager.h ├── device.cpp ├── device.h ├── driver.cpp ├── driver.h ├── fileObject.cpp ├── fileObject.h ├── power.cpp └── power.h ├── README.md ├── SECURITY.md ├── Test ├── NfcCxTestDeviceDriver │ ├── Api │ │ └── NfcCxTestDeviceDriver.h │ └── Driver │ │ ├── ApiCallbacksManager.cpp │ │ ├── ApiCallbacksManager.h │ │ ├── Device.cpp │ │ ├── Device.h │ │ ├── Driver.cpp │ │ ├── FileObject.cpp │ │ ├── FileObject.h │ │ ├── NfcCxTestDeviceDriver.inf │ │ ├── NfcCxTestDeviceDriver.rc │ │ ├── NfcCxTestDeviceDriver.vcxproj │ │ ├── NfcCxTestDeviceDriver.vcxproj.filters │ │ ├── Precomp.h │ │ └── Trace.h ├── NfcCxTests │ ├── IOHelpers │ │ ├── AsyncTask.h │ │ ├── DeviceQuery.cpp │ │ ├── DeviceQuery.h │ │ ├── DriverHandleFactory.cpp │ │ ├── DriverHandleFactory.h │ │ ├── IoOperation.cpp │ │ ├── IoOperation.h │ │ ├── Precomp.h │ │ ├── RadioManager.cpp │ │ ├── RadioManager.h │ │ ├── SmartcardIo.cpp │ │ ├── SmartcardIo.h │ │ ├── UniqueHandle.cpp │ │ └── UniqueHandle.h │ ├── NfcCxTests.vcxproj │ ├── NfcCxTests.vcxproj.filters │ ├── Simulation │ │ ├── ApduOverNciHciGenerator.cpp │ │ ├── ApduOverNciHciGenerator.h │ │ ├── ApduSamples.cpp │ │ ├── ApduSamples.h │ │ ├── NciControlPacket.cpp │ │ ├── NciControlPacket.h │ │ ├── NciDataPacket.cpp │ │ ├── NciDataPacket.h │ │ ├── NciHciDataPacket.cpp │ │ ├── NciHciDataPacket.h │ │ ├── NciPacket.cpp │ │ ├── NciPacket.h │ │ ├── NciSimConnector.cpp │ │ ├── NciSimConnector.h │ │ ├── Precomp.h │ │ ├── SimSequenceRunner.cpp │ │ ├── SimSequenceRunner.h │ │ ├── SimSequenceStep.cpp │ │ ├── SimSequenceStep.h │ │ ├── SimSequenceView.cpp │ │ ├── SimSequenceView.h │ │ ├── TagPayloads.cpp │ │ ├── TagPayloads.h │ │ ├── TestDeviceInstall.cpp │ │ ├── TestDeviceInstall.h │ │ ├── VerifyHelpers.cpp │ │ └── VerifyHelpers.h │ ├── SimulationSequences │ │ ├── InitSequences.cpp │ │ ├── InitSequences.h │ │ ├── Precomp.h │ │ ├── RfDiscoverySequences.cpp │ │ ├── RfDiscoverySequences.h │ │ ├── SEInitializationSequences.cpp │ │ ├── SEInitializationSequences.h │ │ ├── TagSequences.cpp │ │ ├── TagSequences.h │ │ ├── Type5TagSequences.cpp │ │ └── Type5TagSequences.h │ └── Tests │ │ ├── AirplaneModeTests.cpp │ │ ├── InitTests.cpp │ │ ├── Module.cpp │ │ ├── Module.h │ │ ├── Precomp.h │ │ ├── SETests.cpp │ │ ├── SmartcardTagTests.cpp │ │ ├── TagTests.cpp │ │ ├── TestLogging.cpp │ │ └── TestLogging.h └── README.md ├── docs └── State Machine.md ├── inc ├── NciParsersLib.h ├── NfcCx.h ├── NfcDTADev.h ├── NfcRadioDev.h ├── NfcSEDev.h ├── WdfCxProxy.h └── tracecommon.h ├── libs ├── NciParsers │ ├── NciPacketParser.cpp │ ├── NciParsers │ │ ├── NciParsers.vcxproj │ │ └── NciParsers.vcxproj.filters │ └── NciParsersLibPch.h ├── NfcCoreLib │ ├── inc │ │ ├── phFriNfc_NdefRecord.h │ │ ├── phFriNfc_SnepProtocol.h │ │ ├── phLibNfc.h │ │ ├── phLibNfc_Snep.h │ │ ├── phLibNfc_ioctl.h │ │ ├── phNfcCompId.h │ │ ├── phNfcConfig.h │ │ ├── phNfcHalTypes2.h │ │ ├── phNfcInterface.h │ │ ├── phNfcLlcpTypes.h │ │ ├── phNfcStatus.h │ │ ├── phNfcTraceEnums.h │ │ ├── phNfcTypes.h │ │ ├── phNfcTypes_Mapping.h │ │ ├── phOsalNfc.h │ │ ├── phOsalNfc_Timer.h │ │ └── phTmlNfc.h │ └── lib │ │ ├── Fri │ │ ├── NfcCoreFri │ │ │ ├── NfcCoreFri.vcxproj │ │ │ └── NfcCoreFri.vcxproj.filters │ │ ├── phFriNfc.h │ │ ├── phFriNfc_DesfireFormat.c │ │ ├── phFriNfc_DesfireFormat.h │ │ ├── phFriNfc_DesfireMap.c │ │ ├── phFriNfc_DesfireMap.h │ │ ├── phFriNfc_FelicaMap.c │ │ ├── phFriNfc_FelicaMap.h │ │ ├── phFriNfc_ISO15693Format.c │ │ ├── phFriNfc_ISO15693Format.h │ │ ├── phFriNfc_ISO15693Map.c │ │ ├── phFriNfc_ISO15693Map.h │ │ ├── phFriNfc_IntNdefMap.h │ │ ├── phFriNfc_Llcp.c │ │ ├── phFriNfc_Llcp.h │ │ ├── phFriNfc_LlcpMac.c │ │ ├── phFriNfc_LlcpMac.h │ │ ├── phFriNfc_LlcpMacNfcip.c │ │ ├── phFriNfc_LlcpMacNfcip.h │ │ ├── phFriNfc_LlcpTransport.c │ │ ├── phFriNfc_LlcpTransport.h │ │ ├── phFriNfc_LlcpTransport_Connection.c │ │ ├── phFriNfc_LlcpTransport_Connection.h │ │ ├── phFriNfc_LlcpTransport_Connectionless.c │ │ ├── phFriNfc_LlcpTransport_Connectionless.h │ │ ├── phFriNfc_LlcpUtils.c │ │ ├── phFriNfc_LlcpUtils.h │ │ ├── phFriNfc_MapTools.c │ │ ├── phFriNfc_MapTools.h │ │ ├── phFriNfc_MifStdFormat.c │ │ ├── phFriNfc_MifStdFormat.h │ │ ├── phFriNfc_MifULFormat.c │ │ ├── phFriNfc_MifULFormat.h │ │ ├── phFriNfc_MifareStdMap.c │ │ ├── phFriNfc_MifareStdMap.h │ │ ├── phFriNfc_MifareULMap.c │ │ ├── phFriNfc_MifareULMap.h │ │ ├── phFriNfc_NdefMap.c │ │ ├── phFriNfc_NdefMap.h │ │ ├── phFriNfc_NdefRecord.c │ │ ├── phFriNfc_NdefReg.c │ │ ├── phFriNfc_NdefReg.h │ │ ├── phFriNfc_OvrHal.c │ │ ├── phFriNfc_OvrHal.h │ │ ├── phFriNfc_Pch.h │ │ ├── phFriNfc_SmtCrdFmt.c │ │ ├── phFriNfc_SmtCrdFmt.h │ │ ├── phFriNfc_SnepProtocol.c │ │ ├── phFriNfc_SnepProtocolUtility.c │ │ ├── phFriNfc_SnepProtocolUtility.h │ │ ├── phFriNfc_TopazDynamicMap.c │ │ ├── phFriNfc_TopazFormat.c │ │ ├── phFriNfc_TopazFormat.h │ │ ├── phFriNfc_TopazMap.c │ │ └── phFriNfc_TopazMap.h │ │ ├── Inc │ │ └── NfcCoreLibTracing.h │ │ ├── LibNfc │ │ ├── NfcCoreLibNfc │ │ │ ├── NfcCoreLibNfc.vcxproj │ │ │ └── NfcCoreLibNfc.vcxproj.filters │ │ ├── phHciNfc_Core.c │ │ ├── phHciNfc_Core.h │ │ ├── phHciNfc_CoreRxMemMgr.c │ │ ├── phHciNfc_CoreRxMemMgr.h │ │ ├── phHciNfc_Interface.h │ │ ├── phHciNfc_Pipe.c │ │ ├── phHciNfc_Pipe.h │ │ ├── phLibNfc.c │ │ ├── phLibNfc_CeHost.c │ │ ├── phLibNfc_CeHost.h │ │ ├── phLibNfc_ContextMgmt.c │ │ ├── phLibNfc_ContextMgmt.h │ │ ├── phLibNfc_Deactivate.c │ │ ├── phLibNfc_Deactivate.h │ │ ├── phLibNfc_Discovery.c │ │ ├── phLibNfc_Discovery.h │ │ ├── phLibNfc_Hci.c │ │ ├── phLibNfc_Hci.h │ │ ├── phLibNfc_Init.c │ │ ├── phLibNfc_Init.h │ │ ├── phLibNfc_Initiator.c │ │ ├── phLibNfc_Initiator.h │ │ ├── phLibNfc_Internal.h │ │ ├── phLibNfc_InternalConnect.c │ │ ├── phLibNfc_Ioctl.c │ │ ├── phLibNfc_IoctlUtils.h │ │ ├── phLibNfc_Iso15693.c │ │ ├── phLibNfc_Iso15693.h │ │ ├── phLibNfc_Llcp.c │ │ ├── phLibNfc_Llcp.h │ │ ├── phLibNfc_Pch.h │ │ ├── phLibNfc_Se.c │ │ ├── phLibNfc_Se.h │ │ ├── phLibNfc_Sequence.c │ │ ├── phLibNfc_Sequence.h │ │ ├── phLibNfc_Snep.c │ │ ├── phLibNfc_State.c │ │ ├── phLibNfc_State.h │ │ ├── phLibNfc_State_Functions.c │ │ ├── phLibNfc_Target.c │ │ ├── phLibNfc_Target.h │ │ ├── phLibNfc_Type1Tag.c │ │ ├── phLibNfc_Type1Tag.h │ │ ├── phLibNfc_ndef_raw.c │ │ └── phLibNfc_ndef_raw.h │ │ ├── Nci │ │ ├── NfcCoreNci │ │ │ ├── NfcCoreNci.vcxproj │ │ │ └── NfcCoreNci.vcxproj.filters │ │ ├── phNciNfc.c │ │ ├── phNciNfc.h │ │ ├── phNciNfc_Common.c │ │ ├── phNciNfc_Common.h │ │ ├── phNciNfc_Context.c │ │ ├── phNciNfc_Context.h │ │ ├── phNciNfc_Discovery.c │ │ ├── phNciNfc_Discovery.h │ │ ├── phNciNfc_Init.c │ │ ├── phNciNfc_Init.h │ │ ├── phNciNfc_Jewel.c │ │ ├── phNciNfc_Jewel.h │ │ ├── phNciNfc_ListenIsoDep.c │ │ ├── phNciNfc_ListenIsoDep.h │ │ ├── phNciNfc_ListenMgmt.c │ │ ├── phNciNfc_ListenMgmt.h │ │ ├── phNciNfc_ListenNfcDep.c │ │ ├── phNciNfc_ListenNfcDep.h │ │ ├── phNciNfc_LogicalConn.c │ │ ├── phNciNfc_LogicalConn.h │ │ ├── phNciNfc_NfcIMgmt.c │ │ ├── phNciNfc_NfcIMgmt.h │ │ ├── phNciNfc_NfceeMgmt.c │ │ ├── phNciNfc_NfceeMgmt.h │ │ ├── phNciNfc_Pch.h │ │ ├── phNciNfc_PollMgmt.c │ │ ├── phNciNfc_PollMgmt.h │ │ ├── phNciNfc_PollNfcDep.c │ │ ├── phNciNfc_PollNfcDep.h │ │ ├── phNciNfc_RFReader.c │ │ ├── phNciNfc_RFReader.h │ │ ├── phNciNfc_RFReader4A.c │ │ ├── phNciNfc_RFReader4A.h │ │ ├── phNciNfc_RFReader4B.c │ │ ├── phNciNfc_RFReader4B.h │ │ ├── phNciNfc_RFReaderA.c │ │ ├── phNciNfc_RFReaderA.h │ │ ├── phNciNfc_RFReaderB.c │ │ ├── phNciNfc_RFReaderB.h │ │ ├── phNciNfc_RFReaderFelica.c │ │ ├── phNciNfc_RFReaderFelica.h │ │ ├── phNciNfc_RFReaderIso15693.c │ │ ├── phNciNfc_RFReaderIso15693.h │ │ ├── phNciNfc_RFReaderMifare.c │ │ ├── phNciNfc_RFReaderMifare.h │ │ ├── phNciNfc_RfConfig.c │ │ ├── phNciNfc_RfConfig.h │ │ ├── phNciNfc_Sequence.c │ │ ├── phNciNfc_Sequence.h │ │ ├── phNciNfc_Utils.c │ │ └── phNciNfc_Utils.h │ │ ├── NciCore │ │ ├── NfcCoreNciCore │ │ │ ├── NfcCoreNciCore.vcxproj │ │ │ └── NfcCoreNciCore.vcxproj.filters │ │ ├── phNciNfcTypes.h │ │ ├── phNciNfc_Core.c │ │ ├── phNciNfc_Core.h │ │ ├── phNciNfc_CoreIf.c │ │ ├── phNciNfc_CoreIf.h │ │ ├── phNciNfc_CoreMemMgr.c │ │ ├── phNciNfc_CoreMemMgr.h │ │ ├── phNciNfc_CorePch.h │ │ ├── phNciNfc_CoreRecv.c │ │ ├── phNciNfc_CoreRecv.h │ │ ├── phNciNfc_CoreRecvMgr.c │ │ ├── phNciNfc_CoreRecvMgr.h │ │ ├── phNciNfc_CoreSend.c │ │ ├── phNciNfc_CoreSend.h │ │ ├── phNciNfc_CoreStatus.h │ │ ├── phNciNfc_CoreUtils.c │ │ ├── phNciNfc_CoreUtils.h │ │ ├── phNciNfc_DbgDescription.c │ │ ├── phNciNfc_DbgDescription.h │ │ ├── phNciNfc_LoglConnMgmt.c │ │ ├── phNciNfc_LoglConnMgmt.h │ │ ├── phNciNfc_State.h │ │ ├── phNciNfc_TlvUtils.c │ │ └── phNciNfc_TlvUtils.h │ │ └── Osal │ │ ├── NfcCoreOsal │ │ ├── NfcCoreOsal.vcxproj │ │ └── NfcCoreOsal.vcxproj.filters │ │ ├── phOsalNfc.c │ │ ├── phOsalNfc_Internal.h │ │ ├── phOsalNfc_MsgQueue.c │ │ ├── phOsalNfc_Pch.h │ │ └── phOsalNfc_Timer.c ├── Proximity │ ├── inc │ │ └── NfcProximityBuffer.h │ └── lib │ │ ├── NfcProximity │ │ ├── NfcProximity.vcxproj │ │ └── NfcProximity.vcxproj.filters │ │ ├── NfcProximityBuffer.cpp │ │ └── Pch.h └── SmartCard │ ├── inc │ ├── StorageClass.h │ ├── StorageClassFelica.h │ ├── StorageClassISO15693.h │ ├── StorageClassJewel.h │ ├── StorageClassLoadKey.h │ ├── StorageClassMifare.h │ └── StorageClassMifareStd.h │ └── lib │ ├── NfcSmartCard │ ├── NfcSmartCard.vcxproj │ └── NfcSmartCard.vcxproj.filters │ ├── Pch.h │ ├── StorageClassFelica.cpp │ ├── StorageClassISO15693.cpp │ ├── StorageClassJewel.cpp │ ├── StorageClassLoadKey.cpp │ ├── StorageClassMifare.cpp │ └── StorageClassMifareStd.cpp └── license.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/.gitignore -------------------------------------------------------------------------------- /Cx/NfcCx/NfcCx.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/Cx/NfcCx/NfcCx.sln -------------------------------------------------------------------------------- /Cx/NfcCx/NfcCx.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/Cx/NfcCx/NfcCx.vcxproj -------------------------------------------------------------------------------- /Cx/NfcCx/NfcCx.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/Cx/NfcCx/NfcCx.vcxproj.filters -------------------------------------------------------------------------------- /Cx/NfcCx/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/Cx/NfcCx/Readme.txt -------------------------------------------------------------------------------- /Cx/NfcCx/common.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/Cx/NfcCx/common.props -------------------------------------------------------------------------------- /Cx/NfcCxDTA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/Cx/NfcCxDTA.cpp -------------------------------------------------------------------------------- /Cx/NfcCxDTA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/Cx/NfcCxDTA.h -------------------------------------------------------------------------------- /Cx/NfcCxDTAInternal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/Cx/NfcCxDTAInternal.cpp -------------------------------------------------------------------------------- /Cx/NfcCxESE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/Cx/NfcCxESE.cpp -------------------------------------------------------------------------------- /Cx/NfcCxESE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/Cx/NfcCxESE.h -------------------------------------------------------------------------------- /Cx/NfcCxLLCP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/Cx/NfcCxLLCP.cpp -------------------------------------------------------------------------------- /Cx/NfcCxLLCP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/Cx/NfcCxLLCP.h -------------------------------------------------------------------------------- /Cx/NfcCxNFP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/Cx/NfcCxNFP.cpp -------------------------------------------------------------------------------- /Cx/NfcCxNFP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/Cx/NfcCxNFP.h -------------------------------------------------------------------------------- /Cx/NfcCxPch.cpp: -------------------------------------------------------------------------------- 1 | #include "NfcCxPch.h" 2 | -------------------------------------------------------------------------------- /Cx/NfcCxPch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/Cx/NfcCxPch.h -------------------------------------------------------------------------------- /Cx/NfcCxRF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/Cx/NfcCxRF.cpp -------------------------------------------------------------------------------- /Cx/NfcCxRF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/Cx/NfcCxRF.h -------------------------------------------------------------------------------- /Cx/NfcCxSC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/Cx/NfcCxSC.cpp -------------------------------------------------------------------------------- /Cx/NfcCxSC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/Cx/NfcCxSC.h -------------------------------------------------------------------------------- /Cx/NfcCxSCCommon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/Cx/NfcCxSCCommon.cpp -------------------------------------------------------------------------------- /Cx/NfcCxSCCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/Cx/NfcCxSCCommon.h -------------------------------------------------------------------------------- /Cx/NfcCxSCPresentAbsentDispatcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/Cx/NfcCxSCPresentAbsentDispatcher.cpp -------------------------------------------------------------------------------- /Cx/NfcCxSCPresentAbsentDispatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/Cx/NfcCxSCPresentAbsentDispatcher.h -------------------------------------------------------------------------------- /Cx/NfcCxSE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/Cx/NfcCxSE.cpp -------------------------------------------------------------------------------- /Cx/NfcCxSE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/Cx/NfcCxSE.h -------------------------------------------------------------------------------- /Cx/NfcCxSNEP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/Cx/NfcCxSNEP.cpp -------------------------------------------------------------------------------- /Cx/NfcCxSNEP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/Cx/NfcCxSNEP.h -------------------------------------------------------------------------------- /Cx/NfcCxSequence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/Cx/NfcCxSequence.cpp -------------------------------------------------------------------------------- /Cx/NfcCxSequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/Cx/NfcCxSequence.h -------------------------------------------------------------------------------- /Cx/NfcCxState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/Cx/NfcCxState.cpp -------------------------------------------------------------------------------- /Cx/NfcCxState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/Cx/NfcCxState.h -------------------------------------------------------------------------------- /Cx/NfcCxTml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/Cx/NfcCxTml.cpp -------------------------------------------------------------------------------- /Cx/NfcCxTml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/Cx/NfcCxTml.h -------------------------------------------------------------------------------- /Cx/NfcCxTraceLogging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/Cx/NfcCxTraceLogging.h -------------------------------------------------------------------------------- /Cx/NfcCxTracing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/Cx/NfcCxTracing.h -------------------------------------------------------------------------------- /Cx/NfcCxUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/Cx/NfcCxUtils.cpp -------------------------------------------------------------------------------- /Cx/NfcCxUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/Cx/NfcCxUtils.h -------------------------------------------------------------------------------- /Cx/StorageCardManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/Cx/StorageCardManager.cpp -------------------------------------------------------------------------------- /Cx/StorageCardManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/Cx/StorageCardManager.h -------------------------------------------------------------------------------- /Cx/device.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/Cx/device.cpp -------------------------------------------------------------------------------- /Cx/device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/Cx/device.h -------------------------------------------------------------------------------- /Cx/driver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/Cx/driver.cpp -------------------------------------------------------------------------------- /Cx/driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/Cx/driver.h -------------------------------------------------------------------------------- /Cx/fileObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/Cx/fileObject.cpp -------------------------------------------------------------------------------- /Cx/fileObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/Cx/fileObject.h -------------------------------------------------------------------------------- /Cx/power.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/Cx/power.cpp -------------------------------------------------------------------------------- /Cx/power.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/Cx/power.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/SECURITY.md -------------------------------------------------------------------------------- /Test/NfcCxTestDeviceDriver/Api/NfcCxTestDeviceDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/Test/NfcCxTestDeviceDriver/Api/NfcCxTestDeviceDriver.h -------------------------------------------------------------------------------- /Test/NfcCxTestDeviceDriver/Driver/ApiCallbacksManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/Test/NfcCxTestDeviceDriver/Driver/ApiCallbacksManager.cpp -------------------------------------------------------------------------------- /Test/NfcCxTestDeviceDriver/Driver/ApiCallbacksManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/Test/NfcCxTestDeviceDriver/Driver/ApiCallbacksManager.h -------------------------------------------------------------------------------- /Test/NfcCxTestDeviceDriver/Driver/Device.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/Test/NfcCxTestDeviceDriver/Driver/Device.cpp -------------------------------------------------------------------------------- /Test/NfcCxTestDeviceDriver/Driver/Device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/Test/NfcCxTestDeviceDriver/Driver/Device.h -------------------------------------------------------------------------------- /Test/NfcCxTestDeviceDriver/Driver/Driver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/Test/NfcCxTestDeviceDriver/Driver/Driver.cpp -------------------------------------------------------------------------------- /Test/NfcCxTestDeviceDriver/Driver/FileObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/Test/NfcCxTestDeviceDriver/Driver/FileObject.cpp -------------------------------------------------------------------------------- /Test/NfcCxTestDeviceDriver/Driver/FileObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/Test/NfcCxTestDeviceDriver/Driver/FileObject.h -------------------------------------------------------------------------------- /Test/NfcCxTestDeviceDriver/Driver/NfcCxTestDeviceDriver.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/Test/NfcCxTestDeviceDriver/Driver/NfcCxTestDeviceDriver.inf -------------------------------------------------------------------------------- /Test/NfcCxTestDeviceDriver/Driver/NfcCxTestDeviceDriver.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/Test/NfcCxTestDeviceDriver/Driver/NfcCxTestDeviceDriver.rc -------------------------------------------------------------------------------- /Test/NfcCxTestDeviceDriver/Driver/NfcCxTestDeviceDriver.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/Test/NfcCxTestDeviceDriver/Driver/NfcCxTestDeviceDriver.vcxproj -------------------------------------------------------------------------------- /Test/NfcCxTestDeviceDriver/Driver/NfcCxTestDeviceDriver.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/Test/NfcCxTestDeviceDriver/Driver/NfcCxTestDeviceDriver.vcxproj.filters -------------------------------------------------------------------------------- /Test/NfcCxTestDeviceDriver/Driver/Precomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/Test/NfcCxTestDeviceDriver/Driver/Precomp.h -------------------------------------------------------------------------------- /Test/NfcCxTestDeviceDriver/Driver/Trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/Test/NfcCxTestDeviceDriver/Driver/Trace.h -------------------------------------------------------------------------------- /Test/NfcCxTests/IOHelpers/AsyncTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/Test/NfcCxTests/IOHelpers/AsyncTask.h -------------------------------------------------------------------------------- /Test/NfcCxTests/IOHelpers/DeviceQuery.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/Test/NfcCxTests/IOHelpers/DeviceQuery.cpp -------------------------------------------------------------------------------- /Test/NfcCxTests/IOHelpers/DeviceQuery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/Test/NfcCxTests/IOHelpers/DeviceQuery.h -------------------------------------------------------------------------------- /Test/NfcCxTests/IOHelpers/DriverHandleFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/Test/NfcCxTests/IOHelpers/DriverHandleFactory.cpp -------------------------------------------------------------------------------- /Test/NfcCxTests/IOHelpers/DriverHandleFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/Test/NfcCxTests/IOHelpers/DriverHandleFactory.h -------------------------------------------------------------------------------- /Test/NfcCxTests/IOHelpers/IoOperation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/Test/NfcCxTests/IOHelpers/IoOperation.cpp -------------------------------------------------------------------------------- /Test/NfcCxTests/IOHelpers/IoOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/Test/NfcCxTests/IOHelpers/IoOperation.h -------------------------------------------------------------------------------- /Test/NfcCxTests/IOHelpers/Precomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/Test/NfcCxTests/IOHelpers/Precomp.h -------------------------------------------------------------------------------- /Test/NfcCxTests/IOHelpers/RadioManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/Test/NfcCxTests/IOHelpers/RadioManager.cpp -------------------------------------------------------------------------------- /Test/NfcCxTests/IOHelpers/RadioManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/Test/NfcCxTests/IOHelpers/RadioManager.h -------------------------------------------------------------------------------- /Test/NfcCxTests/IOHelpers/SmartcardIo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/Test/NfcCxTests/IOHelpers/SmartcardIo.cpp -------------------------------------------------------------------------------- /Test/NfcCxTests/IOHelpers/SmartcardIo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/Test/NfcCxTests/IOHelpers/SmartcardIo.h -------------------------------------------------------------------------------- /Test/NfcCxTests/IOHelpers/UniqueHandle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/Test/NfcCxTests/IOHelpers/UniqueHandle.cpp -------------------------------------------------------------------------------- /Test/NfcCxTests/IOHelpers/UniqueHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/Test/NfcCxTests/IOHelpers/UniqueHandle.h -------------------------------------------------------------------------------- /Test/NfcCxTests/NfcCxTests.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/Test/NfcCxTests/NfcCxTests.vcxproj -------------------------------------------------------------------------------- /Test/NfcCxTests/NfcCxTests.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/Test/NfcCxTests/NfcCxTests.vcxproj.filters -------------------------------------------------------------------------------- /Test/NfcCxTests/Simulation/ApduOverNciHciGenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/Test/NfcCxTests/Simulation/ApduOverNciHciGenerator.cpp -------------------------------------------------------------------------------- /Test/NfcCxTests/Simulation/ApduOverNciHciGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/Test/NfcCxTests/Simulation/ApduOverNciHciGenerator.h -------------------------------------------------------------------------------- /Test/NfcCxTests/Simulation/ApduSamples.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/Test/NfcCxTests/Simulation/ApduSamples.cpp -------------------------------------------------------------------------------- /Test/NfcCxTests/Simulation/ApduSamples.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/Test/NfcCxTests/Simulation/ApduSamples.h -------------------------------------------------------------------------------- /Test/NfcCxTests/Simulation/NciControlPacket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/Test/NfcCxTests/Simulation/NciControlPacket.cpp -------------------------------------------------------------------------------- /Test/NfcCxTests/Simulation/NciControlPacket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/Test/NfcCxTests/Simulation/NciControlPacket.h -------------------------------------------------------------------------------- /Test/NfcCxTests/Simulation/NciDataPacket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/Test/NfcCxTests/Simulation/NciDataPacket.cpp -------------------------------------------------------------------------------- /Test/NfcCxTests/Simulation/NciDataPacket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/Test/NfcCxTests/Simulation/NciDataPacket.h -------------------------------------------------------------------------------- /Test/NfcCxTests/Simulation/NciHciDataPacket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/Test/NfcCxTests/Simulation/NciHciDataPacket.cpp -------------------------------------------------------------------------------- /Test/NfcCxTests/Simulation/NciHciDataPacket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/Test/NfcCxTests/Simulation/NciHciDataPacket.h -------------------------------------------------------------------------------- /Test/NfcCxTests/Simulation/NciPacket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/Test/NfcCxTests/Simulation/NciPacket.cpp -------------------------------------------------------------------------------- /Test/NfcCxTests/Simulation/NciPacket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/Test/NfcCxTests/Simulation/NciPacket.h -------------------------------------------------------------------------------- /Test/NfcCxTests/Simulation/NciSimConnector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/Test/NfcCxTests/Simulation/NciSimConnector.cpp -------------------------------------------------------------------------------- /Test/NfcCxTests/Simulation/NciSimConnector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/Test/NfcCxTests/Simulation/NciSimConnector.h -------------------------------------------------------------------------------- /Test/NfcCxTests/Simulation/Precomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/Test/NfcCxTests/Simulation/Precomp.h -------------------------------------------------------------------------------- /Test/NfcCxTests/Simulation/SimSequenceRunner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/Test/NfcCxTests/Simulation/SimSequenceRunner.cpp -------------------------------------------------------------------------------- /Test/NfcCxTests/Simulation/SimSequenceRunner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/Test/NfcCxTests/Simulation/SimSequenceRunner.h -------------------------------------------------------------------------------- /Test/NfcCxTests/Simulation/SimSequenceStep.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/Test/NfcCxTests/Simulation/SimSequenceStep.cpp -------------------------------------------------------------------------------- /Test/NfcCxTests/Simulation/SimSequenceStep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/Test/NfcCxTests/Simulation/SimSequenceStep.h -------------------------------------------------------------------------------- /Test/NfcCxTests/Simulation/SimSequenceView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/Test/NfcCxTests/Simulation/SimSequenceView.cpp -------------------------------------------------------------------------------- /Test/NfcCxTests/Simulation/SimSequenceView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/Test/NfcCxTests/Simulation/SimSequenceView.h -------------------------------------------------------------------------------- /Test/NfcCxTests/Simulation/TagPayloads.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/Test/NfcCxTests/Simulation/TagPayloads.cpp -------------------------------------------------------------------------------- /Test/NfcCxTests/Simulation/TagPayloads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/Test/NfcCxTests/Simulation/TagPayloads.h -------------------------------------------------------------------------------- /Test/NfcCxTests/Simulation/TestDeviceInstall.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/Test/NfcCxTests/Simulation/TestDeviceInstall.cpp -------------------------------------------------------------------------------- /Test/NfcCxTests/Simulation/TestDeviceInstall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/Test/NfcCxTests/Simulation/TestDeviceInstall.h -------------------------------------------------------------------------------- /Test/NfcCxTests/Simulation/VerifyHelpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/Test/NfcCxTests/Simulation/VerifyHelpers.cpp -------------------------------------------------------------------------------- /Test/NfcCxTests/Simulation/VerifyHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/Test/NfcCxTests/Simulation/VerifyHelpers.h -------------------------------------------------------------------------------- /Test/NfcCxTests/SimulationSequences/InitSequences.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/Test/NfcCxTests/SimulationSequences/InitSequences.cpp -------------------------------------------------------------------------------- /Test/NfcCxTests/SimulationSequences/InitSequences.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/Test/NfcCxTests/SimulationSequences/InitSequences.h -------------------------------------------------------------------------------- /Test/NfcCxTests/SimulationSequences/Precomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/Test/NfcCxTests/SimulationSequences/Precomp.h -------------------------------------------------------------------------------- /Test/NfcCxTests/SimulationSequences/RfDiscoverySequences.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/Test/NfcCxTests/SimulationSequences/RfDiscoverySequences.cpp -------------------------------------------------------------------------------- /Test/NfcCxTests/SimulationSequences/RfDiscoverySequences.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/Test/NfcCxTests/SimulationSequences/RfDiscoverySequences.h -------------------------------------------------------------------------------- /Test/NfcCxTests/SimulationSequences/SEInitializationSequences.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/Test/NfcCxTests/SimulationSequences/SEInitializationSequences.cpp -------------------------------------------------------------------------------- /Test/NfcCxTests/SimulationSequences/SEInitializationSequences.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/Test/NfcCxTests/SimulationSequences/SEInitializationSequences.h -------------------------------------------------------------------------------- /Test/NfcCxTests/SimulationSequences/TagSequences.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/Test/NfcCxTests/SimulationSequences/TagSequences.cpp -------------------------------------------------------------------------------- /Test/NfcCxTests/SimulationSequences/TagSequences.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/Test/NfcCxTests/SimulationSequences/TagSequences.h -------------------------------------------------------------------------------- /Test/NfcCxTests/SimulationSequences/Type5TagSequences.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/Test/NfcCxTests/SimulationSequences/Type5TagSequences.cpp -------------------------------------------------------------------------------- /Test/NfcCxTests/SimulationSequences/Type5TagSequences.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/Test/NfcCxTests/SimulationSequences/Type5TagSequences.h -------------------------------------------------------------------------------- /Test/NfcCxTests/Tests/AirplaneModeTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/Test/NfcCxTests/Tests/AirplaneModeTests.cpp -------------------------------------------------------------------------------- /Test/NfcCxTests/Tests/InitTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/Test/NfcCxTests/Tests/InitTests.cpp -------------------------------------------------------------------------------- /Test/NfcCxTests/Tests/Module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/Test/NfcCxTests/Tests/Module.cpp -------------------------------------------------------------------------------- /Test/NfcCxTests/Tests/Module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/Test/NfcCxTests/Tests/Module.h -------------------------------------------------------------------------------- /Test/NfcCxTests/Tests/Precomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/Test/NfcCxTests/Tests/Precomp.h -------------------------------------------------------------------------------- /Test/NfcCxTests/Tests/SETests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/Test/NfcCxTests/Tests/SETests.cpp -------------------------------------------------------------------------------- /Test/NfcCxTests/Tests/SmartcardTagTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/Test/NfcCxTests/Tests/SmartcardTagTests.cpp -------------------------------------------------------------------------------- /Test/NfcCxTests/Tests/TagTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/Test/NfcCxTests/Tests/TagTests.cpp -------------------------------------------------------------------------------- /Test/NfcCxTests/Tests/TestLogging.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/Test/NfcCxTests/Tests/TestLogging.cpp -------------------------------------------------------------------------------- /Test/NfcCxTests/Tests/TestLogging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/Test/NfcCxTests/Tests/TestLogging.h -------------------------------------------------------------------------------- /Test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/Test/README.md -------------------------------------------------------------------------------- /docs/State Machine.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/docs/State Machine.md -------------------------------------------------------------------------------- /inc/NciParsersLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/inc/NciParsersLib.h -------------------------------------------------------------------------------- /inc/NfcCx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/inc/NfcCx.h -------------------------------------------------------------------------------- /inc/NfcDTADev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/inc/NfcDTADev.h -------------------------------------------------------------------------------- /inc/NfcRadioDev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/inc/NfcRadioDev.h -------------------------------------------------------------------------------- /inc/NfcSEDev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/inc/NfcSEDev.h -------------------------------------------------------------------------------- /inc/WdfCxProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/inc/WdfCxProxy.h -------------------------------------------------------------------------------- /inc/tracecommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/inc/tracecommon.h -------------------------------------------------------------------------------- /libs/NciParsers/NciPacketParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NciParsers/NciPacketParser.cpp -------------------------------------------------------------------------------- /libs/NciParsers/NciParsers/NciParsers.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NciParsers/NciParsers/NciParsers.vcxproj -------------------------------------------------------------------------------- /libs/NciParsers/NciParsers/NciParsers.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NciParsers/NciParsers/NciParsers.vcxproj.filters -------------------------------------------------------------------------------- /libs/NciParsers/NciParsersLibPch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NciParsers/NciParsersLibPch.h -------------------------------------------------------------------------------- /libs/NfcCoreLib/inc/phFriNfc_NdefRecord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/inc/phFriNfc_NdefRecord.h -------------------------------------------------------------------------------- /libs/NfcCoreLib/inc/phFriNfc_SnepProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/inc/phFriNfc_SnepProtocol.h -------------------------------------------------------------------------------- /libs/NfcCoreLib/inc/phLibNfc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/inc/phLibNfc.h -------------------------------------------------------------------------------- /libs/NfcCoreLib/inc/phLibNfc_Snep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/inc/phLibNfc_Snep.h -------------------------------------------------------------------------------- /libs/NfcCoreLib/inc/phLibNfc_ioctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/inc/phLibNfc_ioctl.h -------------------------------------------------------------------------------- /libs/NfcCoreLib/inc/phNfcCompId.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/inc/phNfcCompId.h -------------------------------------------------------------------------------- /libs/NfcCoreLib/inc/phNfcConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/inc/phNfcConfig.h -------------------------------------------------------------------------------- /libs/NfcCoreLib/inc/phNfcHalTypes2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/inc/phNfcHalTypes2.h -------------------------------------------------------------------------------- /libs/NfcCoreLib/inc/phNfcInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/inc/phNfcInterface.h -------------------------------------------------------------------------------- /libs/NfcCoreLib/inc/phNfcLlcpTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/inc/phNfcLlcpTypes.h -------------------------------------------------------------------------------- /libs/NfcCoreLib/inc/phNfcStatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/inc/phNfcStatus.h -------------------------------------------------------------------------------- /libs/NfcCoreLib/inc/phNfcTraceEnums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/inc/phNfcTraceEnums.h -------------------------------------------------------------------------------- /libs/NfcCoreLib/inc/phNfcTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/inc/phNfcTypes.h -------------------------------------------------------------------------------- /libs/NfcCoreLib/inc/phNfcTypes_Mapping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/inc/phNfcTypes_Mapping.h -------------------------------------------------------------------------------- /libs/NfcCoreLib/inc/phOsalNfc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/inc/phOsalNfc.h -------------------------------------------------------------------------------- /libs/NfcCoreLib/inc/phOsalNfc_Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/inc/phOsalNfc_Timer.h -------------------------------------------------------------------------------- /libs/NfcCoreLib/inc/phTmlNfc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/inc/phTmlNfc.h -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/Fri/NfcCoreFri/NfcCoreFri.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/Fri/NfcCoreFri/NfcCoreFri.vcxproj -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/Fri/NfcCoreFri/NfcCoreFri.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/Fri/NfcCoreFri/NfcCoreFri.vcxproj.filters -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/Fri/phFriNfc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/Fri/phFriNfc.h -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/Fri/phFriNfc_DesfireFormat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/Fri/phFriNfc_DesfireFormat.c -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/Fri/phFriNfc_DesfireFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/Fri/phFriNfc_DesfireFormat.h -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/Fri/phFriNfc_DesfireMap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/Fri/phFriNfc_DesfireMap.c -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/Fri/phFriNfc_DesfireMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/Fri/phFriNfc_DesfireMap.h -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/Fri/phFriNfc_FelicaMap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/Fri/phFriNfc_FelicaMap.c -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/Fri/phFriNfc_FelicaMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/Fri/phFriNfc_FelicaMap.h -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/Fri/phFriNfc_ISO15693Format.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/Fri/phFriNfc_ISO15693Format.c -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/Fri/phFriNfc_ISO15693Format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/Fri/phFriNfc_ISO15693Format.h -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/Fri/phFriNfc_ISO15693Map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/Fri/phFriNfc_ISO15693Map.c -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/Fri/phFriNfc_ISO15693Map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/Fri/phFriNfc_ISO15693Map.h -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/Fri/phFriNfc_IntNdefMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/Fri/phFriNfc_IntNdefMap.h -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/Fri/phFriNfc_Llcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/Fri/phFriNfc_Llcp.c -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/Fri/phFriNfc_Llcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/Fri/phFriNfc_Llcp.h -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/Fri/phFriNfc_LlcpMac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/Fri/phFriNfc_LlcpMac.c -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/Fri/phFriNfc_LlcpMac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/Fri/phFriNfc_LlcpMac.h -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/Fri/phFriNfc_LlcpMacNfcip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/Fri/phFriNfc_LlcpMacNfcip.c -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/Fri/phFriNfc_LlcpMacNfcip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/Fri/phFriNfc_LlcpMacNfcip.h -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/Fri/phFriNfc_LlcpTransport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/Fri/phFriNfc_LlcpTransport.c -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/Fri/phFriNfc_LlcpTransport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/Fri/phFriNfc_LlcpTransport.h -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/Fri/phFriNfc_LlcpTransport_Connection.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/Fri/phFriNfc_LlcpTransport_Connection.c -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/Fri/phFriNfc_LlcpTransport_Connection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/Fri/phFriNfc_LlcpTransport_Connection.h -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/Fri/phFriNfc_LlcpTransport_Connectionless.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/Fri/phFriNfc_LlcpTransport_Connectionless.c -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/Fri/phFriNfc_LlcpTransport_Connectionless.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/Fri/phFriNfc_LlcpTransport_Connectionless.h -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/Fri/phFriNfc_LlcpUtils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/Fri/phFriNfc_LlcpUtils.c -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/Fri/phFriNfc_LlcpUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/Fri/phFriNfc_LlcpUtils.h -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/Fri/phFriNfc_MapTools.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/Fri/phFriNfc_MapTools.c -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/Fri/phFriNfc_MapTools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/Fri/phFriNfc_MapTools.h -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/Fri/phFriNfc_MifStdFormat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/Fri/phFriNfc_MifStdFormat.c -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/Fri/phFriNfc_MifStdFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/Fri/phFriNfc_MifStdFormat.h -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/Fri/phFriNfc_MifULFormat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/Fri/phFriNfc_MifULFormat.c -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/Fri/phFriNfc_MifULFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/Fri/phFriNfc_MifULFormat.h -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/Fri/phFriNfc_MifareStdMap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/Fri/phFriNfc_MifareStdMap.c -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/Fri/phFriNfc_MifareStdMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/Fri/phFriNfc_MifareStdMap.h -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/Fri/phFriNfc_MifareULMap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/Fri/phFriNfc_MifareULMap.c -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/Fri/phFriNfc_MifareULMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/Fri/phFriNfc_MifareULMap.h -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/Fri/phFriNfc_NdefMap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/Fri/phFriNfc_NdefMap.c -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/Fri/phFriNfc_NdefMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/Fri/phFriNfc_NdefMap.h -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/Fri/phFriNfc_NdefRecord.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/Fri/phFriNfc_NdefRecord.c -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/Fri/phFriNfc_NdefReg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/Fri/phFriNfc_NdefReg.c -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/Fri/phFriNfc_NdefReg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/Fri/phFriNfc_NdefReg.h -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/Fri/phFriNfc_OvrHal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/Fri/phFriNfc_OvrHal.c -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/Fri/phFriNfc_OvrHal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/Fri/phFriNfc_OvrHal.h -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/Fri/phFriNfc_Pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/Fri/phFriNfc_Pch.h -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/Fri/phFriNfc_SmtCrdFmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/Fri/phFriNfc_SmtCrdFmt.c -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/Fri/phFriNfc_SmtCrdFmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/Fri/phFriNfc_SmtCrdFmt.h -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/Fri/phFriNfc_SnepProtocol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/Fri/phFriNfc_SnepProtocol.c -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/Fri/phFriNfc_SnepProtocolUtility.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/Fri/phFriNfc_SnepProtocolUtility.c -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/Fri/phFriNfc_SnepProtocolUtility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/Fri/phFriNfc_SnepProtocolUtility.h -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/Fri/phFriNfc_TopazDynamicMap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/Fri/phFriNfc_TopazDynamicMap.c -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/Fri/phFriNfc_TopazFormat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/Fri/phFriNfc_TopazFormat.c -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/Fri/phFriNfc_TopazFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/Fri/phFriNfc_TopazFormat.h -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/Fri/phFriNfc_TopazMap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/Fri/phFriNfc_TopazMap.c -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/Fri/phFriNfc_TopazMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/Fri/phFriNfc_TopazMap.h -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/Inc/NfcCoreLibTracing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/Inc/NfcCoreLibTracing.h -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/LibNfc/NfcCoreLibNfc/NfcCoreLibNfc.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/LibNfc/NfcCoreLibNfc/NfcCoreLibNfc.vcxproj -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/LibNfc/NfcCoreLibNfc/NfcCoreLibNfc.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/LibNfc/NfcCoreLibNfc/NfcCoreLibNfc.vcxproj.filters -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/LibNfc/phHciNfc_Core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/LibNfc/phHciNfc_Core.c -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/LibNfc/phHciNfc_Core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/LibNfc/phHciNfc_Core.h -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/LibNfc/phHciNfc_CoreRxMemMgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/LibNfc/phHciNfc_CoreRxMemMgr.c -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/LibNfc/phHciNfc_CoreRxMemMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/LibNfc/phHciNfc_CoreRxMemMgr.h -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/LibNfc/phHciNfc_Interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/LibNfc/phHciNfc_Interface.h -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/LibNfc/phHciNfc_Pipe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/LibNfc/phHciNfc_Pipe.c -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/LibNfc/phHciNfc_Pipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/LibNfc/phHciNfc_Pipe.h -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/LibNfc/phLibNfc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/LibNfc/phLibNfc.c -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/LibNfc/phLibNfc_CeHost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/LibNfc/phLibNfc_CeHost.c -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/LibNfc/phLibNfc_CeHost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/LibNfc/phLibNfc_CeHost.h -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/LibNfc/phLibNfc_ContextMgmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/LibNfc/phLibNfc_ContextMgmt.c -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/LibNfc/phLibNfc_ContextMgmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/LibNfc/phLibNfc_ContextMgmt.h -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/LibNfc/phLibNfc_Deactivate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/LibNfc/phLibNfc_Deactivate.c -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/LibNfc/phLibNfc_Deactivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/LibNfc/phLibNfc_Deactivate.h -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/LibNfc/phLibNfc_Discovery.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/LibNfc/phLibNfc_Discovery.c -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/LibNfc/phLibNfc_Discovery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/LibNfc/phLibNfc_Discovery.h -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/LibNfc/phLibNfc_Hci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/LibNfc/phLibNfc_Hci.c -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/LibNfc/phLibNfc_Hci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/LibNfc/phLibNfc_Hci.h -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/LibNfc/phLibNfc_Init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/LibNfc/phLibNfc_Init.c -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/LibNfc/phLibNfc_Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/LibNfc/phLibNfc_Init.h -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/LibNfc/phLibNfc_Initiator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/LibNfc/phLibNfc_Initiator.c -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/LibNfc/phLibNfc_Initiator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/LibNfc/phLibNfc_Initiator.h -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/LibNfc/phLibNfc_Internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/LibNfc/phLibNfc_Internal.h -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/LibNfc/phLibNfc_InternalConnect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/LibNfc/phLibNfc_InternalConnect.c -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/LibNfc/phLibNfc_Ioctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/LibNfc/phLibNfc_Ioctl.c -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/LibNfc/phLibNfc_IoctlUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/LibNfc/phLibNfc_IoctlUtils.h -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/LibNfc/phLibNfc_Iso15693.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/LibNfc/phLibNfc_Iso15693.c -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/LibNfc/phLibNfc_Iso15693.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/LibNfc/phLibNfc_Iso15693.h -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/LibNfc/phLibNfc_Llcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/LibNfc/phLibNfc_Llcp.c -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/LibNfc/phLibNfc_Llcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/LibNfc/phLibNfc_Llcp.h -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/LibNfc/phLibNfc_Pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/LibNfc/phLibNfc_Pch.h -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/LibNfc/phLibNfc_Se.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/LibNfc/phLibNfc_Se.c -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/LibNfc/phLibNfc_Se.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/LibNfc/phLibNfc_Se.h -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/LibNfc/phLibNfc_Sequence.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/LibNfc/phLibNfc_Sequence.c -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/LibNfc/phLibNfc_Sequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/LibNfc/phLibNfc_Sequence.h -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/LibNfc/phLibNfc_Snep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/LibNfc/phLibNfc_Snep.c -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/LibNfc/phLibNfc_State.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/LibNfc/phLibNfc_State.c -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/LibNfc/phLibNfc_State.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/LibNfc/phLibNfc_State.h -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/LibNfc/phLibNfc_State_Functions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/LibNfc/phLibNfc_State_Functions.c -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/LibNfc/phLibNfc_Target.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/LibNfc/phLibNfc_Target.c -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/LibNfc/phLibNfc_Target.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/LibNfc/phLibNfc_Target.h -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/LibNfc/phLibNfc_Type1Tag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/LibNfc/phLibNfc_Type1Tag.c -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/LibNfc/phLibNfc_Type1Tag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/LibNfc/phLibNfc_Type1Tag.h -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/LibNfc/phLibNfc_ndef_raw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/LibNfc/phLibNfc_ndef_raw.c -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/LibNfc/phLibNfc_ndef_raw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/LibNfc/phLibNfc_ndef_raw.h -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/Nci/NfcCoreNci/NfcCoreNci.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/Nci/NfcCoreNci/NfcCoreNci.vcxproj -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/Nci/NfcCoreNci/NfcCoreNci.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/Nci/NfcCoreNci/NfcCoreNci.vcxproj.filters -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/Nci/phNciNfc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/Nci/phNciNfc.c -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/Nci/phNciNfc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/Nci/phNciNfc.h -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/Nci/phNciNfc_Common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/Nci/phNciNfc_Common.c -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/Nci/phNciNfc_Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/Nci/phNciNfc_Common.h -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/Nci/phNciNfc_Context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/Nci/phNciNfc_Context.c -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/Nci/phNciNfc_Context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/Nci/phNciNfc_Context.h -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/Nci/phNciNfc_Discovery.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/Nci/phNciNfc_Discovery.c -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/Nci/phNciNfc_Discovery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/Nci/phNciNfc_Discovery.h -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/Nci/phNciNfc_Init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/Nci/phNciNfc_Init.c -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/Nci/phNciNfc_Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/Nci/phNciNfc_Init.h -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/Nci/phNciNfc_Jewel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/Nci/phNciNfc_Jewel.c -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/Nci/phNciNfc_Jewel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/Nci/phNciNfc_Jewel.h -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/Nci/phNciNfc_ListenIsoDep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/Nci/phNciNfc_ListenIsoDep.c -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/Nci/phNciNfc_ListenIsoDep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/Nci/phNciNfc_ListenIsoDep.h -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/Nci/phNciNfc_ListenMgmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/Nci/phNciNfc_ListenMgmt.c -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/Nci/phNciNfc_ListenMgmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/Nci/phNciNfc_ListenMgmt.h -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/Nci/phNciNfc_ListenNfcDep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/Nci/phNciNfc_ListenNfcDep.c -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/Nci/phNciNfc_ListenNfcDep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/Nci/phNciNfc_ListenNfcDep.h -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/Nci/phNciNfc_LogicalConn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/Nci/phNciNfc_LogicalConn.c -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/Nci/phNciNfc_LogicalConn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/Nci/phNciNfc_LogicalConn.h -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/Nci/phNciNfc_NfcIMgmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/Nci/phNciNfc_NfcIMgmt.c -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/Nci/phNciNfc_NfcIMgmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/Nci/phNciNfc_NfcIMgmt.h -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/Nci/phNciNfc_NfceeMgmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/Nci/phNciNfc_NfceeMgmt.c -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/Nci/phNciNfc_NfceeMgmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/Nci/phNciNfc_NfceeMgmt.h -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/Nci/phNciNfc_Pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/Nci/phNciNfc_Pch.h -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/Nci/phNciNfc_PollMgmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/Nci/phNciNfc_PollMgmt.c -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/Nci/phNciNfc_PollMgmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/Nci/phNciNfc_PollMgmt.h -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/Nci/phNciNfc_PollNfcDep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/Nci/phNciNfc_PollNfcDep.c -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/Nci/phNciNfc_PollNfcDep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/Nci/phNciNfc_PollNfcDep.h -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/Nci/phNciNfc_RFReader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/Nci/phNciNfc_RFReader.c -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/Nci/phNciNfc_RFReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/Nci/phNciNfc_RFReader.h -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/Nci/phNciNfc_RFReader4A.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/Nci/phNciNfc_RFReader4A.c -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/Nci/phNciNfc_RFReader4A.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/Nci/phNciNfc_RFReader4A.h -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/Nci/phNciNfc_RFReader4B.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/Nci/phNciNfc_RFReader4B.c -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/Nci/phNciNfc_RFReader4B.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/Nci/phNciNfc_RFReader4B.h -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/Nci/phNciNfc_RFReaderA.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/Nci/phNciNfc_RFReaderA.c -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/Nci/phNciNfc_RFReaderA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/Nci/phNciNfc_RFReaderA.h -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/Nci/phNciNfc_RFReaderB.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/Nci/phNciNfc_RFReaderB.c -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/Nci/phNciNfc_RFReaderB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/Nci/phNciNfc_RFReaderB.h -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/Nci/phNciNfc_RFReaderFelica.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/Nci/phNciNfc_RFReaderFelica.c -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/Nci/phNciNfc_RFReaderFelica.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/Nci/phNciNfc_RFReaderFelica.h -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/Nci/phNciNfc_RFReaderIso15693.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/Nci/phNciNfc_RFReaderIso15693.c -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/Nci/phNciNfc_RFReaderIso15693.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/Nci/phNciNfc_RFReaderIso15693.h -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/Nci/phNciNfc_RFReaderMifare.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/Nci/phNciNfc_RFReaderMifare.c -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/Nci/phNciNfc_RFReaderMifare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/Nci/phNciNfc_RFReaderMifare.h -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/Nci/phNciNfc_RfConfig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/Nci/phNciNfc_RfConfig.c -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/Nci/phNciNfc_RfConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/Nci/phNciNfc_RfConfig.h -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/Nci/phNciNfc_Sequence.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/Nci/phNciNfc_Sequence.c -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/Nci/phNciNfc_Sequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/Nci/phNciNfc_Sequence.h -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/Nci/phNciNfc_Utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/Nci/phNciNfc_Utils.c -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/Nci/phNciNfc_Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/Nci/phNciNfc_Utils.h -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/NciCore/NfcCoreNciCore/NfcCoreNciCore.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/NciCore/NfcCoreNciCore/NfcCoreNciCore.vcxproj -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/NciCore/NfcCoreNciCore/NfcCoreNciCore.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/NciCore/NfcCoreNciCore/NfcCoreNciCore.vcxproj.filters -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/NciCore/phNciNfcTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/NciCore/phNciNfcTypes.h -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/NciCore/phNciNfc_Core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/NciCore/phNciNfc_Core.c -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/NciCore/phNciNfc_Core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/NciCore/phNciNfc_Core.h -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/NciCore/phNciNfc_CoreIf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/NciCore/phNciNfc_CoreIf.c -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/NciCore/phNciNfc_CoreIf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/NciCore/phNciNfc_CoreIf.h -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/NciCore/phNciNfc_CoreMemMgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/NciCore/phNciNfc_CoreMemMgr.c -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/NciCore/phNciNfc_CoreMemMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/NciCore/phNciNfc_CoreMemMgr.h -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/NciCore/phNciNfc_CorePch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/NciCore/phNciNfc_CorePch.h -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/NciCore/phNciNfc_CoreRecv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/NciCore/phNciNfc_CoreRecv.c -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/NciCore/phNciNfc_CoreRecv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/NciCore/phNciNfc_CoreRecv.h -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/NciCore/phNciNfc_CoreRecvMgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/NciCore/phNciNfc_CoreRecvMgr.c -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/NciCore/phNciNfc_CoreRecvMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/NciCore/phNciNfc_CoreRecvMgr.h -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/NciCore/phNciNfc_CoreSend.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/NciCore/phNciNfc_CoreSend.c -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/NciCore/phNciNfc_CoreSend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/NciCore/phNciNfc_CoreSend.h -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/NciCore/phNciNfc_CoreStatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/NciCore/phNciNfc_CoreStatus.h -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/NciCore/phNciNfc_CoreUtils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/NciCore/phNciNfc_CoreUtils.c -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/NciCore/phNciNfc_CoreUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/NciCore/phNciNfc_CoreUtils.h -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/NciCore/phNciNfc_DbgDescription.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/NciCore/phNciNfc_DbgDescription.c -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/NciCore/phNciNfc_DbgDescription.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/NciCore/phNciNfc_DbgDescription.h -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/NciCore/phNciNfc_LoglConnMgmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/NciCore/phNciNfc_LoglConnMgmt.c -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/NciCore/phNciNfc_LoglConnMgmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/NciCore/phNciNfc_LoglConnMgmt.h -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/NciCore/phNciNfc_State.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/NciCore/phNciNfc_State.h -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/NciCore/phNciNfc_TlvUtils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/NciCore/phNciNfc_TlvUtils.c -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/NciCore/phNciNfc_TlvUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/NciCore/phNciNfc_TlvUtils.h -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/Osal/NfcCoreOsal/NfcCoreOsal.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/Osal/NfcCoreOsal/NfcCoreOsal.vcxproj -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/Osal/NfcCoreOsal/NfcCoreOsal.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/Osal/NfcCoreOsal/NfcCoreOsal.vcxproj.filters -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/Osal/phOsalNfc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/Osal/phOsalNfc.c -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/Osal/phOsalNfc_Internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/Osal/phOsalNfc_Internal.h -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/Osal/phOsalNfc_MsgQueue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/Osal/phOsalNfc_MsgQueue.c -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/Osal/phOsalNfc_Pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/Osal/phOsalNfc_Pch.h -------------------------------------------------------------------------------- /libs/NfcCoreLib/lib/Osal/phOsalNfc_Timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/NfcCoreLib/lib/Osal/phOsalNfc_Timer.c -------------------------------------------------------------------------------- /libs/Proximity/inc/NfcProximityBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/Proximity/inc/NfcProximityBuffer.h -------------------------------------------------------------------------------- /libs/Proximity/lib/NfcProximity/NfcProximity.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/Proximity/lib/NfcProximity/NfcProximity.vcxproj -------------------------------------------------------------------------------- /libs/Proximity/lib/NfcProximity/NfcProximity.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/Proximity/lib/NfcProximity/NfcProximity.vcxproj.filters -------------------------------------------------------------------------------- /libs/Proximity/lib/NfcProximityBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/Proximity/lib/NfcProximityBuffer.cpp -------------------------------------------------------------------------------- /libs/Proximity/lib/Pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/Proximity/lib/Pch.h -------------------------------------------------------------------------------- /libs/SmartCard/inc/StorageClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/SmartCard/inc/StorageClass.h -------------------------------------------------------------------------------- /libs/SmartCard/inc/StorageClassFelica.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/SmartCard/inc/StorageClassFelica.h -------------------------------------------------------------------------------- /libs/SmartCard/inc/StorageClassISO15693.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/SmartCard/inc/StorageClassISO15693.h -------------------------------------------------------------------------------- /libs/SmartCard/inc/StorageClassJewel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/SmartCard/inc/StorageClassJewel.h -------------------------------------------------------------------------------- /libs/SmartCard/inc/StorageClassLoadKey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/SmartCard/inc/StorageClassLoadKey.h -------------------------------------------------------------------------------- /libs/SmartCard/inc/StorageClassMifare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/SmartCard/inc/StorageClassMifare.h -------------------------------------------------------------------------------- /libs/SmartCard/inc/StorageClassMifareStd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/SmartCard/inc/StorageClassMifareStd.h -------------------------------------------------------------------------------- /libs/SmartCard/lib/NfcSmartCard/NfcSmartCard.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/SmartCard/lib/NfcSmartCard/NfcSmartCard.vcxproj -------------------------------------------------------------------------------- /libs/SmartCard/lib/NfcSmartCard/NfcSmartCard.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/SmartCard/lib/NfcSmartCard/NfcSmartCard.vcxproj.filters -------------------------------------------------------------------------------- /libs/SmartCard/lib/Pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/SmartCard/lib/Pch.h -------------------------------------------------------------------------------- /libs/SmartCard/lib/StorageClassFelica.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/SmartCard/lib/StorageClassFelica.cpp -------------------------------------------------------------------------------- /libs/SmartCard/lib/StorageClassISO15693.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/SmartCard/lib/StorageClassISO15693.cpp -------------------------------------------------------------------------------- /libs/SmartCard/lib/StorageClassJewel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/SmartCard/lib/StorageClassJewel.cpp -------------------------------------------------------------------------------- /libs/SmartCard/lib/StorageClassLoadKey.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/SmartCard/lib/StorageClassLoadKey.cpp -------------------------------------------------------------------------------- /libs/SmartCard/lib/StorageClassMifare.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/SmartCard/lib/StorageClassMifare.cpp -------------------------------------------------------------------------------- /libs/SmartCard/lib/StorageClassMifareStd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/libs/SmartCard/lib/StorageClassMifareStd.cpp -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/NFC-Class-Extension-Driver/HEAD/license.txt --------------------------------------------------------------------------------