├── .gitignore ├── Global ├── FileHash │ ├── .gitignore │ ├── AssemblyInfo.cs │ ├── DataBlock.cs │ ├── FileHash.csproj │ └── FileHashDB.cs ├── MetaData │ ├── AssemblyInfo.cs │ ├── Finder.cs │ └── Metadata.csproj ├── UPNPAVCDSML │ ├── .gitignore │ ├── Accumulator_ContainerUpdateIDs.cs │ ├── AssemblyInfo.cs │ ├── AvsExceptions.cs │ ├── BlankObject.cs │ ├── CdsMetadataCaches.cs │ ├── CreateClass.cs │ ├── ICdsElement.cs │ ├── IMediaResource.cs │ ├── IUPnPMedia.cs │ ├── IValueType.cs │ ├── ImageDimensions.cs │ ├── InnerXmlWriter.cs │ ├── MediaBuilder.cs │ ├── MediaClass.cs │ ├── MediaComparer.cs │ ├── MediaComparer2.cs │ ├── MediaContainer.cs │ ├── MediaEnums.cs │ ├── MediaItem.cs │ ├── MediaObject.cs │ ├── MediaProperties.cs │ ├── MediaResource.cs │ ├── MediaSorter.cs │ ├── MediaSorter2.cs │ ├── MetadataValueComparer.cs │ ├── MimeTypes.cs │ ├── PreventNullCast.cs │ ├── PropertyBool.cs │ ├── PropertyDate.cs │ ├── PropertyDateTime.cs │ ├── PropertyEnumWriteStatus.cs │ ├── PropertyInt.cs │ ├── PropertyLanguage.cs │ ├── PropertyLong.cs │ ├── PropertyMappings.cs │ ├── PropertyPersonWithRole.cs │ ├── PropertyStorageMedium.cs │ ├── PropertyString.cs │ ├── PropertyUInt.cs │ ├── PropertyULong.cs │ ├── PropertyUri.cs │ ├── ProtocolInfoString.cs │ ├── ResourceBuilder.cs │ ├── SearchClass.cs │ ├── SortedObjectCache.cs │ ├── StorageMediums.cs │ ├── TagExtractor.cs │ ├── Tags.cs │ ├── ToXmlData.cs │ ├── ToXmlFormatter.cs │ ├── UPNPAVCDSML.sln │ ├── UPnPAVCDSML.csproj │ ├── _ArrayList.cs │ ├── _DateTime.cs │ ├── _Hashtable.cs │ ├── _Int.cs │ ├── _Long.cs │ ├── _SortedList.cs │ ├── _TimeSpan.cs │ ├── _UInt.cs │ └── _ULong.cs ├── UPNPAVMSCP │ ├── .gitignore │ ├── AssemblyInfo.cs │ ├── AvsCpExceptions.cs │ ├── BrowseRequest.cs │ ├── CdsBrowser.cs │ ├── CdsSpider.cs │ ├── ContainerDiscovery.cs │ ├── CpMediaBuilder.cs │ ├── CpMediaContainer.cs │ ├── CpMediaItem.cs │ ├── CpMediaResource.cs │ ├── CpMediaServer.cs │ ├── CpResourceBuilder.cs │ ├── CpRootCollectionContainer.cs │ ├── CpRootContainer.cs │ ├── ICpMedia.cs │ ├── MediaBrowser.cs │ ├── MediaServerDiscovery.cs │ ├── Requests.cs │ ├── ResourceTransfer.cs │ ├── ServerBrowser.cs │ ├── UPNPAVMSCP.sln │ └── UPnPAVMSCP.csproj ├── UPNPAVMSDV │ ├── .gitignore │ ├── AssemblyInfo.cs │ ├── AvsDvExceptions.cs │ ├── DeviceInfo.cs │ ├── DvMediaBuilder.cs │ ├── DvMediaContainer.cs │ ├── DvMediaItem.cs │ ├── DvMediaReference.cs │ ├── DvMediaResource.cs │ ├── DvResourceBuilder.cs │ ├── DvRootContainer.cs │ ├── IDvMedia.cs │ ├── InnerXmlWriterDv.cs │ ├── MediaServerDevice.cs │ ├── ToXmlDataDv.cs │ ├── UPNPAVMSDV.sln │ └── UPnPAVMSDV.csproj ├── UPNPAV_DeviceRendererStack │ ├── .gitignore │ ├── AVConnection.cs │ ├── AVRenderer.cs │ ├── AssemblyInfo.cs │ ├── InstanceID_LastChangeAccumulator.cs │ ├── UPNPAV_DeviceRendererStack.sln │ └── UPnPAV_DeviceRendererStack.csproj ├── UPNPAV_RendererStack │ ├── .gitignore │ ├── AVConnection.cs │ ├── AVPlayList.cs │ ├── AVRenderer.cs │ ├── AVRendererDiscovery.cs │ ├── AVTargetDiscovery.cs │ ├── AVTransportLastChange.cs │ ├── AssemblyInfo.cs │ ├── CpAVTransport.cs │ ├── CpConnectionManager.cs │ ├── CpRenderingControl.cs │ ├── RenderingControlLastChange.cs │ ├── UPNPAV_RendererStack.sln │ └── UPnPAV_RendererStack.csproj ├── UPNP_AV │ ├── .gitignore │ ├── AssemblyInfo.cs │ ├── CpAVTransport.cs │ ├── CpConnectionManager.cs │ ├── CpContentDirectory.cs │ ├── CpRenderingControl.cs │ ├── DvAVTransport.cs │ ├── DvConnectionManager.cs │ ├── DvContentDirectory.cs │ ├── DvRenderingControl.cs │ ├── UPNPAV.sln │ └── UPnPAV.csproj ├── UPnP │ ├── AssemblyInfo.cs │ ├── AsyncSocket.cs │ ├── AutoUpdate.cs │ ├── AutoUpdate.designer.cs │ ├── AutoUpdate.resx │ ├── Base64.cs │ ├── CircleStream.cs │ ├── DText.cs │ ├── EventLogger.cs │ ├── ExceptionForm.cs │ ├── ExceptionForm.resx │ ├── HTTPMessage.cs │ ├── HTTPRequest.cs │ ├── HTTPSession.cs │ ├── HTTPSessionWatcher.cs │ ├── HttpRequestor.cs │ ├── InstanceTracker.cs │ ├── InstanceTracker.resx │ ├── InstanceTracker2.cs │ ├── InstanceTracker2.resx │ ├── LifeTimeMonitor.cs │ ├── MiniWebServer.cs │ ├── NetworkInfo.cs │ ├── Protocols.cs │ ├── Resilience.txt │ ├── SSDP.cs │ ├── SafeTimer.cs │ ├── SafeTimer_SINGLE.cs │ ├── ServiceDescription.cs │ ├── ServiceGenerator.cs │ ├── StringCompresser.cs │ ├── SyncInvokeAdapter.cs │ ├── UPnP.csproj │ ├── UPnP.sln │ ├── UPnPComplexType.cs │ ├── UPnPControlPoint.cs │ ├── UPnPDebugObject.cs │ ├── UPnPDevice.cs │ ├── UPnPDeviceFactory.cs │ ├── UPnPDeviceWatcher.cs │ ├── UPnPInternalSmartControlPoint.cs │ ├── UPnPModeratedStateVariable.cs │ ├── UPnPProxyDevice.cs │ ├── UPnPService.cs │ ├── UPnPServiceWatcher.cs │ ├── UPnPSmartControlPoint.cs │ ├── UPnPStringFormatter.cs │ ├── UnsafeTimer.cs │ ├── Utils.cs │ ├── WeakEvent.cs │ ├── __LockRMWO.cs │ └── __ReadOnlyCollections.cs └── ValidatorInterfaces │ ├── AssemblyInfo.cs │ ├── DeviceScriptorInterface.cs │ ├── DeviceValidatorPluginInterfaces.csproj │ └── IUPnPTest.cs ├── README.txt ├── Samples ├── DeviceProtectionSample.doc ├── DeviceProtectionSample │ ├── CPControlPoint.c │ ├── CPControlPoint.h │ ├── DPServerInfo.cpp │ ├── DPServerInfo.h │ ├── DPTest.cpp │ ├── DVMicroStack.c │ ├── DVMicroStack.h │ ├── DataTypes.h │ ├── DeviceProtection.xml │ ├── ILibAsyncServerSocket.c │ ├── ILibAsyncServerSocket.h │ ├── ILibAsyncSocket.c │ ├── ILibAsyncSocket.h │ ├── ILibAsyncUDPSocket.c │ ├── ILibAsyncUDPSocket.h │ ├── ILibParsers.c │ ├── ILibParsers.h │ ├── ILibSSDPClient.c │ ├── ILibSSDPClient.h │ ├── ILibWebClient.c │ ├── ILibWebClient.h │ ├── ILibWebServer.c │ ├── ILibWebServer.h │ ├── Main.cpp │ ├── Portability.c │ ├── Portability.h │ ├── ProtoUtils.cpp │ ├── RegProtoMsgs.cpp │ ├── RegProtoTlv.cpp │ ├── RegProtoTlv.h │ ├── RegProtocol.cpp │ ├── RegProtocol.h │ ├── StateMachineInfo.h │ ├── UPnPControlPointStructs.h │ ├── UPnPSample.sln │ ├── UPnPSample.vcproj │ ├── UPnPSample.vcxproj │ ├── UPnPSample.vcxproj.filters │ ├── WPSEnrollee.cpp │ ├── WPSRegistrar.cpp │ ├── WscCommon.h │ ├── WscError.h │ ├── WscHeaders.h │ ├── WscTlvBase.cpp │ ├── WscTlvBase.h │ ├── WscTypes.h │ ├── regprotomsgs.h │ ├── slist.c │ ├── slist.h │ ├── stdafx.cpp │ ├── stdafx.h │ ├── tutrace.cpp │ ├── tutrace.h │ ├── utils.c │ ├── utils.h │ ├── wpsenrollee.h │ └── wpsregistrar.h ├── EmbeddedSamples │ ├── Device Scanner │ │ ├── Device Scanner.upnpsg │ │ ├── PocketPC │ │ │ ├── ARMRel │ │ │ │ └── DeviceScannerPPC.exe │ │ │ ├── DeviceScannerPPC.cpp │ │ │ ├── DeviceScannerPPC.h │ │ │ ├── DeviceScannerPPC.rc │ │ │ ├── DeviceScannerPPC.vcl │ │ │ ├── DeviceScannerPPC.vco │ │ │ ├── DeviceScannerPPC.vcp │ │ │ ├── DeviceScannerPPC.vcw │ │ │ ├── DeviceScannerPPCDlg.cpp │ │ │ ├── DeviceScannerPPCDlg.h │ │ │ ├── ILibHTTPClient.c │ │ │ ├── ILibHTTPClient.h │ │ │ ├── ILibMiniWebServer.c │ │ │ ├── ILibMiniWebServer.h │ │ │ ├── ILibParsers.c │ │ │ ├── ILibParsers.h │ │ │ ├── ILibSSDPClient.c │ │ │ ├── ILibSSDPClient.h │ │ │ ├── Media │ │ │ │ ├── Computer16.bmp │ │ │ │ ├── Computer24.bmp │ │ │ │ ├── Device16.bmp │ │ │ │ ├── Device24.bmp │ │ │ │ ├── Folder16-1.bmp │ │ │ │ ├── Folder16-2.bmp │ │ │ │ ├── Folder24-1.bmp │ │ │ │ ├── Folder24-2.bmp │ │ │ │ ├── Method16-3.bmp │ │ │ │ ├── Method24-3.bmp │ │ │ │ ├── Service16-2.bmp │ │ │ │ ├── Service16-3.bmp │ │ │ │ ├── Service24-2.bmp │ │ │ │ ├── Service24-3.bmp │ │ │ │ ├── UPnP-Spy.ico │ │ │ │ ├── Variable16-2.bmp │ │ │ │ ├── Variable24-2.bmp │ │ │ │ └── icon1.ico │ │ │ ├── ReadMe.txt │ │ │ ├── StdAfx.cpp │ │ │ ├── StdAfx.h │ │ │ ├── UPnPControlPoint.c │ │ │ ├── UPnPControlPoint.h │ │ │ ├── newres.h │ │ │ ├── res │ │ │ │ ├── DeviceScannerPPC.ico │ │ │ │ └── DeviceScannerPPC.rc2 │ │ │ └── resource.h │ │ └── Win32 │ │ │ ├── DeviceScanner.cpp │ │ │ ├── DeviceScanner.h │ │ │ ├── DeviceScanner.rc │ │ │ ├── DeviceScanner.sln │ │ │ ├── DeviceScanner.vcproj │ │ │ ├── DeviceScannerDlg.cpp │ │ │ ├── DeviceScannerDlg.h │ │ │ ├── ILibHTTPClient.c │ │ │ ├── ILibHTTPClient.h │ │ │ ├── ILibMiniWebServer.c │ │ │ ├── ILibMiniWebServer.h │ │ │ ├── ILibParsers.c │ │ │ ├── ILibParsers.h │ │ │ ├── ILibSSDPClient.c │ │ │ ├── ILibSSDPClient.h │ │ │ ├── Media │ │ │ ├── Computer16.bmp │ │ │ ├── Computer24.bmp │ │ │ ├── Device16.bmp │ │ │ ├── Device24.bmp │ │ │ ├── Folder16-1.bmp │ │ │ ├── Folder16-2.bmp │ │ │ ├── Folder24-1.bmp │ │ │ ├── Folder24-2.bmp │ │ │ ├── Method16-3.bmp │ │ │ ├── Method24-3.bmp │ │ │ ├── Service16-2.bmp │ │ │ ├── Service16-3.bmp │ │ │ ├── Service24-2.bmp │ │ │ ├── Service24-3.bmp │ │ │ ├── UPnP-Spy.ico │ │ │ ├── Variable16-2.bmp │ │ │ └── Variable24-2.bmp │ │ │ ├── ReadMe.txt │ │ │ ├── Release │ │ │ └── DeviceScanner.exe │ │ │ ├── UPnPControlPoint.c │ │ │ ├── UPnPControlPoint.h │ │ │ ├── res │ │ │ ├── DeviceScanner.ico │ │ │ ├── DeviceScanner.manifest │ │ │ └── DeviceScanner.rc2 │ │ │ ├── resource.h │ │ │ ├── stdafx.cpp │ │ │ └── stdafx.h │ ├── Embedded Source Code │ │ ├── CDS Control Point - POSIX │ │ │ ├── ILibHTTPClient.c │ │ │ ├── ILibHTTPClient.h │ │ │ ├── ILibMiniWebServer.c │ │ │ ├── ILibMiniWebServer.h │ │ │ ├── ILibParsers.c │ │ │ ├── ILibParsers.h │ │ │ ├── ILibSSDPClient.c │ │ │ ├── ILibSSDPClient.h │ │ │ ├── Main.c │ │ │ ├── RNDControlPoint.c │ │ │ ├── RNDControlPoint.h │ │ │ └── makefile │ │ ├── CDS Control Point - Windows │ │ │ ├── ILibHTTPClient.c │ │ │ ├── ILibHTTPClient.h │ │ │ ├── ILibMiniWebServer.c │ │ │ ├── ILibMiniWebServer.h │ │ │ ├── ILibParsers.c │ │ │ ├── ILibParsers.h │ │ │ ├── ILibSSDPClient.c │ │ │ ├── ILibSSDPClient.h │ │ │ ├── Main.c │ │ │ ├── RNDControlPoint.c │ │ │ ├── RNDControlPoint.h │ │ │ ├── UPnPSample.sln │ │ │ ├── UPnPSample.vcproj │ │ │ ├── stdafx.cpp │ │ │ └── stdafx.h │ │ ├── CDS Device - POSIX │ │ │ ├── ILibHTTPClient.c │ │ │ ├── ILibHTTPClient.h │ │ │ ├── ILibParsers.c │ │ │ ├── ILibParsers.h │ │ │ ├── Main.c │ │ │ ├── UPnPMicroStack.c │ │ │ ├── UPnPMicroStack.h │ │ │ └── makefile │ │ ├── CDS Device - Windows │ │ │ ├── ILibHTTPClient.c │ │ │ ├── ILibHTTPClient.h │ │ │ ├── ILibParsers.c │ │ │ ├── ILibParsers.h │ │ │ ├── Main.c │ │ │ ├── UPnPMicroStack.c │ │ │ ├── UPnPMicroStack.h │ │ │ ├── UPnPSample.sln │ │ │ ├── UPnPSample.vcproj │ │ │ ├── stdafx.cpp │ │ │ └── stdafx.h │ │ ├── Renderer Control Point - POSIX │ │ │ ├── ILibHTTPClient.c │ │ │ ├── ILibHTTPClient.h │ │ │ ├── ILibMiniWebServer.c │ │ │ ├── ILibMiniWebServer.h │ │ │ ├── ILibParsers.c │ │ │ ├── ILibParsers.h │ │ │ ├── ILibSSDPClient.c │ │ │ ├── ILibSSDPClient.h │ │ │ ├── Main.c │ │ │ ├── RNDControlPoint.c │ │ │ ├── RNDControlPoint.h │ │ │ └── makefile │ │ ├── Renderer Control Point - Windows │ │ │ ├── ILibHTTPClient.c │ │ │ ├── ILibHTTPClient.h │ │ │ ├── ILibMiniWebServer.c │ │ │ ├── ILibMiniWebServer.h │ │ │ ├── ILibParsers.c │ │ │ ├── ILibParsers.h │ │ │ ├── ILibSSDPClient.c │ │ │ ├── ILibSSDPClient.h │ │ │ ├── Main.c │ │ │ ├── RNDControlPoint.c │ │ │ ├── RNDControlPoint.h │ │ │ ├── UPnPSample.sln │ │ │ ├── UPnPSample.vcproj │ │ │ ├── stdafx.cpp │ │ │ └── stdafx.h │ │ ├── Renderer Device - POSIX │ │ │ ├── ILibHTTPClient.c │ │ │ ├── ILibHTTPClient.h │ │ │ ├── ILibParsers.c │ │ │ ├── ILibParsers.h │ │ │ ├── Main.c │ │ │ ├── UPnPMicroStack.c │ │ │ ├── UPnPMicroStack.h │ │ │ └── makefile │ │ └── Renderer Device - Windows │ │ │ ├── ILibHTTPClient.c │ │ │ ├── ILibHTTPClient.h │ │ │ ├── ILibParsers.c │ │ │ ├── ILibParsers.h │ │ │ ├── Main.c │ │ │ ├── UPnPMicroStack.c │ │ │ ├── UPnPMicroStack.h │ │ │ ├── UPnPSample.sln │ │ │ ├── UPnPSample.vcproj │ │ │ ├── stdafx.cpp │ │ │ └── stdafx.h │ ├── Light Bulb Device │ │ ├── Intel UPnP Light.upnpsg │ │ ├── PocketPC │ │ │ ├── ARMRel │ │ │ │ └── Micro Light.exe │ │ │ ├── ILibHTTPClient.c │ │ │ ├── ILibHTTPClient.h │ │ │ ├── ILibParsers.c │ │ │ ├── ILibParsers.h │ │ │ ├── Intel Labs2.bmp │ │ │ ├── Main.c │ │ │ ├── ReadMe.txt │ │ │ ├── StdAfx.cpp │ │ │ ├── StdAfx.h │ │ │ ├── UPnP Light.cpp │ │ │ ├── UPnP Light.h │ │ │ ├── UPnP Light.rc │ │ │ ├── UPnP Light.vcl │ │ │ ├── UPnP Light.vco │ │ │ ├── UPnP Light.vcp │ │ │ ├── UPnP Light.vcw │ │ │ ├── UPnPLight.ico │ │ │ ├── UPnPMain.c │ │ │ ├── UPnPMicroStack.c │ │ │ ├── UPnPMicroStack.h │ │ │ ├── newres.h │ │ │ └── resource.h │ │ ├── Win32 │ │ │ ├── ILibHTTPClient.c │ │ │ ├── ILibHTTPClient.h │ │ │ ├── ILibParsers.c │ │ │ ├── ILibParsers.h │ │ │ ├── Intel Labs2.bmp │ │ │ ├── Intel Labs3.bmp │ │ │ ├── Light Bulb Small.ico │ │ │ ├── Light Bulb.cpp │ │ │ ├── Light Bulb.h │ │ │ ├── Light Bulb.ico │ │ │ ├── Light Bulb.rc │ │ │ ├── Light Bulb.sln │ │ │ ├── Light Bulb.vcproj │ │ │ ├── Main.c │ │ │ ├── Release │ │ │ │ └── Light Bulb.exe │ │ │ ├── Thumbs.db │ │ │ ├── UPnPMicroStack.c │ │ │ ├── UPnPMicroStack.h │ │ │ ├── resource.h │ │ │ ├── stdafx.cpp │ │ │ └── stdafx.h │ │ └── lib │ │ │ ├── winsock_arm.lib │ │ │ └── winsock_x86.lib │ ├── Micro AV Media Browser │ │ ├── Media │ │ │ ├── Micro Media Browser PPC.ico │ │ │ ├── Micro Media Browser.ico │ │ │ └── Thumbs.db │ │ ├── MediaBrowser │ │ │ ├── ILibHTTPClient.c │ │ │ ├── ILibHTTPClient.h │ │ │ ├── ILibMiniWebServer.c │ │ │ ├── ILibMiniWebServer.h │ │ │ ├── ILibParsers.c │ │ │ ├── ILibParsers.h │ │ │ ├── ILibSSDPClient.c │ │ │ ├── ILibSSDPClient.h │ │ │ ├── MSCPControlPoint.c │ │ │ ├── MSCPControlPoint.h │ │ │ ├── Media │ │ │ │ ├── Device16.bmp │ │ │ │ ├── Document16.bmp │ │ │ │ ├── Folder16-1.bmp │ │ │ │ ├── Folder16-2.bmp │ │ │ │ ├── Thumbs.db │ │ │ │ └── Video16.bmp │ │ │ ├── MediaBrowser.cpp │ │ │ ├── MediaBrowser.h │ │ │ ├── MediaBrowser.rc │ │ │ ├── MediaBrowser.sln │ │ │ ├── MediaBrowser.vcproj │ │ │ ├── MediaBrowserDlg.cpp │ │ │ ├── MediaBrowserDlg.h │ │ │ ├── ReadMe.txt │ │ │ ├── Thumbs.db │ │ │ ├── res │ │ │ │ ├── MediaBrowser.ico │ │ │ │ ├── MediaBrowser.manifest │ │ │ │ ├── MediaBrowser.rc2 │ │ │ │ └── Micro Media Browser PPC.ico │ │ │ ├── resource.h │ │ │ ├── stdafx.cpp │ │ │ └── stdafx.h │ │ ├── MediaBrowserPPC │ │ │ ├── ILibHTTPClient.c │ │ │ ├── ILibHTTPClient.h │ │ │ ├── ILibMiniWebServer.c │ │ │ ├── ILibMiniWebServer.h │ │ │ ├── ILibParsers.c │ │ │ ├── ILibParsers.h │ │ │ ├── ILibSSDPClient.c │ │ │ ├── ILibSSDPClient.h │ │ │ ├── MSCPControlPoint.c │ │ │ ├── MSCPControlPoint.h │ │ │ ├── Main.c │ │ │ ├── Media │ │ │ │ ├── Device16.bmp │ │ │ │ ├── Document16.bmp │ │ │ │ ├── Folder16-1.bmp │ │ │ │ ├── Folder16-2.bmp │ │ │ │ ├── Thumbs.db │ │ │ │ └── Video16.bmp │ │ │ ├── MediaBrowserPPC.aps │ │ │ ├── MediaBrowserPPC.cpp │ │ │ ├── MediaBrowserPPC.h │ │ │ ├── MediaBrowserPPC.rc │ │ │ ├── MediaBrowserPPC.vcb │ │ │ ├── MediaBrowserPPC.vcl │ │ │ ├── MediaBrowserPPC.vco │ │ │ ├── MediaBrowserPPC.vcp │ │ │ ├── MediaBrowserPPC.vcw │ │ │ ├── MediaBrowserPPCDlg.cpp │ │ │ ├── MediaBrowserPPCDlg.h │ │ │ ├── ReadMe.txt │ │ │ ├── StdAfx.cpp │ │ │ ├── StdAfx.h │ │ │ ├── newres.h │ │ │ ├── res │ │ │ │ ├── MediaBrowserPPC.ico │ │ │ │ ├── MediaBrowserPPC.rc2 │ │ │ │ └── Micro Media Browser PPC.ico │ │ │ ├── resource.h │ │ │ └── winsock_arm.lib │ │ ├── MmsCp.c │ │ ├── MmsCp.h │ │ ├── MyString.c │ │ ├── MyString.h │ │ ├── Settings │ │ │ ├── ContentDirectory-BrowseOnly.xml │ │ │ ├── ContentDirectory-Full.xml │ │ │ ├── Intel AV Media Server Limited.upnpsg │ │ │ └── Intel Media Browser - Browse Only.upnpsg │ │ └── Thumbs.db │ ├── Micro Av Renderer │ │ ├── CodecWrapper.c │ │ ├── CodecWrapper.h │ │ ├── DeviceBuilder │ │ │ ├── AVTransport.xml │ │ │ ├── ConnectionManager.xml │ │ │ ├── MMR-PocketPC.upnpsg │ │ │ ├── MMR-Posix.upnpsg │ │ │ ├── MMR-Win32-WSock1.upnpsg │ │ │ ├── MMR-Win32-WSock2.upnpsg │ │ │ ├── PocketPC │ │ │ │ ├── ILibAsyncServerSocket.c │ │ │ │ ├── ILibAsyncServerSocket.h │ │ │ │ ├── ILibAsyncSocket.c │ │ │ │ ├── ILibAsyncSocket.h │ │ │ │ ├── ILibParsers.c │ │ │ │ ├── ILibParsers.h │ │ │ │ ├── ILibWebClient.c │ │ │ │ ├── ILibWebClient.h │ │ │ │ ├── ILibWebServer.c │ │ │ │ ├── ILibWebServer.h │ │ │ │ ├── Main.c │ │ │ │ ├── UPnPSample.sln │ │ │ │ ├── UPnPSample.vcproj │ │ │ │ ├── UpnpMicroStack.c │ │ │ │ ├── UpnpMicroStack.h │ │ │ │ ├── stdafx.cpp │ │ │ │ └── stdafx.h │ │ │ ├── Posix │ │ │ │ ├── ILibAsyncServerSocket.c │ │ │ │ ├── ILibAsyncServerSocket.h │ │ │ │ ├── ILibAsyncSocket.c │ │ │ │ ├── ILibAsyncSocket.h │ │ │ │ ├── ILibParsers.c │ │ │ │ ├── ILibParsers.h │ │ │ │ ├── ILibWebClient.c │ │ │ │ ├── ILibWebClient.h │ │ │ │ ├── ILibWebServer.c │ │ │ │ ├── ILibWebServer.h │ │ │ │ ├── Main.c │ │ │ │ ├── UpnpMicroStack.c │ │ │ │ ├── UpnpMicroStack.h │ │ │ │ └── makefile │ │ │ ├── RendererControl.xml │ │ │ ├── Win32_Winsock1 │ │ │ │ ├── ILibAsyncServerSocket.c │ │ │ │ ├── ILibAsyncServerSocket.h │ │ │ │ ├── ILibAsyncSocket.c │ │ │ │ ├── ILibAsyncSocket.h │ │ │ │ ├── ILibParsers.c │ │ │ │ ├── ILibParsers.h │ │ │ │ ├── ILibWebClient.c │ │ │ │ ├── ILibWebClient.h │ │ │ │ ├── ILibWebServer.c │ │ │ │ ├── ILibWebServer.h │ │ │ │ ├── Main.c │ │ │ │ ├── UPnPSample.sln │ │ │ │ ├── UPnPSample.vcproj │ │ │ │ ├── UpnpMicroStack.c │ │ │ │ ├── UpnpMicroStack.h │ │ │ │ ├── stdafx.cpp │ │ │ │ └── stdafx.h │ │ │ └── Win32_Winsock2 │ │ │ │ ├── ILibAsyncServerSocket.c │ │ │ │ ├── ILibAsyncServerSocket.h │ │ │ │ ├── ILibAsyncSocket.c │ │ │ │ ├── ILibAsyncSocket.h │ │ │ │ ├── ILibParsers.c │ │ │ │ ├── ILibParsers.h │ │ │ │ ├── ILibWebClient.c │ │ │ │ ├── ILibWebClient.h │ │ │ │ ├── ILibWebServer.c │ │ │ │ ├── ILibWebServer.h │ │ │ │ ├── Main.c │ │ │ │ ├── UPnPSample.sln │ │ │ │ ├── UPnPSample.vcproj │ │ │ │ ├── UpnpMicroStack.c │ │ │ │ ├── UpnpMicroStack.h │ │ │ │ ├── stdafx.cpp │ │ │ │ └── stdafx.h │ │ ├── Emulator_Methods.c │ │ ├── Emulator_Methods.h │ │ ├── HttpPlaylistParser.c │ │ ├── HttpPlaylistParser.h │ │ ├── Media │ │ │ ├── Intel Logo.bmp │ │ │ ├── Micro Media Renderer PPC.ico │ │ │ └── Micro Media Renderer.ico │ │ ├── MediaPlayerVersions_Methods.cpp │ │ ├── MediaPlayerVersions_Methods.h │ │ ├── MicroMediaRenderer.c │ │ ├── MicroMediaRenderer.h │ │ ├── MyString.c │ │ ├── MyString.h │ │ ├── PocketPC_MmrRslMp │ │ │ ├── ARMRel │ │ │ │ └── Media Renderer.exe │ │ │ ├── CMicroMediaRenderer.cpp │ │ │ ├── CMicroMediaRenderer.h │ │ │ ├── Intel Logo.bmp │ │ │ ├── IntelLogo.bmp │ │ │ ├── IntelLogo2.bmp │ │ │ ├── IntelLogo3.bmp │ │ │ ├── IntelLogo4.bmp │ │ │ ├── MediaPlayerControl │ │ │ │ ├── readme.txt │ │ │ │ └── wmnall.exe │ │ │ ├── Micro Media Renderer PPC.ico │ │ │ ├── MicroMediaRendererApp.cpp │ │ │ ├── MicroMediaRendererApp.rc │ │ │ ├── MicroMediaRendererApp.vcl │ │ │ ├── MicroMediaRendererApp.vco │ │ │ ├── MicroMediaRendererApp.vcp │ │ │ ├── MicroMediaRendererApp.vcw │ │ │ ├── PlayerOCX.h │ │ │ ├── PlayerOCX.idl │ │ │ ├── StdAfx.h │ │ │ ├── events_dispid.h │ │ │ ├── newres.h │ │ │ ├── resource.h │ │ │ ├── stdafx.cpp │ │ │ ├── winsock_arm.lib │ │ │ └── winsock_x86.lib │ │ ├── PortFn_MsTime.c │ │ ├── PortFn_MsTime.h │ │ ├── Posix_Mmr │ │ │ ├── Main.c │ │ │ └── makefile │ │ ├── Posix_MmrRslEc │ │ │ ├── CodecWrapper.o │ │ │ ├── Emulator_Methods.o │ │ │ ├── HttpPlaylistParser.o │ │ │ ├── ILibAsyncServerSocket.o │ │ │ ├── ILibAsyncSocket.o │ │ │ ├── ILibParsers.o │ │ │ ├── ILibWebClient.o │ │ │ ├── ILibWebServer.o │ │ │ ├── Main.c │ │ │ ├── Main.o │ │ │ ├── MicroMediaRenderer.o │ │ │ ├── MyString.o │ │ │ ├── PortFn_MsTime.o │ │ │ ├── RendererPosix_MmrRslEc.exe │ │ │ ├── RendererStateLogic.o │ │ │ ├── UpnpMicroStack.o │ │ │ ├── Utility.o │ │ │ └── makefile │ │ ├── RendererStateLogic.c │ │ ├── RendererStateLogic.h │ │ ├── Utility.c │ │ ├── Utility.h │ │ ├── WSock32.Lib │ │ ├── Win32_Mmr │ │ │ ├── Debug │ │ │ │ └── Win32_Mmr.exe │ │ │ ├── Main.c │ │ │ ├── Win32_Mmr.sln │ │ │ ├── Win32_Mmr.sln.new │ │ │ ├── Win32_Mmr.vcproj │ │ │ └── Win32_Mmr.vcproj.new │ │ ├── Win32_MmrRslEc │ │ │ ├── Debug │ │ │ │ └── RendererWin32_MmrRslEc.exe │ │ │ ├── Main.c │ │ │ ├── UPnPSample.sln │ │ │ ├── UPnPSample.sln.new │ │ │ ├── UPnPSample.vcproj │ │ │ └── UPnPSample.vcproj.new │ │ ├── Win32_MmrRslMp │ │ │ ├── Debug │ │ │ │ └── RendererWin32_MmrRslMp.exe │ │ │ ├── MicroMediaRenderer.rc │ │ │ ├── MicroMediaRenderer.sln │ │ │ ├── MicroMediaRenderer.vcproj │ │ │ ├── MicroMediaRendererApp.cpp │ │ │ ├── MicroMediaRendererApp.h │ │ │ ├── MicroMediaRendererDlg.cpp │ │ │ ├── MicroMediaRendererDlg.h │ │ │ ├── Release │ │ │ │ └── RendererWin32_MmrRslMp.exe │ │ │ ├── mediaplayer1.cpp │ │ │ ├── mediaplayer1.h │ │ │ ├── res │ │ │ │ ├── MicroAVRenderer.ico │ │ │ │ ├── MicroAVRenderer.manifest │ │ │ │ ├── MicroAVRenderer.rc2 │ │ │ │ └── UPnPRenderer.ico │ │ │ ├── resource.h │ │ │ ├── stdafx.cpp │ │ │ └── stdafx.h │ │ └── Win32_MmrRslMp01 │ │ │ ├── MicroMediaRenderer.rc │ │ │ ├── MicroMediaRenderer.sln │ │ │ ├── MicroMediaRenderer.vcproj │ │ │ ├── MicroMediaRendererApp.cpp │ │ │ ├── MicroMediaRendererApp.h │ │ │ ├── MicroMediaRendererDlg.cpp │ │ │ ├── MicroMediaRendererDlg.h │ │ │ ├── mediaplayer1.cpp │ │ │ ├── mediaplayer1.h │ │ │ ├── res │ │ │ ├── MicroAVRenderer.ico │ │ │ ├── MicroAVRenderer.manifest │ │ │ ├── MicroAVRenderer.rc2 │ │ │ └── UPnPRenderer.ico │ │ │ ├── resource.h │ │ │ ├── stdafx.cpp │ │ │ └── stdafx.h │ ├── Micro Av Server │ │ ├── CdsErrors.h │ │ ├── CdsMediaClass.c │ │ ├── CdsMediaClass.h │ │ ├── CdsMediaObject.c │ │ ├── CdsMediaObject.h │ │ ├── CdsObjectToDidl.c │ │ ├── CdsObjectToDidl.h │ │ ├── CdsStrings.h │ │ ├── DeviceBuilder │ │ │ ├── CDS_0-99.xml │ │ │ ├── CMGR_0-99.xml │ │ │ ├── MMS-PocketPC.upnpsg │ │ │ ├── MMS-Posix.upnpsg │ │ │ ├── MMS-Win32_Winsock1.upnpsg │ │ │ ├── PocketPC │ │ │ │ ├── ILibAsyncServerSocket.c │ │ │ │ ├── ILibAsyncServerSocket.h │ │ │ │ ├── ILibAsyncSocket.c │ │ │ │ ├── ILibAsyncSocket.h │ │ │ │ ├── ILibParsers.c │ │ │ │ ├── ILibParsers.h │ │ │ │ ├── ILibWebClient.c │ │ │ │ ├── ILibWebClient.h │ │ │ │ ├── ILibWebServer.c │ │ │ │ ├── ILibWebServer.h │ │ │ │ ├── Main.c │ │ │ │ ├── UPnPSample.sln │ │ │ │ ├── UPnPSample.vcproj │ │ │ │ ├── UpnpMicroStack.c │ │ │ │ ├── UpnpMicroStack.h │ │ │ │ ├── stdafx.cpp │ │ │ │ └── stdafx.h │ │ │ ├── Posix │ │ │ │ ├── ILibAsyncServerSocket.c │ │ │ │ ├── ILibAsyncServerSocket.h │ │ │ │ ├── ILibAsyncSocket.c │ │ │ │ ├── ILibAsyncSocket.h │ │ │ │ ├── ILibParsers.c │ │ │ │ ├── ILibParsers.h │ │ │ │ ├── ILibWebClient.c │ │ │ │ ├── ILibWebClient.h │ │ │ │ ├── ILibWebServer.c │ │ │ │ ├── ILibWebServer.h │ │ │ │ ├── Main.c │ │ │ │ ├── UpnpMicroStack.c │ │ │ │ ├── UpnpMicroStack.h │ │ │ │ └── makefile │ │ │ └── Win32_Winsock1 │ │ │ │ ├── ILibAsyncServerSocket.c │ │ │ │ ├── ILibAsyncServerSocket.h │ │ │ │ ├── ILibAsyncSocket.c │ │ │ │ ├── ILibAsyncSocket.h │ │ │ │ ├── ILibParsers.c │ │ │ │ ├── ILibParsers.h │ │ │ │ ├── ILibWebClient.c │ │ │ │ ├── ILibWebClient.h │ │ │ │ ├── ILibWebServer.c │ │ │ │ ├── ILibWebServer.h │ │ │ │ ├── Main.c │ │ │ │ ├── UPnPSample.sln │ │ │ │ ├── UPnPSample.vcproj │ │ │ │ ├── UpnpMicroStack.c │ │ │ │ ├── UpnpMicroStack.h │ │ │ │ ├── stdafx.cpp │ │ │ │ └── stdafx.h │ │ ├── IntelMediaServer │ │ │ ├── DeviceBuilder │ │ │ │ ├── CDS_0-99.xml │ │ │ │ ├── CMGR_0-99.xml │ │ │ │ ├── MMS2-Win32_Winsock2.upnpsg │ │ │ │ └── Win32_Winsock2 │ │ │ │ │ ├── ILibAsyncServerSocket.c │ │ │ │ │ ├── ILibAsyncServerSocket.h │ │ │ │ │ ├── ILibAsyncSocket.c │ │ │ │ │ ├── ILibAsyncSocket.h │ │ │ │ │ ├── ILibParsers.c │ │ │ │ │ ├── ILibParsers.h │ │ │ │ │ ├── ILibWebClient.c │ │ │ │ │ ├── ILibWebClient.h │ │ │ │ │ ├── ILibWebServer.c │ │ │ │ │ ├── ILibWebServer.h │ │ │ │ │ ├── Main.c │ │ │ │ │ ├── UPnPSample.sln │ │ │ │ │ ├── UPnPSample.vcproj │ │ │ │ │ ├── UpnpMicroStack.c │ │ │ │ │ ├── UpnpMicroStack.h │ │ │ │ │ ├── stdafx.cpp │ │ │ │ │ └── stdafx.h │ │ │ ├── HandleHttpRequest.c │ │ │ ├── HandleHttpRequest.h │ │ │ ├── IntelMediaServerConfig │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── IntelMediaServerConfig.csproj │ │ │ │ ├── IntelMediaServerConfig.ico │ │ │ │ ├── IntelMediaServerConfig.sln │ │ │ │ ├── MainForm.cs │ │ │ │ ├── MainForm.resx │ │ │ │ ├── Media │ │ │ │ │ ├── Device16.png │ │ │ │ │ ├── Device24.png │ │ │ │ │ ├── Device48.png │ │ │ │ │ ├── Folder-Picture.png │ │ │ │ │ ├── Folder-Picture32.png │ │ │ │ │ ├── Folder16-1.bmp │ │ │ │ │ ├── Folder16-2.bmp │ │ │ │ │ ├── Folder16.bmp │ │ │ │ │ ├── Folder16.png │ │ │ │ │ ├── Folder36.png │ │ │ │ │ ├── Intel Labs.bmp │ │ │ │ │ ├── Intel Media Server 2.png │ │ │ │ │ ├── Intel Media Server 2.psd │ │ │ │ │ ├── Intel Media Server 3.png │ │ │ │ │ ├── Intel Media Server.png │ │ │ │ │ ├── Intel Media Server.psd │ │ │ │ │ ├── Sharing32.png │ │ │ │ │ ├── Sharing34.png │ │ │ │ │ ├── Thumbs.db │ │ │ │ │ ├── Transfer1.png │ │ │ │ │ ├── Transfer1.psd │ │ │ │ │ ├── Transfer32.png │ │ │ │ │ ├── Transfer48.png │ │ │ │ │ ├── UPnP Forum Member - Small 2.png │ │ │ │ │ ├── UPnP Forum Member - Small 3.png │ │ │ │ │ ├── UPnP Forum Member - Small.png │ │ │ │ │ └── UPnP Forum Member.png │ │ │ │ ├── MediaTransferControl.cs │ │ │ │ ├── MediaTransferControl.resx │ │ │ │ ├── bin │ │ │ │ │ └── Debug │ │ │ │ │ │ ├── IntelMediaServerConfig.exe │ │ │ │ │ │ ├── Interop.IntelMediaServerServiceLib.dll │ │ │ │ │ │ └── Interop.Shell32.dll │ │ │ │ └── obj │ │ │ │ │ ├── Debug │ │ │ │ │ └── IntelMediaServerConfig.exe │ │ │ │ │ ├── Interop.IntelMediaServerServiceLib.dll │ │ │ │ │ └── Interop.Shell32.dll │ │ │ ├── IntelMediaServerService │ │ │ │ ├── ContentDirectoryServer.cpp │ │ │ │ ├── ContentDirectoryServer.h │ │ │ │ ├── Debug │ │ │ │ │ └── IntelMediaServerService.exe │ │ │ │ ├── Install.bat │ │ │ │ ├── IntelMediaServer-Empty.mdb │ │ │ │ ├── IntelMediaServer.mdb │ │ │ │ ├── IntelMediaServerConfig.cpp │ │ │ │ ├── IntelMediaServerConfig.h │ │ │ │ ├── IntelMediaServerConfig.rgs │ │ │ │ ├── IntelMediaServerService.aps │ │ │ │ ├── IntelMediaServerService.cpp │ │ │ │ ├── IntelMediaServerService.h │ │ │ │ ├── IntelMediaServerService.idl │ │ │ │ ├── IntelMediaServerService.rc │ │ │ │ ├── IntelMediaServerService.rgs │ │ │ │ ├── IntelMediaServerService.sln │ │ │ │ ├── IntelMediaServerService.vcproj │ │ │ │ ├── IntelMediaServerServicePS.vcproj │ │ │ │ ├── IntelMediaServerService_i.c │ │ │ │ ├── IntelMediaServerService_p.c │ │ │ │ ├── IntelMediaServerServiceps.def │ │ │ │ ├── MediaDatabase.cpp │ │ │ │ ├── MediaDatabase.h │ │ │ │ ├── MediaItemData.cpp │ │ │ │ ├── MediaItemData.h │ │ │ │ ├── MediaServer.cpp │ │ │ │ ├── MediaServer.h │ │ │ │ ├── ReadMe.txt │ │ │ │ ├── ResourceProvider.cpp │ │ │ │ ├── ResourceProvider.h │ │ │ │ ├── ResourceProviderDefault.cpp │ │ │ │ ├── ResourceProviderDefault.h │ │ │ │ ├── ResourceProvider_Http.h │ │ │ │ ├── ResourceProvider_HttpContainer.cpp │ │ │ │ ├── ResourceProvider_HttpContainer.h │ │ │ │ ├── ResourceProvider_HttpItem.cpp │ │ │ │ ├── ResourceProvider_HttpItem.h │ │ │ │ ├── SpecialContainerData.cpp │ │ │ │ ├── SpecialContainerData.h │ │ │ │ ├── Uninstall.bat │ │ │ │ ├── UpnpGlueLayer.c │ │ │ │ ├── UpnpGlueLayer.h │ │ │ │ ├── _IIntelMediaServerConfigEvents_CP.h │ │ │ │ ├── dlldata.c │ │ │ │ ├── resource.h │ │ │ │ ├── stdafx.cpp │ │ │ │ └── stdafx.h │ │ │ ├── MediaServerLogic.c │ │ │ ├── MediaServerLogic.h │ │ │ ├── WS2_32.Lib │ │ │ └── WSock32.Lib │ │ ├── Media │ │ │ ├── ArrowIconLeft.ico │ │ │ ├── ArrowIconRight.ico │ │ │ ├── IntelLabs.bmp │ │ │ ├── IntelLabsAbout.bmp │ │ │ ├── MediaServer16.ico │ │ │ └── MediaServer32.ico │ │ ├── MediaServer.ico │ │ ├── MediaServer2.ico │ │ ├── MicroMediaServer.c │ │ ├── MicroMediaServer.h │ │ ├── MimeTypes.c │ │ ├── MimeTypes.h │ │ ├── MyString.c │ │ ├── MyString.h │ │ ├── PocketPC │ │ │ ├── Main.c │ │ │ ├── MediaServer.ico │ │ │ ├── PPC Media Server.cpp │ │ │ ├── PPC Media Server.h │ │ │ ├── PPC Media Server.rc │ │ │ ├── PPC Media Server.vcb │ │ │ ├── PPC Media Server.vcl │ │ │ ├── PPC Media Server.vco │ │ │ ├── PPC Media Server.vcp │ │ │ ├── PPC Media Server.vcw │ │ │ ├── ReadMe.txt │ │ │ ├── StdAfx.h │ │ │ ├── newres.h │ │ │ ├── resource.h │ │ │ ├── winsock_arm.lib │ │ │ └── winsock_x86.lib │ │ ├── PortingFunctions.c │ │ ├── PortingFunctions.h │ │ ├── Posix │ │ │ ├── makefile │ │ │ └── mms.c │ │ ├── WSock32.Lib │ │ └── Win32 │ │ │ ├── Debug │ │ │ └── Media Server.exe │ │ │ ├── Media Server.cpp │ │ │ ├── Media Server.h │ │ │ ├── Media Server.ico │ │ │ ├── Media Server.rc │ │ │ ├── Media Server.sln │ │ │ ├── Media Server.vcproj │ │ │ ├── MediaServer2.ico │ │ │ ├── ReadMe.txt │ │ │ ├── UPnPMediaServer.ico │ │ │ ├── WSock32.Lib │ │ │ ├── icon1.ico │ │ │ └── resource.h │ ├── MicroDMR │ │ ├── DeviceBuilder │ │ │ ├── MicroDMR_Posix.upnpsg │ │ │ ├── MicroDMR_Win32_Winsock1.upnpsg │ │ │ ├── Posix │ │ │ │ ├── ILibAsyncServerSocket.c │ │ │ │ ├── ILibAsyncServerSocket.h │ │ │ │ ├── ILibAsyncSocket.c │ │ │ │ ├── ILibAsyncSocket.h │ │ │ │ ├── ILibParsers.c │ │ │ │ ├── ILibParsers.h │ │ │ │ ├── ILibWebClient.c │ │ │ │ ├── ILibWebClient.h │ │ │ │ ├── ILibWebServer.c │ │ │ │ ├── ILibWebServer.h │ │ │ │ ├── Main.c │ │ │ │ ├── UpnpMicroStack.c │ │ │ │ ├── UpnpMicroStack.h │ │ │ │ └── makefile │ │ │ └── Win32_Winsock1 │ │ │ │ ├── ILibAsyncServerSocket.c │ │ │ │ ├── ILibAsyncServerSocket.h │ │ │ │ ├── ILibAsyncSocket.c │ │ │ │ ├── ILibAsyncSocket.h │ │ │ │ ├── ILibParsers.c │ │ │ │ ├── ILibParsers.h │ │ │ │ ├── ILibWebClient.c │ │ │ │ ├── ILibWebClient.h │ │ │ │ ├── ILibWebServer.c │ │ │ │ ├── ILibWebServer.h │ │ │ │ ├── Main.c │ │ │ │ ├── UPnPSample.sln │ │ │ │ ├── UPnPSample.vcproj │ │ │ │ ├── UpnpMicroStack.c │ │ │ │ ├── UpnpMicroStack.h │ │ │ │ ├── stdafx.cpp │ │ │ │ └── stdafx.h │ │ ├── Media │ │ │ └── RemoteIOClient.ico │ │ ├── MediaRendererStack │ │ │ ├── CodecWrapper.c │ │ │ ├── CodecWrapper.h │ │ │ ├── Emulator_Methods.c │ │ │ ├── Emulator_Methods.h │ │ │ ├── HttpPlaylistParser.c │ │ │ ├── HttpPlaylistParser.h │ │ │ ├── MediaPlayerVersions_Methods.cpp │ │ │ ├── MediaPlayerVersions_Methods.h │ │ │ ├── MicroMediaRenderer.c │ │ │ ├── MicroMediaRenderer.h │ │ │ ├── MyString.c │ │ │ ├── MyString.h │ │ │ ├── PortFn_MsTime.c │ │ │ ├── PortFn_MsTime.h │ │ │ ├── RendererStateLogic.c │ │ │ ├── RendererStateLogic.h │ │ │ ├── Utility.c │ │ │ └── Utility.h │ │ ├── Posix │ │ │ ├── CodecWrapper.o │ │ │ ├── Emulator_Methods.o │ │ │ ├── HttpPlaylistParser.o │ │ │ ├── ILibAsyncServerSocket.o │ │ │ ├── ILibAsyncSocket.o │ │ │ ├── ILibParsers.o │ │ │ ├── ILibWebClient.o │ │ │ ├── ILibWebServer.o │ │ │ ├── MicroDMR.exe │ │ │ ├── MicroDmr.c │ │ │ ├── MicroDmr.o │ │ │ ├── MicroMediaRenderer.o │ │ │ ├── MyString.o │ │ │ ├── PortFn_MsTime.o │ │ │ ├── RemoteIOClientStack.o │ │ │ ├── RendererStateLogic.o │ │ │ ├── UpnpMicroStack.o │ │ │ ├── Utility.o │ │ │ ├── XrtVideo.o │ │ │ └── makefile │ │ ├── RemoteIOClientStack │ │ │ ├── RemoteIOClientStack.c │ │ │ ├── RemoteIOClientStack.h │ │ │ ├── XrtVideo.c │ │ │ └── XrtVideo.h │ │ ├── Resources │ │ │ ├── Intel JPEG │ │ │ │ ├── ijl.h │ │ │ │ ├── ijl15.dll │ │ │ │ └── ijl15.lib │ │ │ ├── Intel Performance Primitive JPEG.exe │ │ │ ├── NewMicroAvServer │ │ │ │ ├── CdsErrors.h │ │ │ │ ├── CdsManager.c │ │ │ │ ├── CdsManager.h │ │ │ │ ├── CdsMediaClass.c │ │ │ │ ├── CdsMediaClass.h │ │ │ │ ├── CdsMediaObject.c │ │ │ │ ├── CdsMediaObject.h │ │ │ │ ├── CdsObjectToDidl.c │ │ │ │ ├── CdsObjectToDidl.h │ │ │ │ ├── CdsStrings.h │ │ │ │ ├── DB2CDS.c │ │ │ │ ├── DB2CDS.h │ │ │ │ ├── DeviceBuilder │ │ │ │ │ ├── CDS_0-99.xml │ │ │ │ │ ├── CMGR_0-99.xml │ │ │ │ │ ├── MMS-PocketPC.upnpsg │ │ │ │ │ ├── MMS-Posix.upnpsg │ │ │ │ │ ├── MMS-Win32_Winsock1.upnpsg │ │ │ │ │ ├── PocketPC │ │ │ │ │ │ ├── ILibHTTPClient.c │ │ │ │ │ │ ├── ILibHTTPClient.h │ │ │ │ │ │ ├── ILibParsers.c │ │ │ │ │ │ ├── ILibParsers.h │ │ │ │ │ │ ├── Main.c │ │ │ │ │ │ ├── UPnPSample.sln │ │ │ │ │ │ ├── UPnPSample.vcproj │ │ │ │ │ │ ├── UpnpMicroStack.c │ │ │ │ │ │ ├── UpnpMicroStack.h │ │ │ │ │ │ ├── stdafx.cpp │ │ │ │ │ │ └── stdafx.h │ │ │ │ │ ├── Posix │ │ │ │ │ │ ├── ILibHTTPClient.c │ │ │ │ │ │ ├── ILibHTTPClient.h │ │ │ │ │ │ ├── ILibParsers.c │ │ │ │ │ │ ├── ILibParsers.h │ │ │ │ │ │ ├── Main.c │ │ │ │ │ │ ├── UpnpMicroStack.c │ │ │ │ │ │ ├── UpnpMicroStack.h │ │ │ │ │ │ └── makefile │ │ │ │ │ └── Win32_Winsock1 │ │ │ │ │ │ ├── ILibHTTPClient.c │ │ │ │ │ │ ├── ILibHTTPClient.h │ │ │ │ │ │ ├── ILibParsers.c │ │ │ │ │ │ ├── ILibParsers.h │ │ │ │ │ │ ├── Main.c │ │ │ │ │ │ ├── UPnPSample.sln │ │ │ │ │ │ ├── UPnPSample.vcproj │ │ │ │ │ │ ├── UpnpMicroStack.c │ │ │ │ │ │ ├── UpnpMicroStack.h │ │ │ │ │ │ ├── stdafx.cpp │ │ │ │ │ │ └── stdafx.h │ │ │ │ ├── HandleHttpRequest.c │ │ │ │ ├── HandleHttpRequest.h │ │ │ │ ├── MP_MyPictures.c │ │ │ │ ├── MP_MyPictures.h │ │ │ │ ├── MP_WindowsMediaLibrary.c │ │ │ │ ├── MP_WindowsMediaLibrary.h │ │ │ │ ├── MediaServerLogic.c │ │ │ │ ├── MediaServerLogic.h │ │ │ │ ├── MicroAvServerDB.mdb │ │ │ │ ├── MimeTypes.c │ │ │ │ ├── MimeTypes.h │ │ │ │ ├── MyString.c │ │ │ │ ├── MyString.h │ │ │ │ ├── TypeLibs │ │ │ │ │ ├── CWMPCdromCollection.cpp │ │ │ │ │ ├── CWMPCdromCollection.h │ │ │ │ │ ├── CWMPClosedCaption.cpp │ │ │ │ │ ├── CWMPClosedCaption.h │ │ │ │ │ ├── CWMPClosedCaption2.cpp │ │ │ │ │ ├── CWMPClosedCaption2.h │ │ │ │ │ ├── CWMPControls.cpp │ │ │ │ │ ├── CWMPControls.h │ │ │ │ │ ├── CWMPControls2.cpp │ │ │ │ │ ├── CWMPControls2.h │ │ │ │ │ ├── CWMPControls3.cpp │ │ │ │ │ ├── CWMPControls3.h │ │ │ │ │ ├── CWMPDVD.cpp │ │ │ │ │ ├── CWMPDVD.h │ │ │ │ │ ├── CWMPError.cpp │ │ │ │ │ ├── CWMPError.h │ │ │ │ │ ├── CWMPErrorItem.cpp │ │ │ │ │ ├── CWMPErrorItem.h │ │ │ │ │ ├── CWMPErrorItem2.cpp │ │ │ │ │ ├── CWMPErrorItem2.h │ │ │ │ │ ├── CWMPMedia.cpp │ │ │ │ │ ├── CWMPMedia.h │ │ │ │ │ ├── CWMPMedia2.cpp │ │ │ │ │ ├── CWMPMedia2.h │ │ │ │ │ ├── CWMPMedia3.cpp │ │ │ │ │ ├── CWMPMedia3.h │ │ │ │ │ ├── CWMPMediaCollection.cpp │ │ │ │ │ ├── CWMPMediaCollection.h │ │ │ │ │ ├── CWMPMetadataPicture.cpp │ │ │ │ │ ├── CWMPMetadataPicture.h │ │ │ │ │ ├── CWMPMetadataText.cpp │ │ │ │ │ ├── CWMPMetadataText.h │ │ │ │ │ ├── CWMPPlayer.cpp │ │ │ │ │ ├── CWMPPlayer.h │ │ │ │ │ ├── CWMPPlayer2.cpp │ │ │ │ │ ├── CWMPPlayer2.h │ │ │ │ │ ├── CWMPPlayer3.cpp │ │ │ │ │ ├── CWMPPlayer3.h │ │ │ │ │ ├── CWMPPlayer4.cpp │ │ │ │ │ ├── CWMPPlayer4.h │ │ │ │ │ ├── CWMPPlaylist.cpp │ │ │ │ │ ├── CWMPPlaylist.h │ │ │ │ │ ├── CWMPPlaylistCollection.cpp │ │ │ │ │ ├── CWMPPlaylistCollection.h │ │ │ │ │ ├── CWMPSettings.cpp │ │ │ │ │ ├── CWMPSettings.h │ │ │ │ │ ├── CWMPSettings2.cpp │ │ │ │ │ └── CWMPSettings2.h │ │ │ │ ├── WMSDK_Includes │ │ │ │ │ ├── wmp.h │ │ │ │ │ ├── wmp.idl │ │ │ │ │ └── wmpids.h │ │ │ │ └── Win32_WML │ │ │ │ │ ├── ReadMe.txt │ │ │ │ │ ├── Win32_WML.aps │ │ │ │ │ ├── Win32_WML.cpp │ │ │ │ │ ├── Win32_WML.h │ │ │ │ │ ├── Win32_WML.idl │ │ │ │ │ ├── Win32_WML.rc │ │ │ │ │ ├── Win32_WML.rgs │ │ │ │ │ ├── Win32_WML.sln │ │ │ │ │ ├── Win32_WML.vcproj │ │ │ │ │ ├── Win32_WMLDlg.cpp │ │ │ │ │ ├── Win32_WMLDlg.h │ │ │ │ │ ├── Win32_WML_i.c │ │ │ │ │ ├── Win32_WML_i.h │ │ │ │ │ ├── Win32_WMLps.def │ │ │ │ │ ├── Win32_WMLps.mk │ │ │ │ │ ├── hlp │ │ │ │ │ ├── WIN32_WML.HLP │ │ │ │ │ ├── Win32_WML.LOG │ │ │ │ │ ├── Win32_WML.cnt │ │ │ │ │ ├── Win32_WML.hm │ │ │ │ │ ├── Win32_WML.hpj │ │ │ │ │ ├── Win32_WML.ph │ │ │ │ │ └── afxdlg.rtf │ │ │ │ │ ├── mediaplayer.cpp │ │ │ │ │ ├── mediaplayer.h │ │ │ │ │ ├── res │ │ │ │ │ ├── Win32_WML.ico │ │ │ │ │ ├── Win32_WML.manifest │ │ │ │ │ └── Win32_WML.rc2 │ │ │ │ │ ├── resource.h │ │ │ │ │ ├── stdafx.cpp │ │ │ │ │ └── stdafx.h │ │ │ ├── VOImage.zip │ │ │ ├── gapi12.zip │ │ │ └── gapi12 │ │ │ │ ├── ARM │ │ │ │ ├── gx.dll │ │ │ │ └── gx.lib │ │ │ │ ├── MIPS │ │ │ │ ├── gx.dll │ │ │ │ └── gx.lib │ │ │ │ ├── ReleaseNotes.txt │ │ │ │ ├── SH │ │ │ │ ├── gx.dll │ │ │ │ └── gx.lib │ │ │ │ └── inc │ │ │ │ └── gx.h │ │ ├── WSock32.Lib │ │ └── Win32_Console │ │ │ ├── Debug │ │ │ └── Win32_Console.exe │ │ │ ├── Win32_Console.sln │ │ │ ├── Win32_Console.sln.old │ │ │ ├── Win32_Console.vcproj │ │ │ └── Win32_Console.vcproj.old │ ├── MicroSTB │ │ ├── CodeFromBryan │ │ │ ├── AVR_ControlPoint.c │ │ │ ├── AVR_ControlPoint.h │ │ │ ├── CDS_ControlPoint.c │ │ │ ├── CDS_ControlPoint.h │ │ │ ├── Debug │ │ │ │ └── UPnPSample.exe │ │ │ ├── ILibAsyncServerSocket.c │ │ │ ├── ILibAsyncServerSocket.h │ │ │ ├── ILibAsyncSocket.c │ │ │ ├── ILibAsyncSocket.h │ │ │ ├── ILibHTTPClient.c │ │ │ ├── ILibHTTPClient.h │ │ │ ├── ILibMiniWebServer.c │ │ │ ├── ILibMiniWebServer.h │ │ │ ├── ILibParsers.c │ │ │ ├── ILibParsers.h │ │ │ ├── ILibSSDPClient.c │ │ │ ├── ILibSSDPClient.h │ │ │ ├── ILibWebClient.c │ │ │ ├── ILibWebClient.h │ │ │ ├── ILibWebServer.c │ │ │ ├── ILibWebServer.h │ │ │ ├── Main.c │ │ │ ├── UPnPControlPoint.c │ │ │ ├── UPnPControlPoint.h │ │ │ ├── UPnPControlPointStructs.h │ │ │ ├── UPnPMicroStack.c │ │ │ ├── UPnPMicroStack.h │ │ │ ├── UPnPSample.sln │ │ │ ├── UPnPSample.sln.old │ │ │ ├── UPnPSample.vcproj │ │ │ ├── UPnPSample.vcproj.old │ │ │ ├── UPnP_ControlPoint_Structs.h │ │ │ ├── stdafx.cpp │ │ │ └── stdafx.h │ │ ├── ControlPointStacks │ │ │ ├── AVRCP_ControlPoint_Wrapper.c │ │ │ ├── AVRCP_ControlPoint_Wrapper.h │ │ │ ├── ControlPoint_Wrapper_Common.h │ │ │ ├── ControlPointsManager.c │ │ │ ├── ControlPointsManager.h │ │ │ ├── MSCP_ControlPoint_Wrapper.c │ │ │ └── MSCP_ControlPoint_Wrapper.h │ │ ├── DeviceBuilder │ │ │ ├── MediaRendererCP-Win32_Winsock1.upnpsg │ │ │ ├── MediaServerCP-Win32_Winsock1.upnpsg │ │ │ ├── MicroSTB_Posix.upnpsg │ │ │ ├── MicroSTB_Win32_Winsock1.upnpsg │ │ │ ├── Posix │ │ │ │ ├── ILibAsyncServerSocket.c │ │ │ │ ├── ILibAsyncServerSocket.h │ │ │ │ ├── ILibAsyncSocket.c │ │ │ │ ├── ILibAsyncSocket.h │ │ │ │ ├── ILibParsers.c │ │ │ │ ├── ILibParsers.h │ │ │ │ ├── ILibWebClient.c │ │ │ │ ├── ILibWebClient.h │ │ │ │ ├── ILibWebServer.c │ │ │ │ ├── ILibWebServer.h │ │ │ │ ├── Main.c │ │ │ │ ├── UpnpMicroStack.c │ │ │ │ ├── UpnpMicroStack.h │ │ │ │ └── makefile │ │ │ ├── Win32_AVRCP_Winsock1 │ │ │ │ ├── AVRCP_ControlPoint.c │ │ │ │ ├── AVRCP_ControlPoint.h │ │ │ │ ├── Debug │ │ │ │ │ └── UPnPSample.exe │ │ │ │ ├── ILibAsyncServerSocket.c │ │ │ │ ├── ILibAsyncServerSocket.h │ │ │ │ ├── ILibAsyncSocket.c │ │ │ │ ├── ILibAsyncSocket.h │ │ │ │ ├── ILibParsers.c │ │ │ │ ├── ILibParsers.h │ │ │ │ ├── ILibSSDPClient.c │ │ │ │ ├── ILibSSDPClient.h │ │ │ │ ├── ILibWebClient.c │ │ │ │ ├── ILibWebClient.h │ │ │ │ ├── ILibWebServer.c │ │ │ │ ├── ILibWebServer.h │ │ │ │ ├── Main.c │ │ │ │ ├── UPnPControlPointStructs.h │ │ │ │ ├── UPnPSample.sln │ │ │ │ ├── UPnPSample.sln.old │ │ │ │ ├── UPnPSample.vcproj │ │ │ │ ├── UPnPSample.vcproj.old │ │ │ │ ├── stdafx.cpp │ │ │ │ └── stdafx.h │ │ │ ├── Win32_MSCP_Winsock1 │ │ │ │ ├── ILibAsyncServerSocket.c │ │ │ │ ├── ILibAsyncServerSocket.h │ │ │ │ ├── ILibAsyncSocket.c │ │ │ │ ├── ILibAsyncSocket.h │ │ │ │ ├── ILibParsers.c │ │ │ │ ├── ILibParsers.h │ │ │ │ ├── ILibSSDPClient.c │ │ │ │ ├── ILibSSDPClient.h │ │ │ │ ├── ILibWebClient.c │ │ │ │ ├── ILibWebClient.h │ │ │ │ ├── ILibWebServer.c │ │ │ │ ├── ILibWebServer.h │ │ │ │ ├── MSCP_ControlPoint.c │ │ │ │ ├── MSCP_ControlPoint.h │ │ │ │ ├── Main.c │ │ │ │ ├── UPnPControlPointStructs.h │ │ │ │ ├── UPnPSample.sln │ │ │ │ ├── UPnPSample.sln.old │ │ │ │ ├── UPnPSample.vcproj │ │ │ │ ├── UPnPSample.vcproj.old │ │ │ │ ├── stdafx.cpp │ │ │ │ └── stdafx.h │ │ │ ├── Win32_Merged_AVR-MS_CP_Winsock1 │ │ │ │ ├── AVRCP_ControlPoint.c │ │ │ │ ├── AVRCP_ControlPoint.h │ │ │ │ ├── MSCP_ControlPoint.c │ │ │ │ ├── MSCP_ControlPoint.h │ │ │ │ └── UPnPControlPointStructs.h │ │ │ ├── Win32_Winsock1 │ │ │ │ ├── ILib │ │ │ │ │ ├── ILibAsyncServerSocket.c │ │ │ │ │ ├── ILibAsyncServerSocket.h │ │ │ │ │ ├── ILibAsyncSocket.c │ │ │ │ │ ├── ILibAsyncSocket.h │ │ │ │ │ ├── ILibParsers.c │ │ │ │ │ ├── ILibParsers.h │ │ │ │ │ ├── ILibWebClient.c │ │ │ │ │ ├── ILibWebClient.h │ │ │ │ │ ├── ILibWebServer.c │ │ │ │ │ └── ILibWebServer.h │ │ │ │ ├── Main.c │ │ │ │ ├── UPnPSample.sln │ │ │ │ ├── UPnPSample.vcproj │ │ │ │ ├── UpnpMicroStack.c │ │ │ │ ├── UpnpMicroStack.h │ │ │ │ ├── stdafx.cpp │ │ │ │ └── stdafx.h │ │ │ └── Win32_Winsock1_ILib │ │ │ │ ├── ILibAsyncServerSocket.c │ │ │ │ ├── ILibAsyncServerSocket.h │ │ │ │ ├── ILibAsyncSocket.c │ │ │ │ ├── ILibAsyncSocket.h │ │ │ │ ├── ILibParsers.c │ │ │ │ ├── ILibParsers.h │ │ │ │ ├── ILibSSDPClient.c │ │ │ │ ├── ILibSSDPClient.h │ │ │ │ ├── ILibWebClient.c │ │ │ │ ├── ILibWebClient.h │ │ │ │ ├── ILibWebServer.c │ │ │ │ └── ILibWebServer.h │ │ ├── MediaRendererStack │ │ │ ├── CodecWrapper.c │ │ │ ├── CodecWrapper.h │ │ │ ├── Emulator_Methods.c │ │ │ ├── Emulator_Methods.h │ │ │ ├── HttpPlaylistParser.c │ │ │ ├── HttpPlaylistParser.h │ │ │ ├── MediaPlayerVersions_Methods.cpp │ │ │ ├── MediaPlayerVersions_Methods.h │ │ │ ├── MicroMediaRenderer.c │ │ │ ├── MicroMediaRenderer.h │ │ │ ├── PortFn_MsTime.c │ │ │ ├── PortFn_MsTime.h │ │ │ ├── RendererStateLogic.c │ │ │ └── RendererStateLogic.h │ │ ├── MediaServerStack │ │ │ ├── CdsErrors.h │ │ │ ├── CdsMediaClass.c │ │ │ ├── CdsMediaClass.h │ │ │ ├── CdsMediaObject.c │ │ │ ├── CdsMediaObject.h │ │ │ ├── CdsObjectToDidl.c │ │ │ ├── CdsObjectToDidl.h │ │ │ ├── CdsStrings.h │ │ │ ├── MicroMediaServer.c │ │ │ ├── MicroMediaServer.h │ │ │ ├── PortingFunctions.c │ │ │ └── PortingFunctions.h │ │ ├── RemoteIOClientStack │ │ │ ├── RemoteIOClientStack.c │ │ │ ├── RemoteIOClientStack.h │ │ │ ├── XrtVideo.c │ │ │ └── XrtVideo.h │ │ ├── UIShell │ │ │ ├── STBShell.c │ │ │ └── STBShell.h │ │ ├── Utils │ │ │ ├── MimeTypes.c │ │ │ ├── MimeTypes.h │ │ │ ├── MyList.c │ │ │ ├── MyList.h │ │ │ ├── MyString.c │ │ │ ├── MyString.h │ │ │ ├── MyString.old.c │ │ │ ├── MyString.old.h │ │ │ ├── Utility.c │ │ │ ├── Utility.h │ │ │ └── WinSemaphore.h │ │ └── Win32_Console │ │ │ ├── Debug │ │ │ └── Win32_Console.exe │ │ │ ├── MicroSTB.h │ │ │ ├── MicroStb.c │ │ │ ├── Win32_Console.sln │ │ │ └── Win32_Console.vcproj │ └── NewMicroAvServer │ │ ├── CdsContentDiscovery.c │ │ ├── CdsContentDiscovery.h │ │ ├── CdsErrors.h │ │ ├── CdsMediaClass.c │ │ ├── CdsMediaClass.h │ │ ├── CdsMediaObject.c │ │ ├── CdsMediaObject.h │ │ ├── CdsObjectToDidl.c │ │ ├── CdsObjectToDidl.h │ │ ├── CdsStrings.h │ │ ├── DeviceBuilder │ │ ├── CDS_0-99.xml │ │ ├── CMGR_0-99.xml │ │ ├── MMS-PocketPC.upnpsg │ │ ├── MMS-Posix.upnpsg │ │ ├── MMS-Win32_Winsock1.upnpsg │ │ ├── PocketPC │ │ │ ├── ILibHTTPClient.c │ │ │ ├── ILibHTTPClient.h │ │ │ ├── ILibParsers.c │ │ │ ├── ILibParsers.h │ │ │ ├── Main.c │ │ │ ├── UPnPSample.sln │ │ │ ├── UPnPSample.vcproj │ │ │ ├── UpnpMicroStack.c │ │ │ ├── UpnpMicroStack.h │ │ │ ├── stdafx.cpp │ │ │ └── stdafx.h │ │ ├── Posix │ │ │ ├── ILibHTTPClient.c │ │ │ ├── ILibHTTPClient.h │ │ │ ├── ILibParsers.c │ │ │ ├── ILibParsers.h │ │ │ ├── Main.c │ │ │ ├── UpnpMicroStack.c │ │ │ ├── UpnpMicroStack.h │ │ │ └── makefile │ │ └── Win32_Winsock1 │ │ │ ├── ILibHTTPClient.c │ │ │ ├── ILibHTTPClient.h │ │ │ ├── ILibParsers.c │ │ │ ├── ILibParsers.h │ │ │ ├── Main.c │ │ │ ├── UPnPSample.sln │ │ │ ├── UPnPSample.vcproj │ │ │ ├── UpnpMicroStack.c │ │ │ ├── UpnpMicroStack.h │ │ │ ├── stdafx.cpp │ │ │ └── stdafx.h │ │ ├── HandleHttpRequest.c │ │ ├── HandleHttpRequest.h │ │ ├── MediaServerLogic.c │ │ ├── MediaServerLogic.h │ │ ├── MimeTypes.c │ │ ├── MimeTypes.h │ │ ├── MyString.c │ │ ├── MyString.h │ │ ├── TypeLibs │ │ ├── CWMPCdromCollection.cpp │ │ ├── CWMPCdromCollection.h │ │ ├── CWMPClosedCaption.cpp │ │ ├── CWMPClosedCaption.h │ │ ├── CWMPClosedCaption2.cpp │ │ ├── CWMPClosedCaption2.h │ │ ├── CWMPControls.cpp │ │ ├── CWMPControls.h │ │ ├── CWMPControls2.cpp │ │ ├── CWMPControls2.h │ │ ├── CWMPControls3.cpp │ │ ├── CWMPControls3.h │ │ ├── CWMPDVD.cpp │ │ ├── CWMPDVD.h │ │ ├── CWMPError.cpp │ │ ├── CWMPError.h │ │ ├── CWMPErrorItem.cpp │ │ ├── CWMPErrorItem.h │ │ ├── CWMPErrorItem2.cpp │ │ ├── CWMPErrorItem2.h │ │ ├── CWMPMedia.cpp │ │ ├── CWMPMedia.h │ │ ├── CWMPMedia2.cpp │ │ ├── CWMPMedia2.h │ │ ├── CWMPMedia3.cpp │ │ ├── CWMPMedia3.h │ │ ├── CWMPMediaCollection.cpp │ │ ├── CWMPMediaCollection.h │ │ ├── CWMPMetadataPicture.cpp │ │ ├── CWMPMetadataPicture.h │ │ ├── CWMPMetadataText.cpp │ │ ├── CWMPMetadataText.h │ │ ├── CWMPPlayer.cpp │ │ ├── CWMPPlayer.h │ │ ├── CWMPPlayer2.cpp │ │ ├── CWMPPlayer2.h │ │ ├── CWMPPlayer3.cpp │ │ ├── CWMPPlayer3.h │ │ ├── CWMPPlayer4.cpp │ │ ├── CWMPPlayer4.h │ │ ├── CWMPPlaylist.cpp │ │ ├── CWMPPlaylist.h │ │ ├── CWMPPlaylistCollection.cpp │ │ ├── CWMPPlaylistCollection.h │ │ ├── CWMPSettings.cpp │ │ ├── CWMPSettings.h │ │ ├── CWMPSettings2.cpp │ │ └── CWMPSettings2.h │ │ ├── WMSDK_Includes │ │ ├── wmp.h │ │ ├── wmp.idl │ │ └── wmpids.h │ │ ├── Win32_WML │ │ ├── ReadMe.txt │ │ ├── Win32_WML.aps │ │ ├── Win32_WML.cpp │ │ ├── Win32_WML.h │ │ ├── Win32_WML.idl │ │ ├── Win32_WML.rc │ │ ├── Win32_WML.rgs │ │ ├── Win32_WML.sln │ │ ├── Win32_WML.vcproj │ │ ├── Win32_WMLDlg.cpp │ │ ├── Win32_WMLDlg.h │ │ ├── Win32_WML_i.c │ │ ├── Win32_WML_i.h │ │ ├── Win32_WMLps.def │ │ ├── Win32_WMLps.mk │ │ ├── hlp │ │ │ ├── WIN32_WML.HLP │ │ │ ├── Win32_WML.LOG │ │ │ ├── Win32_WML.cnt │ │ │ ├── Win32_WML.hm │ │ │ ├── Win32_WML.hpj │ │ │ ├── Win32_WML.ph │ │ │ └── afxdlg.rtf │ │ ├── mediaplayer.cpp │ │ ├── mediaplayer.h │ │ ├── res │ │ │ ├── Win32_WML.ico │ │ │ ├── Win32_WML.manifest │ │ │ └── Win32_WML.rc2 │ │ ├── resource.h │ │ ├── stdafx.cpp │ │ └── stdafx.h │ │ ├── Win32_WmpML │ │ ├── MainDlg.cpp │ │ ├── MainDlg.h │ │ ├── PopDlgs.cpp │ │ ├── PopDlgs.h │ │ ├── RemoteHost.cpp │ │ ├── RemoteHost.h │ │ ├── Resource.h │ │ ├── StdAfx.cpp │ │ ├── StdAfx.h │ │ ├── WMPML.txt │ │ ├── WSock32.Lib │ │ ├── WmpML.cpp │ │ ├── WmpML.dsp │ │ ├── WmpML.rc │ │ ├── WmpML.sln │ │ ├── WmpML.vcproj │ │ ├── include │ │ │ ├── effects.h │ │ │ ├── effects.idl │ │ │ ├── wmp.h │ │ │ ├── wmp.idl │ │ │ ├── wmpids.h │ │ │ ├── wmpplug.h │ │ │ ├── wmpplug.idl │ │ │ ├── wmprealestate.h │ │ │ ├── wmprealestate.idl │ │ │ ├── wmpservices.h │ │ │ └── wmpservices.idl │ │ └── redist │ │ │ └── wmppia.dll │ │ └── _CdsMediaObject.c └── SamplesReadme.txt └── Tools ├── .gitignore ├── DeveloperTools.sln ├── DeviceBuilder.sln ├── DeviceBuilder ├── AssemblyInfo.cs ├── BrowseDirectoryDialog.cs ├── BrowseDirectoryDialog.resx ├── CPCodeGenerationForm.cs ├── CPCodeGenerationForm.resx ├── CPDotNetGenerator.cs ├── CPEmbeddedCGenerator.cs ├── CertToolFiles.cs ├── CertToolFiles.resx ├── CodeGenerationForm.cs ├── CodeGenerationForm.resx ├── CodeGenerator.cs ├── CodeProcessor.cs ├── DeviceBuilder.csproj ├── DeviceObjectGenerator.cs ├── DotNetGenerator.cs ├── EmbeddedCGenerator.cs ├── FileStore │ ├── Android │ │ ├── .classpath │ │ ├── .project │ │ ├── AndroidManifest.xml │ │ ├── CpTemplate.java │ │ ├── SampleApp.java │ │ ├── UPnPLibrary.jar │ │ ├── default.properties │ │ ├── gen │ │ │ └── R.java │ │ ├── proguard.cfg │ │ └── res │ │ │ ├── drawable-hdpi │ │ │ └── icon.png │ │ │ ├── drawable-ldpi │ │ │ └── icon.png │ │ │ ├── drawable-mdpi │ │ │ └── icon.png │ │ │ ├── layout │ │ │ └── main.xml │ │ │ └── values │ │ │ └── strings.xml │ ├── CPlusPlus │ │ ├── UPnPAbstraction.cpp │ │ └── UPnPAbstraction.h │ ├── EULA.txt │ ├── FileIO │ │ ├── FileIoAbstraction.c │ │ └── FileIoAbstraction.h │ ├── ILibAsyncServerSocket.c │ ├── ILibAsyncServerSocket.h │ ├── ILibAsyncSocket.c │ ├── ILibAsyncSocket.h │ ├── ILibAsyncUDPSocket.c │ ├── ILibAsyncUDPSocket.h │ ├── ILibParsers.c │ ├── ILibParsers.h │ ├── ILibSSDPClient.c │ ├── ILibSSDPClient.h │ ├── ILibThreadPool.c │ ├── ILibThreadPool.h │ ├── ILibWebClient.c │ ├── ILibWebClient.h │ ├── ILibWebServer.c │ ├── ILibWebServer.h │ ├── Main.c │ ├── Old │ │ ├── EULA.txt │ │ ├── ILibAsyncServerSocket.c │ │ ├── ILibAsyncServerSocket.h │ │ ├── ILibAsyncSocket.c │ │ ├── ILibAsyncSocket.h │ │ ├── ILibAsyncUDPSocket.c │ │ ├── ILibAsyncUDPSocket.h │ │ ├── ILibParsers.c │ │ ├── ILibParsers.h │ │ ├── ILibSSDPClient.c │ │ ├── ILibSSDPClient.h │ │ ├── ILibThreadPool.c │ │ ├── ILibThreadPool.h │ │ ├── ILibWebClient.c │ │ ├── ILibWebClient.h │ │ ├── ILibWebServer.c │ │ ├── ILibWebServer.h │ │ ├── Main.c │ │ ├── Sample.ico │ │ ├── UPnPControlPoint.c │ │ ├── UPnPControlPoint.h │ │ ├── UPnPControlPointStructs.h │ │ ├── UPnPMicroStack.c │ │ └── UPnPMicroStack.h │ ├── PPC │ │ ├── SampleProject.cpp │ │ ├── SampleProject.h │ │ ├── SampleProject.ico │ │ ├── SampleProject.rc │ │ ├── SampleProject.vcp │ │ ├── SampleProject.vcw │ │ ├── SampleProjectDlg.cpp │ │ ├── SampleProjectDlg.h │ │ ├── StdAfx.cpp │ │ ├── StdAfx.h │ │ ├── newres.h │ │ └── resource.h │ ├── PPC_CP │ │ ├── SampleProject.cpp │ │ ├── SampleProject.h │ │ ├── SampleProject.ico │ │ ├── SampleProject.rc │ │ ├── SampleProject.vcp │ │ ├── SampleProject.vcw │ │ ├── SampleProjectDlg.cpp │ │ ├── SampleProjectDlg.h │ │ ├── StdAfx.cpp │ │ ├── StdAfx.h │ │ ├── newres.h │ │ └── resource.h │ ├── Posix │ │ └── makefile │ ├── Sample.ico │ ├── Symbian │ │ ├── ILibChainAdaptor.cpp │ │ ├── ILibChainAdaptor.h │ │ ├── ILibChainDefs.h │ │ ├── ILibChainEngine.cpp │ │ ├── ILibChainEngine.h │ │ ├── ILibSocketWrapper.cpp │ │ ├── ILibSocketWrapper.h │ │ ├── ILibSymbianSemaphore.cpp │ │ ├── ILibSymbianSemaphore.h │ │ ├── sample.cpp │ │ └── template.mmp │ ├── UPnPControlPoint.c │ ├── UPnPControlPoint.h │ ├── UPnPControlPointStructs.h │ ├── UPnPMicroStack.c │ ├── UPnPMicroStack.h │ └── Win32 │ │ ├── UPnPSample.sln │ │ ├── UPnPSample.vcproj │ │ ├── stdafx.cpp │ │ └── stdafx.h ├── JavaAndroidGenerator.cs ├── LibraryGenerationForm.cs ├── LibraryGenerationForm.resx ├── LibraryGenerator.cs ├── MainForm.cs ├── MainForm.resx ├── Media │ ├── Folder16-2.png │ ├── Folder20-2.png │ ├── Folder24-2.png │ ├── QuestionIcon120b.png │ └── QuestionIcon48b.png ├── Program.cs ├── Properties │ ├── Resources.Designer.cs │ └── Resources.resx ├── Resources │ ├── QuestionIcon120b.png │ └── QuestionIcon48b.png ├── Sample │ ├── Bryan's Funky Light2.upnpsg │ ├── Bryan's Funky Test.upnpsg │ ├── Bryan.upnpsg │ ├── Bryan2.upnpsg │ ├── CDS_SRS_10_29_04.upnpsg │ ├── CEG_MediaServer.upnpsg │ ├── CERT_TEST.upnpsg │ ├── CP2.upnpsg │ ├── CPP_TEST.upnpsg │ ├── CPTEST.upnpsg │ ├── CertTest.upnpsg │ ├── Copy of Intel AV Media Server.upnpsg │ ├── Copy of Intel AV Renderer.upnpsg │ ├── Copy of Intel UPnP Light.upnpsg │ ├── Copy of Intel UPnP Light2.upnpsg │ ├── Copy of Intel UPnP Light3.upnpsg │ ├── Copy of Intel XWPC Adapter.upnpsg │ ├── DLNA_MediaServer.upnpsg │ ├── DLNA_MediaServer2.upnpsg │ ├── DMS_SEARCH.upnpsg │ ├── DualStackTest.upnpsg │ ├── DualStackTest_LINUX.upnpsg │ ├── IGD.upnpsg │ ├── Intel AV Media Server 2.upnpsg │ ├── Intel AV Media Server.upnpsg │ ├── Intel AV Renderer.upnpsg │ ├── Intel MicroMediaRenderer-10-23-02.upnpsg │ ├── Intel MicroMediaRenderer.upnpsg │ ├── Intel MicroMediaRio.upnpsg │ ├── Intel Remote IO.upnpsg │ ├── Intel Remote IO2.upnpsg │ ├── Intel UPnP Light PPC.upnpsg │ ├── Intel UPnP Light Win CPP.upnpsg │ ├── Intel UPnP Light Win.upnpsg │ ├── Intel UPnP Light.upnpsg │ ├── Intel UPnP Light_MulticastEvent.upnpsg │ ├── Intel UPnP Light__Plugfest.upnpsg │ ├── Intel XWPC Adapter.upnpsg │ ├── LightBulb_Plugfest.xml │ ├── Light_NonEvented.upnpsg │ ├── Linux_Light.upnpsg │ ├── MSTest.upnpsg │ ├── MicroMediaRenderer - AVTransport.xml │ ├── MicroMediaServer │ │ ├── Intel Micro Media Server (Windows).upnpsg │ │ ├── Intel Micro Media Server PPC.upnpsg │ │ ├── Intel Micro Media Server.upnpsg │ │ └── Intel MicroMediaRenderer Reference.upnpsg │ ├── PowerManagement.upnpsg │ ├── Pronay_Server.upnpsg │ ├── RADA.upnpsg │ ├── RUIClient_0_9.upnpsg │ ├── RUIServer.upnpsg │ ├── SCDP_DimmingService.0001.xml │ ├── SCPD_SwitchPower.0001.xml │ ├── SRS_062504.upnpsg │ ├── SRS_CDS_080504.upnpsg │ ├── Sample Device Builder Settings │ │ ├── Intel AV Media Server Limited.upnpsg │ │ ├── Intel AV Media Server.upnpsg │ │ ├── Intel AV Renderer.upnpsg │ │ ├── Intel Access Point Device.upnpsg │ │ ├── Intel IGDv2 Draft.upnpsg │ │ ├── Intel Remote IO.upnpsg │ │ ├── Intel UPnP Light.upnpsg │ │ └── Intel XWPC Adapter.upnpsg │ ├── Sample Service Descriptions │ │ ├── AV_AVTransport-0.9.xml │ │ ├── AV_ConnectionManager_0-9.xml │ │ ├── AV_ContentDirectory_0-9.xml │ │ ├── AV_RenderingControl_0-9.xml │ │ ├── HomeAutomation_Dimming_896.xml │ │ ├── HomeAutomation_SwitchPower_896.xml │ │ ├── IGD2_AP_Authentication.xml │ │ ├── IGD2_AP_Configuration.xml │ │ └── UPnPSec_Device Security.xml │ ├── Sample.upnpsg │ ├── TestVar.upnpsg │ ├── UPnP_AV_RendererControl 1.0.xml │ ├── service.xml │ ├── t2.upnpsg │ ├── test.upnpsg │ └── test2.upnpsg ├── ServiceGenerator.cs ├── SettingsForm.cs ├── SettingsForm.resx ├── SourceCodeRepository.cs ├── SourceCodeRepository_2.cs ├── SourceCodeRepository_blank.cs ├── UPnPDeviceLocator.cs ├── UPnPDeviceLocator.resx ├── UPnPServiceLocator.cs ├── UPnPServiceLocator.resx ├── UPnPStackBuilder.ico ├── UPnPStackBuilder.sln ├── UPnPStackBuilder.suo.old └── Util │ ├── ILibParsers.c │ ├── ILibParsers.h │ ├── Main.c │ ├── SourceCodeInjector.exe │ ├── SourceCodeInjector.sln │ ├── SourceCodeInjector.vcproj │ ├── SourceCodeInjector.vcxproj │ ├── SourceCodeInjector.vcxproj.filters │ ├── SourceCodeRepository_blank.cs │ ├── stdafx.cpp │ └── stdafx.h ├── DeviceRelay ├── AssemblyInfo.cs ├── ConnectionForm.cs ├── ConnectionForm.resx ├── CpGateKeeper.cs ├── DeviceRelay.csproj ├── DeviceSelector.cs ├── DeviceSelector.resx ├── DvGateKeeper.cs ├── Gatekeeper.cs ├── MainForm.cs ├── MainForm.resx ├── Media │ ├── Action1.gif │ ├── Action2.gif │ ├── ClosedBox.png │ └── OpenBox.png ├── ModifyDevice.cs ├── ModifyDevice.resx ├── PortNumberForm.cs ├── PortNumberForm.resx ├── ProxyDeviceFactory.cs ├── TraceForm.cs ├── TraceForm.resx ├── UPnPRelay.ico ├── UPnPRelay.sln └── UPnPRelayDevice.cs ├── DeviceSniffer ├── AddressFilterForm.cs ├── AddressFilterForm.resx ├── AssemblyInfo.cs ├── CustomSearch.cs ├── CustomSearch.resx ├── DeviceSniffer.csproj ├── HttpRequestor.cs ├── HttpRequestor.resx ├── MainForm.cs ├── MainForm.resx ├── Media │ ├── Packet.bmp │ ├── UPnPSniffer.bmp │ └── UPnPSniffer.png ├── Program.cs ├── UPnPMulticastSniffer.cs ├── UPnPSearchSniffer.cs ├── UPnPSniffer.ico └── UPnPSniffer.sln ├── DeviceSpy.sln ├── DeviceSpy ├── AssemblyInfo.cs ├── DeviceSpy.csproj ├── DeviceSpy.ico ├── ForceLoad.cs ├── ForceLoad.resx ├── MainForm.cs ├── MainForm.fr.resx ├── MainForm.resx ├── Media │ ├── Action1.gif │ ├── Action2.gif │ ├── Action3.gif │ ├── Action4.gif │ ├── Computer24.bmp │ ├── Computer24.gif │ ├── Device24.bmp │ ├── Device24.gif │ ├── Folder16-1.bmp │ ├── Folder16-2.bmp │ ├── Folder24-1.bmp │ ├── Folder24-2.bmp │ ├── Method24-2.bmp │ ├── Method24-2.gif │ ├── Method24-3.bmp │ ├── Method24.bmp │ ├── Service24-2.bmp │ ├── Service24-2.gif │ ├── Service24-3.bmp │ ├── Service24.bmp │ ├── UPnP-Spy.ico │ ├── Variable24-2.bmp │ └── Variable24.bmp ├── MethodInvoke.cs ├── MethodInvoke.fr.resx ├── MethodInvoke.resx ├── Program.cs ├── UPnpArgumentControl.cs ├── UPnpArgumentControl.fr.resx ├── UPnpArgumentControl.resx ├── ValidationForm.cs └── ValidationForm.resx ├── DeviceValidator ├── AdvancedTestGroup.cs ├── AssemblyInfo.cs ├── BasicTestGroup.cs ├── CdsSubTest.cs ├── CdsTestGroup.cs ├── Cds_BrowseAll.cs ├── Cds_BrowseFilter.cs ├── Cds_BrowseFilterRangeSort.cs ├── Cds_BrowseRange.cs ├── Cds_BrowseSortCriteria.cs ├── Cds_GetSearchCapabilities.cs ├── Cds_GetSortCapabilities.cs ├── Cds_GetSystemUpdateID.cs ├── DataPointAnalyzer.cs ├── DeviceScriptorTest.cs ├── DeviceSelector.cs ├── DeviceSelector.resx ├── DeviceValidator.csproj ├── IUPnPTest.cs ├── MainForm.cs ├── MainForm.resx ├── Media │ ├── Test24-Disabled.png │ ├── Test24-Disabled2.png │ ├── Test24-Enabled.png │ ├── Test24-Enabled2.png │ ├── Test24-Failed.png │ ├── Test24-Pass.png │ ├── Test24-PassExceptional.png │ ├── Test24-Untested.bmp │ ├── Test24-Warn.png │ └── Thumbs.db ├── Program.cs ├── QueryBox.cs ├── QueryBox.resx ├── SendLogFrom.cs ├── SendLogFrom.resx ├── SubTest.cs ├── TestQueue.cs ├── UPnPAVRendererTestScenario.cs ├── UPnPDeviceLocator.cs ├── UPnPDeviceLocator.resx ├── UPnPServiceLocator.cs ├── UPnPServiceLocator.resx ├── UPnPTestDiscovery.cs ├── UPnPTestInvokeValid.cs ├── UPnPTestSubscribe.cs ├── UPnPTestViewOnly.cs ├── UPnPValidator.ico └── UPnPValidator.sln ├── MediaController ├── AVMediaController.csproj ├── AVMediaController.sln ├── AssemblyInfo.cs ├── EditXmlForm.cs ├── EditXmlForm.resx ├── ForceLoad.cs ├── ForceLoad.resx ├── MainForm.cs ├── MainForm.resx ├── Media │ ├── Audio Document 16.bmp │ ├── Audio Document.png │ ├── Balance Left.png │ ├── Balance Right.png │ ├── Folder16-1.bmp │ ├── Folder16-2.bmp │ ├── Gears Document 16.bmp │ ├── Gears Document.png │ ├── Generic Document 16.bmp │ ├── Generic Document.png │ ├── Image Document 16.bmp │ ├── Image Document.png │ ├── MediaController Icon.gif │ ├── MediaController Icon2.gif │ ├── MediaController.ico │ ├── Mixed Media Document 16.bmp │ ├── Mixed Media Document.png │ ├── Mute Button Black3.png │ ├── Muted Button Black3.png │ ├── NextTrack Button Black2.png │ ├── NextTrack Button Black3.png │ ├── Pause Button Black3.png │ ├── Pause Button Black4.png │ ├── Play Button Black3.png │ ├── Play Button Black4.png │ ├── PrevTrack Button Black2.png │ ├── PrevTrack Button Black3.png │ ├── Record Button Black.png │ ├── Record Button Black3.png │ ├── Record Button Black4.png │ ├── Stop Button Black3.png │ ├── Stop Button Black4.png │ ├── Unknown Document 16.bmp │ ├── Unknown Document.png │ ├── Video Document 16.bmp │ └── Video Document.png ├── MediaPropertyControl.cs ├── MediaPropertyControl.resx ├── MediaPropertyForm.cs ├── MediaPropertyForm.resx ├── MediaSearchForm.cs ├── MediaSearchForm.resx ├── Program.cs ├── RendererAudioControlForm.cs ├── RendererAudioControlForm.resx ├── RendererControl.cs ├── RendererControl.resx ├── RendererControlForm.cs ├── RendererControlForm.resx ├── RendererDebugForm.cs ├── RendererDebugForm.resx ├── TransferForm.cs ├── TransferForm.resx └── UPnpMediaController.ico ├── MediaRenderer ├── AVMediaRenderer.csproj ├── AVMediaRenderer.sln ├── AssemblyInfo.cs ├── ContentUriForm.cs ├── ContentUriForm.resx ├── DebugForm.cs ├── DebugForm.resx ├── ImageVideoForm.cs ├── ImageVideoForm.resx ├── MainForm.cs ├── MainForm.resx ├── Media │ ├── Balance Left.png │ ├── Balance Right.png │ ├── Buttons.psd │ ├── Buttons2.psd │ ├── Buttons3.psd │ ├── Buttons4.psd │ ├── Buttons5.psd │ ├── Mute Button Black.png │ ├── Mute Button Black3.png │ ├── Muted Button Black.png │ ├── Muted Button Black3.png │ ├── Pause Button Black.png │ ├── Pause Button Black2.png │ ├── Pause Button Black3.png │ ├── Pause Button Black4.png │ ├── Play Button Black.png │ ├── Play Button Black2.png │ ├── Play Button Black3.png │ ├── Play Button Black4.png │ ├── Record Button Black.png │ ├── Record Button Black3.png │ ├── Record Button Black4.png │ ├── Soft Button Black.png │ ├── Soft Button Black3.png │ ├── Stop Button Black.png │ ├── Stop Button Black2.png │ ├── Stop Button Black3.png │ ├── Stop Button Black4.png │ ├── Thumbs.db │ ├── UPnP Renderer Toolbar Button.png │ ├── UPnP Renderer.gif │ └── UPnP Renderer.png ├── MediaRenderer.ico ├── Program.cs ├── RendererForm.cs └── RendererForm.resx ├── MediaServer ├── AVMediaServer.sln ├── UPnPMediaServer │ ├── AVMediaServer.csproj │ ├── AVMediaServer.ico │ ├── AssemblyInfo.cs │ ├── ConfigForm.cs │ ├── ConfigForm.resx │ ├── DebugForm.cs │ ├── DebugForm.resx │ ├── EventsForm.cs │ ├── EventsForm.resx │ ├── MainForm.cs │ ├── MainForm.resx │ ├── Media │ │ ├── Action1.gif │ │ ├── Action2.gif │ │ ├── Folder16-1.bmp │ │ ├── Folder16-2.bmp │ │ ├── LeftArrow.bmp │ │ ├── RightArrow.bmp │ │ └── UPnPMediaServer.ico │ ├── Program.cs │ ├── Sample CDS External Link.cdslnk │ ├── SocketDataWindow.cs │ └── SocketDataWindow.resx ├── UPnPMediaServerCore │ ├── AssemblyInfo.cs │ ├── MediaServerCore.cs │ └── UPnPMediaServerCore.csproj └── UPnPMediaServerService │ ├── AssemblyInfo.cs │ ├── MediaServerService.cs │ ├── MediaServerService.resx │ ├── ProjectInstaller.cs │ ├── ProjectInstaller.resx │ ├── UPnPMediaServer.ico │ ├── UPnPMediaServerService.csproj │ └── install │ ├── install.bat │ └── uninstall.bat ├── MediaWizard ├── AVMediaWizard.csproj ├── AVMediaWizard.ico ├── AVMediaWizard.sln ├── AssemblyInfo.cs ├── CdsBrowserForm.cs ├── CdsBrowserForm.resx ├── MainForm.cs ├── MainForm.resx ├── Media │ ├── BlueProgressBar.png │ ├── BlueVolumeBar.PNG │ ├── Documents │ │ ├── Audio Document.png │ │ ├── Gears Document.png │ │ ├── Generic Document.png │ │ ├── Image Document.png │ │ ├── Mixed Media Document.png │ │ └── Video Document.png │ ├── Faded Background 2.bmp │ ├── Faded Background.bmp │ ├── GB-NextTrack-1.png │ ├── GB-NextTrack-2.png │ ├── GB-NextTrack-3.png │ ├── GB-NextTrack-4.png │ ├── GB-Pause-1.png │ ├── GB-Pause-2.png │ ├── GB-Pause-3.png │ ├── GB-Pause-4.png │ ├── GB-Play-1.png │ ├── GB-Play-2.png │ ├── GB-Play-3.png │ ├── GB-Play-4.png │ ├── GB-PrevTrack-1.png │ ├── GB-PrevTrack-2.png │ ├── GB-PrevTrack-3.png │ ├── GB-PrevTrack-4.png │ ├── GB-SeekBack-1.png │ ├── GB-SeekBack-2.png │ ├── GB-SeekBack-3.png │ ├── GB-SeekBack-4.png │ ├── GB-SeekFwrd-1.png │ ├── GB-SeekFwrd-2.png │ ├── GB-SeekFwrd-3.png │ ├── GB-SeekFwrd-4.png │ ├── GB-Small-Down-1.png │ ├── GB-Small-Down-2.png │ ├── GB-Small-Down-3.png │ ├── GB-Small-Down-4.png │ ├── GB-Small-Up-1.png │ ├── GB-Small-Up-2.png │ ├── GB-Small-Up-3.png │ ├── GB-Small-Up-4.png │ ├── GB-Stop-1.png │ ├── GB-Stop-2.png │ ├── GB-Stop-3.png │ ├── GB-Stop-4.png │ ├── GreenProgressBar.png │ ├── GreenVolumeBar.PNG │ ├── NewVolumeBar.png │ ├── Separator Bar.png │ ├── UPnP Renderer.png │ ├── UPnP Wizard.png │ ├── UPnPWizard.bmp │ └── UPnPWizard.ico └── Program.cs ├── NetworkLight ├── AssemblyInfo.cs ├── MainForm.cs ├── MainForm.en-US.resx ├── MainForm.en.resx ├── MainForm.fr.resx ├── MainForm.resx ├── Media │ ├── Light32.gif │ ├── lamp-0.jpg │ ├── lamp-10.jpg │ ├── lamp-100.jpg │ ├── lamp-20.jpg │ ├── lamp-30.jpg │ ├── lamp-40.jpg │ ├── lamp-50.jpg │ ├── lamp-60.jpg │ ├── lamp-70.jpg │ ├── lamp-80.jpg │ └── lamp-90.jpg ├── NetworkLight.csproj ├── NetworkLight.ico ├── NetworkLight.sln ├── Program.cs └── Properties │ ├── Resources.Designer.cs │ └── Resources.resx ├── ServiceAuthor ├── ActionEditForm.cs ├── ActionEditForm.fr.resx ├── ActionEditForm.resx ├── AddAllowedValueForm.cs ├── AddAllowedValueForm.fr.resx ├── AddAllowedValueForm.resx ├── AssemblyInfo.cs ├── ComplexItem.cs ├── ComplexItem.resx ├── ComplexTypeProperty.cs ├── ComplexTypeProperty.resx ├── Container.cs ├── Container.resx ├── ContainerProperty.cs ├── ContainerProperty.resx ├── DesignComplexType.cs ├── DesignComplexType.resx ├── FieldForm.cs ├── FieldForm.resx ├── MainForm.cs ├── MainForm.fr.resx ├── MainForm.resx ├── Media │ ├── Action1.gif │ ├── Action2.gif │ ├── Action3.gif │ ├── Action4.gif │ ├── Computer24.bmp │ ├── Computer24.gif │ ├── Device24.bmp │ ├── Device24.gif │ ├── DownArrow.png │ ├── DownArrow8.png │ ├── Method24-2.gif │ ├── Pad-UPnP.gif │ ├── Pad32-UPnP.bmp │ ├── Pad32-UPnP.png │ ├── Pad32.bmp │ ├── Pad32.png │ ├── Service24-2.bmp │ ├── Service24-2.gif │ ├── UPnP-Service-Editor.ico │ ├── UPnPAuthor.ico │ ├── UpArrow.png │ ├── UpArrow8.png │ └── Variable24-2.bmp ├── Program.cs ├── Sample SCPD │ ├── AVTransport_SCPD.xml │ ├── ConnectionManager_SCPD.xml │ ├── ContentDirectory_SCPD.xml │ └── RenderingControl_SCPD.xml ├── ServiceAuthor.csproj ├── ServiceAuthor.ico ├── ServiceAuthor.sln ├── StateVariableEditForm.cs ├── StateVariableEditForm.fr.resx ├── StateVariableEditForm.resx ├── TestForm.cs ├── TestForm.resx ├── UPnPServiceLocator.cs ├── UPnPServiceLocator.fr.resx ├── UPnPServiceLocator.resx ├── UPnpArgumentEditControl.cs └── UPnpArgumentEditControl.resx ├── ToolsSetup ├── Installer.bmp ├── ToolsSetup.sln ├── ToolsSetup.vdproj ├── UpdateInfo-CompleteDevTools.ini └── sign.bat ├── ToolsSetupNetbook ├── Installer.bmp ├── ToolsSetupNetbook.sln ├── ToolsSetupNetbook.vdproj ├── ToolsSetupNetbook2.sln ├── ToolsSetupNetbook2.vdproj └── sign.bat ├── license.rtf └── license.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/.gitignore -------------------------------------------------------------------------------- /Global/FileHash/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.suo -------------------------------------------------------------------------------- /Global/FileHash/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/FileHash/AssemblyInfo.cs -------------------------------------------------------------------------------- /Global/FileHash/DataBlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/FileHash/DataBlock.cs -------------------------------------------------------------------------------- /Global/FileHash/FileHash.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/FileHash/FileHash.csproj -------------------------------------------------------------------------------- /Global/FileHash/FileHashDB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/FileHash/FileHashDB.cs -------------------------------------------------------------------------------- /Global/MetaData/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/MetaData/AssemblyInfo.cs -------------------------------------------------------------------------------- /Global/MetaData/Finder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/MetaData/Finder.cs -------------------------------------------------------------------------------- /Global/MetaData/Metadata.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/MetaData/Metadata.csproj -------------------------------------------------------------------------------- /Global/UPNPAVCDSML/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.suo -------------------------------------------------------------------------------- /Global/UPNPAVCDSML/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPNPAVCDSML/AssemblyInfo.cs -------------------------------------------------------------------------------- /Global/UPNPAVCDSML/AvsExceptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPNPAVCDSML/AvsExceptions.cs -------------------------------------------------------------------------------- /Global/UPNPAVCDSML/BlankObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPNPAVCDSML/BlankObject.cs -------------------------------------------------------------------------------- /Global/UPNPAVCDSML/CdsMetadataCaches.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPNPAVCDSML/CdsMetadataCaches.cs -------------------------------------------------------------------------------- /Global/UPNPAVCDSML/CreateClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPNPAVCDSML/CreateClass.cs -------------------------------------------------------------------------------- /Global/UPNPAVCDSML/ICdsElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPNPAVCDSML/ICdsElement.cs -------------------------------------------------------------------------------- /Global/UPNPAVCDSML/IMediaResource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPNPAVCDSML/IMediaResource.cs -------------------------------------------------------------------------------- /Global/UPNPAVCDSML/IUPnPMedia.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPNPAVCDSML/IUPnPMedia.cs -------------------------------------------------------------------------------- /Global/UPNPAVCDSML/IValueType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPNPAVCDSML/IValueType.cs -------------------------------------------------------------------------------- /Global/UPNPAVCDSML/ImageDimensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPNPAVCDSML/ImageDimensions.cs -------------------------------------------------------------------------------- /Global/UPNPAVCDSML/InnerXmlWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPNPAVCDSML/InnerXmlWriter.cs -------------------------------------------------------------------------------- /Global/UPNPAVCDSML/MediaBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPNPAVCDSML/MediaBuilder.cs -------------------------------------------------------------------------------- /Global/UPNPAVCDSML/MediaClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPNPAVCDSML/MediaClass.cs -------------------------------------------------------------------------------- /Global/UPNPAVCDSML/MediaComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPNPAVCDSML/MediaComparer.cs -------------------------------------------------------------------------------- /Global/UPNPAVCDSML/MediaComparer2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPNPAVCDSML/MediaComparer2.cs -------------------------------------------------------------------------------- /Global/UPNPAVCDSML/MediaContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPNPAVCDSML/MediaContainer.cs -------------------------------------------------------------------------------- /Global/UPNPAVCDSML/MediaEnums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPNPAVCDSML/MediaEnums.cs -------------------------------------------------------------------------------- /Global/UPNPAVCDSML/MediaItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPNPAVCDSML/MediaItem.cs -------------------------------------------------------------------------------- /Global/UPNPAVCDSML/MediaObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPNPAVCDSML/MediaObject.cs -------------------------------------------------------------------------------- /Global/UPNPAVCDSML/MediaProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPNPAVCDSML/MediaProperties.cs -------------------------------------------------------------------------------- /Global/UPNPAVCDSML/MediaResource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPNPAVCDSML/MediaResource.cs -------------------------------------------------------------------------------- /Global/UPNPAVCDSML/MediaSorter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPNPAVCDSML/MediaSorter.cs -------------------------------------------------------------------------------- /Global/UPNPAVCDSML/MediaSorter2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPNPAVCDSML/MediaSorter2.cs -------------------------------------------------------------------------------- /Global/UPNPAVCDSML/MetadataValueComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPNPAVCDSML/MetadataValueComparer.cs -------------------------------------------------------------------------------- /Global/UPNPAVCDSML/MimeTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPNPAVCDSML/MimeTypes.cs -------------------------------------------------------------------------------- /Global/UPNPAVCDSML/PreventNullCast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPNPAVCDSML/PreventNullCast.cs -------------------------------------------------------------------------------- /Global/UPNPAVCDSML/PropertyBool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPNPAVCDSML/PropertyBool.cs -------------------------------------------------------------------------------- /Global/UPNPAVCDSML/PropertyDate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPNPAVCDSML/PropertyDate.cs -------------------------------------------------------------------------------- /Global/UPNPAVCDSML/PropertyDateTime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPNPAVCDSML/PropertyDateTime.cs -------------------------------------------------------------------------------- /Global/UPNPAVCDSML/PropertyEnumWriteStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPNPAVCDSML/PropertyEnumWriteStatus.cs -------------------------------------------------------------------------------- /Global/UPNPAVCDSML/PropertyInt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPNPAVCDSML/PropertyInt.cs -------------------------------------------------------------------------------- /Global/UPNPAVCDSML/PropertyLanguage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPNPAVCDSML/PropertyLanguage.cs -------------------------------------------------------------------------------- /Global/UPNPAVCDSML/PropertyLong.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPNPAVCDSML/PropertyLong.cs -------------------------------------------------------------------------------- /Global/UPNPAVCDSML/PropertyMappings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPNPAVCDSML/PropertyMappings.cs -------------------------------------------------------------------------------- /Global/UPNPAVCDSML/PropertyPersonWithRole.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPNPAVCDSML/PropertyPersonWithRole.cs -------------------------------------------------------------------------------- /Global/UPNPAVCDSML/PropertyStorageMedium.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPNPAVCDSML/PropertyStorageMedium.cs -------------------------------------------------------------------------------- /Global/UPNPAVCDSML/PropertyString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPNPAVCDSML/PropertyString.cs -------------------------------------------------------------------------------- /Global/UPNPAVCDSML/PropertyUInt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPNPAVCDSML/PropertyUInt.cs -------------------------------------------------------------------------------- /Global/UPNPAVCDSML/PropertyULong.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPNPAVCDSML/PropertyULong.cs -------------------------------------------------------------------------------- /Global/UPNPAVCDSML/PropertyUri.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPNPAVCDSML/PropertyUri.cs -------------------------------------------------------------------------------- /Global/UPNPAVCDSML/ProtocolInfoString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPNPAVCDSML/ProtocolInfoString.cs -------------------------------------------------------------------------------- /Global/UPNPAVCDSML/ResourceBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPNPAVCDSML/ResourceBuilder.cs -------------------------------------------------------------------------------- /Global/UPNPAVCDSML/SearchClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPNPAVCDSML/SearchClass.cs -------------------------------------------------------------------------------- /Global/UPNPAVCDSML/SortedObjectCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPNPAVCDSML/SortedObjectCache.cs -------------------------------------------------------------------------------- /Global/UPNPAVCDSML/StorageMediums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPNPAVCDSML/StorageMediums.cs -------------------------------------------------------------------------------- /Global/UPNPAVCDSML/TagExtractor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPNPAVCDSML/TagExtractor.cs -------------------------------------------------------------------------------- /Global/UPNPAVCDSML/Tags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPNPAVCDSML/Tags.cs -------------------------------------------------------------------------------- /Global/UPNPAVCDSML/ToXmlData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPNPAVCDSML/ToXmlData.cs -------------------------------------------------------------------------------- /Global/UPNPAVCDSML/ToXmlFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPNPAVCDSML/ToXmlFormatter.cs -------------------------------------------------------------------------------- /Global/UPNPAVCDSML/UPNPAVCDSML.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPNPAVCDSML/UPNPAVCDSML.sln -------------------------------------------------------------------------------- /Global/UPNPAVCDSML/UPnPAVCDSML.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPNPAVCDSML/UPnPAVCDSML.csproj -------------------------------------------------------------------------------- /Global/UPNPAVCDSML/_ArrayList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPNPAVCDSML/_ArrayList.cs -------------------------------------------------------------------------------- /Global/UPNPAVCDSML/_DateTime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPNPAVCDSML/_DateTime.cs -------------------------------------------------------------------------------- /Global/UPNPAVCDSML/_Hashtable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPNPAVCDSML/_Hashtable.cs -------------------------------------------------------------------------------- /Global/UPNPAVCDSML/_Int.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPNPAVCDSML/_Int.cs -------------------------------------------------------------------------------- /Global/UPNPAVCDSML/_Long.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPNPAVCDSML/_Long.cs -------------------------------------------------------------------------------- /Global/UPNPAVCDSML/_SortedList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPNPAVCDSML/_SortedList.cs -------------------------------------------------------------------------------- /Global/UPNPAVCDSML/_TimeSpan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPNPAVCDSML/_TimeSpan.cs -------------------------------------------------------------------------------- /Global/UPNPAVCDSML/_UInt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPNPAVCDSML/_UInt.cs -------------------------------------------------------------------------------- /Global/UPNPAVCDSML/_ULong.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPNPAVCDSML/_ULong.cs -------------------------------------------------------------------------------- /Global/UPNPAVMSCP/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.suo -------------------------------------------------------------------------------- /Global/UPNPAVMSCP/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPNPAVMSCP/AssemblyInfo.cs -------------------------------------------------------------------------------- /Global/UPNPAVMSCP/AvsCpExceptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPNPAVMSCP/AvsCpExceptions.cs -------------------------------------------------------------------------------- /Global/UPNPAVMSCP/BrowseRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPNPAVMSCP/BrowseRequest.cs -------------------------------------------------------------------------------- /Global/UPNPAVMSCP/CdsBrowser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPNPAVMSCP/CdsBrowser.cs -------------------------------------------------------------------------------- /Global/UPNPAVMSCP/CdsSpider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPNPAVMSCP/CdsSpider.cs -------------------------------------------------------------------------------- /Global/UPNPAVMSCP/ContainerDiscovery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPNPAVMSCP/ContainerDiscovery.cs -------------------------------------------------------------------------------- /Global/UPNPAVMSCP/CpMediaBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPNPAVMSCP/CpMediaBuilder.cs -------------------------------------------------------------------------------- /Global/UPNPAVMSCP/CpMediaContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPNPAVMSCP/CpMediaContainer.cs -------------------------------------------------------------------------------- /Global/UPNPAVMSCP/CpMediaItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPNPAVMSCP/CpMediaItem.cs -------------------------------------------------------------------------------- /Global/UPNPAVMSCP/CpMediaResource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPNPAVMSCP/CpMediaResource.cs -------------------------------------------------------------------------------- /Global/UPNPAVMSCP/CpMediaServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPNPAVMSCP/CpMediaServer.cs -------------------------------------------------------------------------------- /Global/UPNPAVMSCP/CpResourceBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPNPAVMSCP/CpResourceBuilder.cs -------------------------------------------------------------------------------- /Global/UPNPAVMSCP/CpRootCollectionContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPNPAVMSCP/CpRootCollectionContainer.cs -------------------------------------------------------------------------------- /Global/UPNPAVMSCP/CpRootContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPNPAVMSCP/CpRootContainer.cs -------------------------------------------------------------------------------- /Global/UPNPAVMSCP/ICpMedia.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPNPAVMSCP/ICpMedia.cs -------------------------------------------------------------------------------- /Global/UPNPAVMSCP/MediaBrowser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPNPAVMSCP/MediaBrowser.cs -------------------------------------------------------------------------------- /Global/UPNPAVMSCP/MediaServerDiscovery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPNPAVMSCP/MediaServerDiscovery.cs -------------------------------------------------------------------------------- /Global/UPNPAVMSCP/Requests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPNPAVMSCP/Requests.cs -------------------------------------------------------------------------------- /Global/UPNPAVMSCP/ResourceTransfer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPNPAVMSCP/ResourceTransfer.cs -------------------------------------------------------------------------------- /Global/UPNPAVMSCP/ServerBrowser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPNPAVMSCP/ServerBrowser.cs -------------------------------------------------------------------------------- /Global/UPNPAVMSCP/UPNPAVMSCP.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPNPAVMSCP/UPNPAVMSCP.sln -------------------------------------------------------------------------------- /Global/UPNPAVMSCP/UPnPAVMSCP.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPNPAVMSCP/UPnPAVMSCP.csproj -------------------------------------------------------------------------------- /Global/UPNPAVMSDV/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.suo -------------------------------------------------------------------------------- /Global/UPNPAVMSDV/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPNPAVMSDV/AssemblyInfo.cs -------------------------------------------------------------------------------- /Global/UPNPAVMSDV/AvsDvExceptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPNPAVMSDV/AvsDvExceptions.cs -------------------------------------------------------------------------------- /Global/UPNPAVMSDV/DeviceInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPNPAVMSDV/DeviceInfo.cs -------------------------------------------------------------------------------- /Global/UPNPAVMSDV/DvMediaBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPNPAVMSDV/DvMediaBuilder.cs -------------------------------------------------------------------------------- /Global/UPNPAVMSDV/DvMediaContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPNPAVMSDV/DvMediaContainer.cs -------------------------------------------------------------------------------- /Global/UPNPAVMSDV/DvMediaItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPNPAVMSDV/DvMediaItem.cs -------------------------------------------------------------------------------- /Global/UPNPAVMSDV/DvMediaReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPNPAVMSDV/DvMediaReference.cs -------------------------------------------------------------------------------- /Global/UPNPAVMSDV/DvMediaResource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPNPAVMSDV/DvMediaResource.cs -------------------------------------------------------------------------------- /Global/UPNPAVMSDV/DvResourceBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPNPAVMSDV/DvResourceBuilder.cs -------------------------------------------------------------------------------- /Global/UPNPAVMSDV/DvRootContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPNPAVMSDV/DvRootContainer.cs -------------------------------------------------------------------------------- /Global/UPNPAVMSDV/IDvMedia.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPNPAVMSDV/IDvMedia.cs -------------------------------------------------------------------------------- /Global/UPNPAVMSDV/InnerXmlWriterDv.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPNPAVMSDV/InnerXmlWriterDv.cs -------------------------------------------------------------------------------- /Global/UPNPAVMSDV/MediaServerDevice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPNPAVMSDV/MediaServerDevice.cs -------------------------------------------------------------------------------- /Global/UPNPAVMSDV/ToXmlDataDv.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPNPAVMSDV/ToXmlDataDv.cs -------------------------------------------------------------------------------- /Global/UPNPAVMSDV/UPNPAVMSDV.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPNPAVMSDV/UPNPAVMSDV.sln -------------------------------------------------------------------------------- /Global/UPNPAVMSDV/UPnPAVMSDV.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPNPAVMSDV/UPnPAVMSDV.csproj -------------------------------------------------------------------------------- /Global/UPNPAV_DeviceRendererStack/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.suo -------------------------------------------------------------------------------- /Global/UPNPAV_DeviceRendererStack/AVConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPNPAV_DeviceRendererStack/AVConnection.cs -------------------------------------------------------------------------------- /Global/UPNPAV_DeviceRendererStack/AVRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPNPAV_DeviceRendererStack/AVRenderer.cs -------------------------------------------------------------------------------- /Global/UPNPAV_DeviceRendererStack/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPNPAV_DeviceRendererStack/AssemblyInfo.cs -------------------------------------------------------------------------------- /Global/UPNPAV_RendererStack/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.suo -------------------------------------------------------------------------------- /Global/UPNPAV_RendererStack/AVConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPNPAV_RendererStack/AVConnection.cs -------------------------------------------------------------------------------- /Global/UPNPAV_RendererStack/AVPlayList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPNPAV_RendererStack/AVPlayList.cs -------------------------------------------------------------------------------- /Global/UPNPAV_RendererStack/AVRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPNPAV_RendererStack/AVRenderer.cs -------------------------------------------------------------------------------- /Global/UPNPAV_RendererStack/AVRendererDiscovery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPNPAV_RendererStack/AVRendererDiscovery.cs -------------------------------------------------------------------------------- /Global/UPNPAV_RendererStack/AVTargetDiscovery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPNPAV_RendererStack/AVTargetDiscovery.cs -------------------------------------------------------------------------------- /Global/UPNPAV_RendererStack/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPNPAV_RendererStack/AssemblyInfo.cs -------------------------------------------------------------------------------- /Global/UPNPAV_RendererStack/CpAVTransport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPNPAV_RendererStack/CpAVTransport.cs -------------------------------------------------------------------------------- /Global/UPNPAV_RendererStack/CpConnectionManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPNPAV_RendererStack/CpConnectionManager.cs -------------------------------------------------------------------------------- /Global/UPNPAV_RendererStack/CpRenderingControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPNPAV_RendererStack/CpRenderingControl.cs -------------------------------------------------------------------------------- /Global/UPNP_AV/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.suo -------------------------------------------------------------------------------- /Global/UPNP_AV/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPNP_AV/AssemblyInfo.cs -------------------------------------------------------------------------------- /Global/UPNP_AV/CpAVTransport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPNP_AV/CpAVTransport.cs -------------------------------------------------------------------------------- /Global/UPNP_AV/CpConnectionManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPNP_AV/CpConnectionManager.cs -------------------------------------------------------------------------------- /Global/UPNP_AV/CpContentDirectory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPNP_AV/CpContentDirectory.cs -------------------------------------------------------------------------------- /Global/UPNP_AV/CpRenderingControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPNP_AV/CpRenderingControl.cs -------------------------------------------------------------------------------- /Global/UPNP_AV/DvAVTransport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPNP_AV/DvAVTransport.cs -------------------------------------------------------------------------------- /Global/UPNP_AV/DvConnectionManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPNP_AV/DvConnectionManager.cs -------------------------------------------------------------------------------- /Global/UPNP_AV/DvContentDirectory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPNP_AV/DvContentDirectory.cs -------------------------------------------------------------------------------- /Global/UPNP_AV/DvRenderingControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPNP_AV/DvRenderingControl.cs -------------------------------------------------------------------------------- /Global/UPNP_AV/UPNPAV.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPNP_AV/UPNPAV.sln -------------------------------------------------------------------------------- /Global/UPNP_AV/UPnPAV.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPNP_AV/UPnPAV.csproj -------------------------------------------------------------------------------- /Global/UPnP/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPnP/AssemblyInfo.cs -------------------------------------------------------------------------------- /Global/UPnP/AsyncSocket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPnP/AsyncSocket.cs -------------------------------------------------------------------------------- /Global/UPnP/AutoUpdate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPnP/AutoUpdate.cs -------------------------------------------------------------------------------- /Global/UPnP/AutoUpdate.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPnP/AutoUpdate.designer.cs -------------------------------------------------------------------------------- /Global/UPnP/AutoUpdate.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPnP/AutoUpdate.resx -------------------------------------------------------------------------------- /Global/UPnP/Base64.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPnP/Base64.cs -------------------------------------------------------------------------------- /Global/UPnP/CircleStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPnP/CircleStream.cs -------------------------------------------------------------------------------- /Global/UPnP/DText.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPnP/DText.cs -------------------------------------------------------------------------------- /Global/UPnP/EventLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPnP/EventLogger.cs -------------------------------------------------------------------------------- /Global/UPnP/ExceptionForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPnP/ExceptionForm.cs -------------------------------------------------------------------------------- /Global/UPnP/ExceptionForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPnP/ExceptionForm.resx -------------------------------------------------------------------------------- /Global/UPnP/HTTPMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPnP/HTTPMessage.cs -------------------------------------------------------------------------------- /Global/UPnP/HTTPRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPnP/HTTPRequest.cs -------------------------------------------------------------------------------- /Global/UPnP/HTTPSession.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPnP/HTTPSession.cs -------------------------------------------------------------------------------- /Global/UPnP/HTTPSessionWatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPnP/HTTPSessionWatcher.cs -------------------------------------------------------------------------------- /Global/UPnP/HttpRequestor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPnP/HttpRequestor.cs -------------------------------------------------------------------------------- /Global/UPnP/InstanceTracker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPnP/InstanceTracker.cs -------------------------------------------------------------------------------- /Global/UPnP/InstanceTracker.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPnP/InstanceTracker.resx -------------------------------------------------------------------------------- /Global/UPnP/InstanceTracker2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPnP/InstanceTracker2.cs -------------------------------------------------------------------------------- /Global/UPnP/InstanceTracker2.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPnP/InstanceTracker2.resx -------------------------------------------------------------------------------- /Global/UPnP/LifeTimeMonitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPnP/LifeTimeMonitor.cs -------------------------------------------------------------------------------- /Global/UPnP/MiniWebServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPnP/MiniWebServer.cs -------------------------------------------------------------------------------- /Global/UPnP/NetworkInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPnP/NetworkInfo.cs -------------------------------------------------------------------------------- /Global/UPnP/Protocols.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPnP/Protocols.cs -------------------------------------------------------------------------------- /Global/UPnP/Resilience.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPnP/Resilience.txt -------------------------------------------------------------------------------- /Global/UPnP/SSDP.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPnP/SSDP.cs -------------------------------------------------------------------------------- /Global/UPnP/SafeTimer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPnP/SafeTimer.cs -------------------------------------------------------------------------------- /Global/UPnP/SafeTimer_SINGLE.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPnP/SafeTimer_SINGLE.cs -------------------------------------------------------------------------------- /Global/UPnP/ServiceDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPnP/ServiceDescription.cs -------------------------------------------------------------------------------- /Global/UPnP/ServiceGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPnP/ServiceGenerator.cs -------------------------------------------------------------------------------- /Global/UPnP/StringCompresser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPnP/StringCompresser.cs -------------------------------------------------------------------------------- /Global/UPnP/SyncInvokeAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPnP/SyncInvokeAdapter.cs -------------------------------------------------------------------------------- /Global/UPnP/UPnP.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPnP/UPnP.csproj -------------------------------------------------------------------------------- /Global/UPnP/UPnP.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPnP/UPnP.sln -------------------------------------------------------------------------------- /Global/UPnP/UPnPComplexType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPnP/UPnPComplexType.cs -------------------------------------------------------------------------------- /Global/UPnP/UPnPControlPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPnP/UPnPControlPoint.cs -------------------------------------------------------------------------------- /Global/UPnP/UPnPDebugObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPnP/UPnPDebugObject.cs -------------------------------------------------------------------------------- /Global/UPnP/UPnPDevice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPnP/UPnPDevice.cs -------------------------------------------------------------------------------- /Global/UPnP/UPnPDeviceFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPnP/UPnPDeviceFactory.cs -------------------------------------------------------------------------------- /Global/UPnP/UPnPDeviceWatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPnP/UPnPDeviceWatcher.cs -------------------------------------------------------------------------------- /Global/UPnP/UPnPInternalSmartControlPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPnP/UPnPInternalSmartControlPoint.cs -------------------------------------------------------------------------------- /Global/UPnP/UPnPModeratedStateVariable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPnP/UPnPModeratedStateVariable.cs -------------------------------------------------------------------------------- /Global/UPnP/UPnPProxyDevice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPnP/UPnPProxyDevice.cs -------------------------------------------------------------------------------- /Global/UPnP/UPnPService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPnP/UPnPService.cs -------------------------------------------------------------------------------- /Global/UPnP/UPnPServiceWatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPnP/UPnPServiceWatcher.cs -------------------------------------------------------------------------------- /Global/UPnP/UPnPSmartControlPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPnP/UPnPSmartControlPoint.cs -------------------------------------------------------------------------------- /Global/UPnP/UPnPStringFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPnP/UPnPStringFormatter.cs -------------------------------------------------------------------------------- /Global/UPnP/UnsafeTimer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPnP/UnsafeTimer.cs -------------------------------------------------------------------------------- /Global/UPnP/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPnP/Utils.cs -------------------------------------------------------------------------------- /Global/UPnP/WeakEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPnP/WeakEvent.cs -------------------------------------------------------------------------------- /Global/UPnP/__LockRMWO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPnP/__LockRMWO.cs -------------------------------------------------------------------------------- /Global/UPnP/__ReadOnlyCollections.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/UPnP/__ReadOnlyCollections.cs -------------------------------------------------------------------------------- /Global/ValidatorInterfaces/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/ValidatorInterfaces/AssemblyInfo.cs -------------------------------------------------------------------------------- /Global/ValidatorInterfaces/IUPnPTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Global/ValidatorInterfaces/IUPnPTest.cs -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/README.txt -------------------------------------------------------------------------------- /Samples/DeviceProtectionSample.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Samples/DeviceProtectionSample.doc -------------------------------------------------------------------------------- /Samples/DeviceProtectionSample/CPControlPoint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Samples/DeviceProtectionSample/CPControlPoint.c -------------------------------------------------------------------------------- /Samples/DeviceProtectionSample/CPControlPoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Samples/DeviceProtectionSample/CPControlPoint.h -------------------------------------------------------------------------------- /Samples/DeviceProtectionSample/DPServerInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Samples/DeviceProtectionSample/DPServerInfo.cpp -------------------------------------------------------------------------------- /Samples/DeviceProtectionSample/DPServerInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Samples/DeviceProtectionSample/DPServerInfo.h -------------------------------------------------------------------------------- /Samples/DeviceProtectionSample/DPTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Samples/DeviceProtectionSample/DPTest.cpp -------------------------------------------------------------------------------- /Samples/DeviceProtectionSample/DVMicroStack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Samples/DeviceProtectionSample/DVMicroStack.c -------------------------------------------------------------------------------- /Samples/DeviceProtectionSample/DVMicroStack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Samples/DeviceProtectionSample/DVMicroStack.h -------------------------------------------------------------------------------- /Samples/DeviceProtectionSample/DataTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Samples/DeviceProtectionSample/DataTypes.h -------------------------------------------------------------------------------- /Samples/DeviceProtectionSample/DeviceProtection.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Samples/DeviceProtectionSample/DeviceProtection.xml -------------------------------------------------------------------------------- /Samples/DeviceProtectionSample/ILibAsyncSocket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Samples/DeviceProtectionSample/ILibAsyncSocket.c -------------------------------------------------------------------------------- /Samples/DeviceProtectionSample/ILibAsyncSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Samples/DeviceProtectionSample/ILibAsyncSocket.h -------------------------------------------------------------------------------- /Samples/DeviceProtectionSample/ILibAsyncUDPSocket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Samples/DeviceProtectionSample/ILibAsyncUDPSocket.c -------------------------------------------------------------------------------- /Samples/DeviceProtectionSample/ILibAsyncUDPSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Samples/DeviceProtectionSample/ILibAsyncUDPSocket.h -------------------------------------------------------------------------------- /Samples/DeviceProtectionSample/ILibParsers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Samples/DeviceProtectionSample/ILibParsers.c -------------------------------------------------------------------------------- /Samples/DeviceProtectionSample/ILibParsers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Samples/DeviceProtectionSample/ILibParsers.h -------------------------------------------------------------------------------- /Samples/DeviceProtectionSample/ILibSSDPClient.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Samples/DeviceProtectionSample/ILibSSDPClient.c -------------------------------------------------------------------------------- /Samples/DeviceProtectionSample/ILibSSDPClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Samples/DeviceProtectionSample/ILibSSDPClient.h -------------------------------------------------------------------------------- /Samples/DeviceProtectionSample/ILibWebClient.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Samples/DeviceProtectionSample/ILibWebClient.c -------------------------------------------------------------------------------- /Samples/DeviceProtectionSample/ILibWebClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Samples/DeviceProtectionSample/ILibWebClient.h -------------------------------------------------------------------------------- /Samples/DeviceProtectionSample/ILibWebServer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Samples/DeviceProtectionSample/ILibWebServer.c -------------------------------------------------------------------------------- /Samples/DeviceProtectionSample/ILibWebServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Samples/DeviceProtectionSample/ILibWebServer.h -------------------------------------------------------------------------------- /Samples/DeviceProtectionSample/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Samples/DeviceProtectionSample/Main.cpp -------------------------------------------------------------------------------- /Samples/DeviceProtectionSample/Portability.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Samples/DeviceProtectionSample/Portability.c -------------------------------------------------------------------------------- /Samples/DeviceProtectionSample/Portability.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Samples/DeviceProtectionSample/Portability.h -------------------------------------------------------------------------------- /Samples/DeviceProtectionSample/ProtoUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Samples/DeviceProtectionSample/ProtoUtils.cpp -------------------------------------------------------------------------------- /Samples/DeviceProtectionSample/RegProtoMsgs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Samples/DeviceProtectionSample/RegProtoMsgs.cpp -------------------------------------------------------------------------------- /Samples/DeviceProtectionSample/RegProtoTlv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Samples/DeviceProtectionSample/RegProtoTlv.cpp -------------------------------------------------------------------------------- /Samples/DeviceProtectionSample/RegProtoTlv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Samples/DeviceProtectionSample/RegProtoTlv.h -------------------------------------------------------------------------------- /Samples/DeviceProtectionSample/RegProtocol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Samples/DeviceProtectionSample/RegProtocol.cpp -------------------------------------------------------------------------------- /Samples/DeviceProtectionSample/RegProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Samples/DeviceProtectionSample/RegProtocol.h -------------------------------------------------------------------------------- /Samples/DeviceProtectionSample/StateMachineInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Samples/DeviceProtectionSample/StateMachineInfo.h -------------------------------------------------------------------------------- /Samples/DeviceProtectionSample/UPnPSample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Samples/DeviceProtectionSample/UPnPSample.sln -------------------------------------------------------------------------------- /Samples/DeviceProtectionSample/UPnPSample.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Samples/DeviceProtectionSample/UPnPSample.vcproj -------------------------------------------------------------------------------- /Samples/DeviceProtectionSample/UPnPSample.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Samples/DeviceProtectionSample/UPnPSample.vcxproj -------------------------------------------------------------------------------- /Samples/DeviceProtectionSample/WPSEnrollee.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Samples/DeviceProtectionSample/WPSEnrollee.cpp -------------------------------------------------------------------------------- /Samples/DeviceProtectionSample/WPSRegistrar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Samples/DeviceProtectionSample/WPSRegistrar.cpp -------------------------------------------------------------------------------- /Samples/DeviceProtectionSample/WscCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Samples/DeviceProtectionSample/WscCommon.h -------------------------------------------------------------------------------- /Samples/DeviceProtectionSample/WscError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Samples/DeviceProtectionSample/WscError.h -------------------------------------------------------------------------------- /Samples/DeviceProtectionSample/WscHeaders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Samples/DeviceProtectionSample/WscHeaders.h -------------------------------------------------------------------------------- /Samples/DeviceProtectionSample/WscTlvBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Samples/DeviceProtectionSample/WscTlvBase.cpp -------------------------------------------------------------------------------- /Samples/DeviceProtectionSample/WscTlvBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Samples/DeviceProtectionSample/WscTlvBase.h -------------------------------------------------------------------------------- /Samples/DeviceProtectionSample/WscTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Samples/DeviceProtectionSample/WscTypes.h -------------------------------------------------------------------------------- /Samples/DeviceProtectionSample/regprotomsgs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Samples/DeviceProtectionSample/regprotomsgs.h -------------------------------------------------------------------------------- /Samples/DeviceProtectionSample/slist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Samples/DeviceProtectionSample/slist.c -------------------------------------------------------------------------------- /Samples/DeviceProtectionSample/slist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Samples/DeviceProtectionSample/slist.h -------------------------------------------------------------------------------- /Samples/DeviceProtectionSample/stdafx.cpp: -------------------------------------------------------------------------------- 1 | #include "stdafx.h" 2 | -------------------------------------------------------------------------------- /Samples/DeviceProtectionSample/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Samples/DeviceProtectionSample/stdafx.h -------------------------------------------------------------------------------- /Samples/DeviceProtectionSample/tutrace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Samples/DeviceProtectionSample/tutrace.cpp -------------------------------------------------------------------------------- /Samples/DeviceProtectionSample/tutrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Samples/DeviceProtectionSample/tutrace.h -------------------------------------------------------------------------------- /Samples/DeviceProtectionSample/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Samples/DeviceProtectionSample/utils.c -------------------------------------------------------------------------------- /Samples/DeviceProtectionSample/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Samples/DeviceProtectionSample/utils.h -------------------------------------------------------------------------------- /Samples/DeviceProtectionSample/wpsenrollee.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Samples/DeviceProtectionSample/wpsenrollee.h -------------------------------------------------------------------------------- /Samples/DeviceProtectionSample/wpsregistrar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Samples/DeviceProtectionSample/wpsregistrar.h -------------------------------------------------------------------------------- /Samples/EmbeddedSamples/Embedded Source Code/CDS Control Point - Windows/stdafx.cpp: -------------------------------------------------------------------------------- 1 | #include "stdafx.h" 2 | -------------------------------------------------------------------------------- /Samples/EmbeddedSamples/Embedded Source Code/CDS Device - Windows/stdafx.cpp: -------------------------------------------------------------------------------- 1 | #include "stdafx.h" 2 | -------------------------------------------------------------------------------- /Samples/EmbeddedSamples/Embedded Source Code/Renderer Control Point - Windows/stdafx.cpp: -------------------------------------------------------------------------------- 1 | #include "stdafx.h" 2 | -------------------------------------------------------------------------------- /Samples/EmbeddedSamples/Embedded Source Code/Renderer Device - Windows/stdafx.cpp: -------------------------------------------------------------------------------- 1 | #include "stdafx.h" 2 | -------------------------------------------------------------------------------- /Samples/EmbeddedSamples/Light Bulb Device/Win32/Light Bulb.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "resource.h" 4 | -------------------------------------------------------------------------------- /Samples/EmbeddedSamples/Light Bulb Device/Win32/stdafx.cpp: -------------------------------------------------------------------------------- 1 | #include "stdafx.h" 2 | -------------------------------------------------------------------------------- /Samples/EmbeddedSamples/Micro Av Renderer/DeviceBuilder/PocketPC/stdafx.cpp: -------------------------------------------------------------------------------- 1 | #include "stdafx.h" 2 | -------------------------------------------------------------------------------- /Samples/EmbeddedSamples/Micro Av Renderer/DeviceBuilder/Win32_Winsock1/stdafx.cpp: -------------------------------------------------------------------------------- 1 | #include "stdafx.h" 2 | -------------------------------------------------------------------------------- /Samples/EmbeddedSamples/Micro Av Renderer/DeviceBuilder/Win32_Winsock2/stdafx.cpp: -------------------------------------------------------------------------------- 1 | #include "stdafx.h" 2 | -------------------------------------------------------------------------------- /Samples/EmbeddedSamples/Micro Av Renderer/PocketPC_MmrRslMp/stdafx.cpp: -------------------------------------------------------------------------------- 1 | #include "stdafx.h" 2 | -------------------------------------------------------------------------------- /Samples/EmbeddedSamples/Micro Av Renderer/Utility.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Samples/EmbeddedSamples/Micro Av Renderer/Utility.c -------------------------------------------------------------------------------- /Samples/EmbeddedSamples/Micro Av Renderer/Utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Samples/EmbeddedSamples/Micro Av Renderer/Utility.h -------------------------------------------------------------------------------- /Samples/EmbeddedSamples/Micro Av Server/CdsErrors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Samples/EmbeddedSamples/Micro Av Server/CdsErrors.h -------------------------------------------------------------------------------- /Samples/EmbeddedSamples/Micro Av Server/DeviceBuilder/PocketPC/stdafx.cpp: -------------------------------------------------------------------------------- 1 | #include "stdafx.h" 2 | -------------------------------------------------------------------------------- /Samples/EmbeddedSamples/Micro Av Server/DeviceBuilder/Win32_Winsock1/stdafx.cpp: -------------------------------------------------------------------------------- 1 | #include "stdafx.h" 2 | -------------------------------------------------------------------------------- /Samples/EmbeddedSamples/Micro Av Server/IntelMediaServer/DeviceBuilder/Win32_Winsock2/stdafx.cpp: -------------------------------------------------------------------------------- 1 | #include "stdafx.h" 2 | -------------------------------------------------------------------------------- /Samples/EmbeddedSamples/Micro Av Server/MimeTypes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Samples/EmbeddedSamples/Micro Av Server/MimeTypes.c -------------------------------------------------------------------------------- /Samples/EmbeddedSamples/Micro Av Server/MimeTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Samples/EmbeddedSamples/Micro Av Server/MimeTypes.h -------------------------------------------------------------------------------- /Samples/EmbeddedSamples/Micro Av Server/MyString.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Samples/EmbeddedSamples/Micro Av Server/MyString.c -------------------------------------------------------------------------------- /Samples/EmbeddedSamples/MicroDMR/DeviceBuilder/Win32_Winsock1/stdafx.cpp: -------------------------------------------------------------------------------- 1 | #include "stdafx.h" 2 | -------------------------------------------------------------------------------- /Samples/EmbeddedSamples/MicroDMR/Posix/Utility.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Samples/EmbeddedSamples/MicroDMR/Posix/Utility.o -------------------------------------------------------------------------------- /Samples/EmbeddedSamples/MicroDMR/Posix/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Samples/EmbeddedSamples/MicroDMR/Posix/makefile -------------------------------------------------------------------------------- /Samples/EmbeddedSamples/MicroDMR/Resources/NewMicroAvServer/DeviceBuilder/PocketPC/stdafx.cpp: -------------------------------------------------------------------------------- 1 | #include "stdafx.h" 2 | -------------------------------------------------------------------------------- /Samples/EmbeddedSamples/MicroDMR/Resources/NewMicroAvServer/DeviceBuilder/Win32_Winsock1/stdafx.cpp: -------------------------------------------------------------------------------- 1 | #include "stdafx.h" 2 | -------------------------------------------------------------------------------- /Samples/EmbeddedSamples/MicroDMR/Resources/NewMicroAvServer/MP_MyPictures.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/EmbeddedSamples/MicroDMR/Resources/NewMicroAvServer/MP_WindowsMediaLibrary.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/EmbeddedSamples/MicroDMR/Resources/NewMicroAvServer/Win32_WML/hlp/Win32_WML.ph: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/EmbeddedSamples/MicroDMR/WSock32.Lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Samples/EmbeddedSamples/MicroDMR/WSock32.Lib -------------------------------------------------------------------------------- /Samples/EmbeddedSamples/MicroSTB/CodeFromBryan/stdafx.cpp: -------------------------------------------------------------------------------- 1 | #include "stdafx.h" 2 | -------------------------------------------------------------------------------- /Samples/EmbeddedSamples/MicroSTB/ControlPointStacks/AVRCP_ControlPoint_Wrapper.c: -------------------------------------------------------------------------------- 1 | #include "AVRCP_ControlPoint_Wrapper.h" 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Samples/EmbeddedSamples/MicroSTB/DeviceBuilder/Win32_AVRCP_Winsock1/stdafx.cpp: -------------------------------------------------------------------------------- 1 | #include "stdafx.h" 2 | -------------------------------------------------------------------------------- /Samples/EmbeddedSamples/MicroSTB/DeviceBuilder/Win32_MSCP_Winsock1/stdafx.cpp: -------------------------------------------------------------------------------- 1 | #include "stdafx.h" 2 | -------------------------------------------------------------------------------- /Samples/EmbeddedSamples/MicroSTB/DeviceBuilder/Win32_Winsock1/stdafx.cpp: -------------------------------------------------------------------------------- 1 | #include "stdafx.h" 2 | -------------------------------------------------------------------------------- /Samples/EmbeddedSamples/MicroSTB/Utils/MyList.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Samples/EmbeddedSamples/MicroSTB/Utils/MyList.c -------------------------------------------------------------------------------- /Samples/EmbeddedSamples/MicroSTB/Utils/MyList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Samples/EmbeddedSamples/MicroSTB/Utils/MyList.h -------------------------------------------------------------------------------- /Samples/EmbeddedSamples/MicroSTB/Utils/Utility.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Samples/EmbeddedSamples/MicroSTB/Utils/Utility.c -------------------------------------------------------------------------------- /Samples/EmbeddedSamples/MicroSTB/Utils/Utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Samples/EmbeddedSamples/MicroSTB/Utils/Utility.h -------------------------------------------------------------------------------- /Samples/EmbeddedSamples/NewMicroAvServer/DeviceBuilder/PocketPC/stdafx.cpp: -------------------------------------------------------------------------------- 1 | #include "stdafx.h" 2 | -------------------------------------------------------------------------------- /Samples/EmbeddedSamples/NewMicroAvServer/DeviceBuilder/Win32_Winsock1/stdafx.cpp: -------------------------------------------------------------------------------- 1 | #include "stdafx.h" 2 | -------------------------------------------------------------------------------- /Samples/EmbeddedSamples/NewMicroAvServer/Win32_WML/hlp/Win32_WML.ph: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/SamplesReadme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Samples/SamplesReadme.txt -------------------------------------------------------------------------------- /Tools/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.suo -------------------------------------------------------------------------------- /Tools/DeveloperTools.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeveloperTools.sln -------------------------------------------------------------------------------- /Tools/DeviceBuilder.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceBuilder.sln -------------------------------------------------------------------------------- /Tools/DeviceBuilder/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceBuilder/AssemblyInfo.cs -------------------------------------------------------------------------------- /Tools/DeviceBuilder/BrowseDirectoryDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceBuilder/BrowseDirectoryDialog.cs -------------------------------------------------------------------------------- /Tools/DeviceBuilder/BrowseDirectoryDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceBuilder/BrowseDirectoryDialog.resx -------------------------------------------------------------------------------- /Tools/DeviceBuilder/CPCodeGenerationForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceBuilder/CPCodeGenerationForm.cs -------------------------------------------------------------------------------- /Tools/DeviceBuilder/CPCodeGenerationForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceBuilder/CPCodeGenerationForm.resx -------------------------------------------------------------------------------- /Tools/DeviceBuilder/CPDotNetGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceBuilder/CPDotNetGenerator.cs -------------------------------------------------------------------------------- /Tools/DeviceBuilder/CPEmbeddedCGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceBuilder/CPEmbeddedCGenerator.cs -------------------------------------------------------------------------------- /Tools/DeviceBuilder/CertToolFiles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceBuilder/CertToolFiles.cs -------------------------------------------------------------------------------- /Tools/DeviceBuilder/CertToolFiles.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceBuilder/CertToolFiles.resx -------------------------------------------------------------------------------- /Tools/DeviceBuilder/CodeGenerationForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceBuilder/CodeGenerationForm.cs -------------------------------------------------------------------------------- /Tools/DeviceBuilder/CodeGenerationForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceBuilder/CodeGenerationForm.resx -------------------------------------------------------------------------------- /Tools/DeviceBuilder/CodeGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceBuilder/CodeGenerator.cs -------------------------------------------------------------------------------- /Tools/DeviceBuilder/CodeProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceBuilder/CodeProcessor.cs -------------------------------------------------------------------------------- /Tools/DeviceBuilder/DeviceBuilder.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceBuilder/DeviceBuilder.csproj -------------------------------------------------------------------------------- /Tools/DeviceBuilder/DeviceObjectGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceBuilder/DeviceObjectGenerator.cs -------------------------------------------------------------------------------- /Tools/DeviceBuilder/DotNetGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceBuilder/DotNetGenerator.cs -------------------------------------------------------------------------------- /Tools/DeviceBuilder/EmbeddedCGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceBuilder/EmbeddedCGenerator.cs -------------------------------------------------------------------------------- /Tools/DeviceBuilder/FileStore/Android/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceBuilder/FileStore/Android/.classpath -------------------------------------------------------------------------------- /Tools/DeviceBuilder/FileStore/Android/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceBuilder/FileStore/Android/.project -------------------------------------------------------------------------------- /Tools/DeviceBuilder/FileStore/Android/gen/R.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceBuilder/FileStore/Android/gen/R.java -------------------------------------------------------------------------------- /Tools/DeviceBuilder/FileStore/EULA.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceBuilder/FileStore/EULA.txt -------------------------------------------------------------------------------- /Tools/DeviceBuilder/FileStore/ILibAsyncSocket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceBuilder/FileStore/ILibAsyncSocket.c -------------------------------------------------------------------------------- /Tools/DeviceBuilder/FileStore/ILibAsyncSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceBuilder/FileStore/ILibAsyncSocket.h -------------------------------------------------------------------------------- /Tools/DeviceBuilder/FileStore/ILibParsers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceBuilder/FileStore/ILibParsers.c -------------------------------------------------------------------------------- /Tools/DeviceBuilder/FileStore/ILibParsers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceBuilder/FileStore/ILibParsers.h -------------------------------------------------------------------------------- /Tools/DeviceBuilder/FileStore/ILibSSDPClient.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceBuilder/FileStore/ILibSSDPClient.c -------------------------------------------------------------------------------- /Tools/DeviceBuilder/FileStore/ILibSSDPClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceBuilder/FileStore/ILibSSDPClient.h -------------------------------------------------------------------------------- /Tools/DeviceBuilder/FileStore/ILibThreadPool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceBuilder/FileStore/ILibThreadPool.c -------------------------------------------------------------------------------- /Tools/DeviceBuilder/FileStore/ILibThreadPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceBuilder/FileStore/ILibThreadPool.h -------------------------------------------------------------------------------- /Tools/DeviceBuilder/FileStore/ILibWebClient.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceBuilder/FileStore/ILibWebClient.c -------------------------------------------------------------------------------- /Tools/DeviceBuilder/FileStore/ILibWebClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceBuilder/FileStore/ILibWebClient.h -------------------------------------------------------------------------------- /Tools/DeviceBuilder/FileStore/ILibWebServer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceBuilder/FileStore/ILibWebServer.c -------------------------------------------------------------------------------- /Tools/DeviceBuilder/FileStore/ILibWebServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceBuilder/FileStore/ILibWebServer.h -------------------------------------------------------------------------------- /Tools/DeviceBuilder/FileStore/Main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceBuilder/FileStore/Main.c -------------------------------------------------------------------------------- /Tools/DeviceBuilder/FileStore/Old/EULA.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceBuilder/FileStore/Old/EULA.txt -------------------------------------------------------------------------------- /Tools/DeviceBuilder/FileStore/Old/ILibParsers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceBuilder/FileStore/Old/ILibParsers.c -------------------------------------------------------------------------------- /Tools/DeviceBuilder/FileStore/Old/ILibParsers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceBuilder/FileStore/Old/ILibParsers.h -------------------------------------------------------------------------------- /Tools/DeviceBuilder/FileStore/Old/Main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceBuilder/FileStore/Old/Main.c -------------------------------------------------------------------------------- /Tools/DeviceBuilder/FileStore/Old/Sample.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceBuilder/FileStore/Old/Sample.ico -------------------------------------------------------------------------------- /Tools/DeviceBuilder/FileStore/PPC/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceBuilder/FileStore/PPC/StdAfx.cpp -------------------------------------------------------------------------------- /Tools/DeviceBuilder/FileStore/PPC/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceBuilder/FileStore/PPC/StdAfx.h -------------------------------------------------------------------------------- /Tools/DeviceBuilder/FileStore/PPC/newres.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceBuilder/FileStore/PPC/newres.h -------------------------------------------------------------------------------- /Tools/DeviceBuilder/FileStore/PPC/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceBuilder/FileStore/PPC/resource.h -------------------------------------------------------------------------------- /Tools/DeviceBuilder/FileStore/PPC_CP/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceBuilder/FileStore/PPC_CP/StdAfx.cpp -------------------------------------------------------------------------------- /Tools/DeviceBuilder/FileStore/PPC_CP/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceBuilder/FileStore/PPC_CP/StdAfx.h -------------------------------------------------------------------------------- /Tools/DeviceBuilder/FileStore/PPC_CP/newres.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceBuilder/FileStore/PPC_CP/newres.h -------------------------------------------------------------------------------- /Tools/DeviceBuilder/FileStore/PPC_CP/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceBuilder/FileStore/PPC_CP/resource.h -------------------------------------------------------------------------------- /Tools/DeviceBuilder/FileStore/Posix/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceBuilder/FileStore/Posix/makefile -------------------------------------------------------------------------------- /Tools/DeviceBuilder/FileStore/Sample.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceBuilder/FileStore/Sample.ico -------------------------------------------------------------------------------- /Tools/DeviceBuilder/FileStore/Symbian/sample.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceBuilder/FileStore/Symbian/sample.cpp -------------------------------------------------------------------------------- /Tools/DeviceBuilder/FileStore/UPnPControlPoint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceBuilder/FileStore/UPnPControlPoint.c -------------------------------------------------------------------------------- /Tools/DeviceBuilder/FileStore/UPnPControlPoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceBuilder/FileStore/UPnPControlPoint.h -------------------------------------------------------------------------------- /Tools/DeviceBuilder/FileStore/UPnPMicroStack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceBuilder/FileStore/UPnPMicroStack.c -------------------------------------------------------------------------------- /Tools/DeviceBuilder/FileStore/UPnPMicroStack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceBuilder/FileStore/UPnPMicroStack.h -------------------------------------------------------------------------------- /Tools/DeviceBuilder/FileStore/Win32/stdafx.cpp: -------------------------------------------------------------------------------- 1 | #include "stdafx.h" 2 | -------------------------------------------------------------------------------- /Tools/DeviceBuilder/FileStore/Win32/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceBuilder/FileStore/Win32/stdafx.h -------------------------------------------------------------------------------- /Tools/DeviceBuilder/JavaAndroidGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceBuilder/JavaAndroidGenerator.cs -------------------------------------------------------------------------------- /Tools/DeviceBuilder/LibraryGenerationForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceBuilder/LibraryGenerationForm.cs -------------------------------------------------------------------------------- /Tools/DeviceBuilder/LibraryGenerationForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceBuilder/LibraryGenerationForm.resx -------------------------------------------------------------------------------- /Tools/DeviceBuilder/LibraryGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceBuilder/LibraryGenerator.cs -------------------------------------------------------------------------------- /Tools/DeviceBuilder/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceBuilder/MainForm.cs -------------------------------------------------------------------------------- /Tools/DeviceBuilder/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceBuilder/MainForm.resx -------------------------------------------------------------------------------- /Tools/DeviceBuilder/Media/Folder16-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceBuilder/Media/Folder16-2.png -------------------------------------------------------------------------------- /Tools/DeviceBuilder/Media/Folder20-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceBuilder/Media/Folder20-2.png -------------------------------------------------------------------------------- /Tools/DeviceBuilder/Media/Folder24-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceBuilder/Media/Folder24-2.png -------------------------------------------------------------------------------- /Tools/DeviceBuilder/Media/QuestionIcon120b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceBuilder/Media/QuestionIcon120b.png -------------------------------------------------------------------------------- /Tools/DeviceBuilder/Media/QuestionIcon48b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceBuilder/Media/QuestionIcon48b.png -------------------------------------------------------------------------------- /Tools/DeviceBuilder/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceBuilder/Program.cs -------------------------------------------------------------------------------- /Tools/DeviceBuilder/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceBuilder/Properties/Resources.resx -------------------------------------------------------------------------------- /Tools/DeviceBuilder/Sample/Bryan.upnpsg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceBuilder/Sample/Bryan.upnpsg -------------------------------------------------------------------------------- /Tools/DeviceBuilder/Sample/Bryan2.upnpsg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceBuilder/Sample/Bryan2.upnpsg -------------------------------------------------------------------------------- /Tools/DeviceBuilder/Sample/CERT_TEST.upnpsg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceBuilder/Sample/CERT_TEST.upnpsg -------------------------------------------------------------------------------- /Tools/DeviceBuilder/Sample/CP2.upnpsg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceBuilder/Sample/CP2.upnpsg -------------------------------------------------------------------------------- /Tools/DeviceBuilder/Sample/CPP_TEST.upnpsg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceBuilder/Sample/CPP_TEST.upnpsg -------------------------------------------------------------------------------- /Tools/DeviceBuilder/Sample/CPTEST.upnpsg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceBuilder/Sample/CPTEST.upnpsg -------------------------------------------------------------------------------- /Tools/DeviceBuilder/Sample/CertTest.upnpsg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceBuilder/Sample/CertTest.upnpsg -------------------------------------------------------------------------------- /Tools/DeviceBuilder/Sample/DMS_SEARCH.upnpsg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceBuilder/Sample/DMS_SEARCH.upnpsg -------------------------------------------------------------------------------- /Tools/DeviceBuilder/Sample/DualStackTest.upnpsg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceBuilder/Sample/DualStackTest.upnpsg -------------------------------------------------------------------------------- /Tools/DeviceBuilder/Sample/IGD.upnpsg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceBuilder/Sample/IGD.upnpsg -------------------------------------------------------------------------------- /Tools/DeviceBuilder/Sample/Linux_Light.upnpsg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceBuilder/Sample/Linux_Light.upnpsg -------------------------------------------------------------------------------- /Tools/DeviceBuilder/Sample/MSTest.upnpsg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceBuilder/Sample/MSTest.upnpsg -------------------------------------------------------------------------------- /Tools/DeviceBuilder/Sample/Pronay_Server.upnpsg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceBuilder/Sample/Pronay_Server.upnpsg -------------------------------------------------------------------------------- /Tools/DeviceBuilder/Sample/RADA.upnpsg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceBuilder/Sample/RADA.upnpsg -------------------------------------------------------------------------------- /Tools/DeviceBuilder/Sample/RUIClient_0_9.upnpsg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceBuilder/Sample/RUIClient_0_9.upnpsg -------------------------------------------------------------------------------- /Tools/DeviceBuilder/Sample/RUIServer.upnpsg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceBuilder/Sample/RUIServer.upnpsg -------------------------------------------------------------------------------- /Tools/DeviceBuilder/Sample/SRS_062504.upnpsg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceBuilder/Sample/SRS_062504.upnpsg -------------------------------------------------------------------------------- /Tools/DeviceBuilder/Sample/SRS_CDS_080504.upnpsg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceBuilder/Sample/SRS_CDS_080504.upnpsg -------------------------------------------------------------------------------- /Tools/DeviceBuilder/Sample/Sample.upnpsg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceBuilder/Sample/Sample.upnpsg -------------------------------------------------------------------------------- /Tools/DeviceBuilder/Sample/TestVar.upnpsg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceBuilder/Sample/TestVar.upnpsg -------------------------------------------------------------------------------- /Tools/DeviceBuilder/Sample/service.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceBuilder/Sample/service.xml -------------------------------------------------------------------------------- /Tools/DeviceBuilder/Sample/t2.upnpsg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceBuilder/Sample/t2.upnpsg -------------------------------------------------------------------------------- /Tools/DeviceBuilder/Sample/test.upnpsg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceBuilder/Sample/test.upnpsg -------------------------------------------------------------------------------- /Tools/DeviceBuilder/Sample/test2.upnpsg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceBuilder/Sample/test2.upnpsg -------------------------------------------------------------------------------- /Tools/DeviceBuilder/ServiceGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceBuilder/ServiceGenerator.cs -------------------------------------------------------------------------------- /Tools/DeviceBuilder/SettingsForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceBuilder/SettingsForm.cs -------------------------------------------------------------------------------- /Tools/DeviceBuilder/SettingsForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceBuilder/SettingsForm.resx -------------------------------------------------------------------------------- /Tools/DeviceBuilder/SourceCodeRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceBuilder/SourceCodeRepository.cs -------------------------------------------------------------------------------- /Tools/DeviceBuilder/SourceCodeRepository_2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceBuilder/SourceCodeRepository_2.cs -------------------------------------------------------------------------------- /Tools/DeviceBuilder/UPnPDeviceLocator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceBuilder/UPnPDeviceLocator.cs -------------------------------------------------------------------------------- /Tools/DeviceBuilder/UPnPDeviceLocator.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceBuilder/UPnPDeviceLocator.resx -------------------------------------------------------------------------------- /Tools/DeviceBuilder/UPnPServiceLocator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceBuilder/UPnPServiceLocator.cs -------------------------------------------------------------------------------- /Tools/DeviceBuilder/UPnPServiceLocator.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceBuilder/UPnPServiceLocator.resx -------------------------------------------------------------------------------- /Tools/DeviceBuilder/UPnPStackBuilder.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceBuilder/UPnPStackBuilder.ico -------------------------------------------------------------------------------- /Tools/DeviceBuilder/UPnPStackBuilder.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceBuilder/UPnPStackBuilder.sln -------------------------------------------------------------------------------- /Tools/DeviceBuilder/UPnPStackBuilder.suo.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceBuilder/UPnPStackBuilder.suo.old -------------------------------------------------------------------------------- /Tools/DeviceBuilder/Util/ILibParsers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceBuilder/Util/ILibParsers.c -------------------------------------------------------------------------------- /Tools/DeviceBuilder/Util/ILibParsers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceBuilder/Util/ILibParsers.h -------------------------------------------------------------------------------- /Tools/DeviceBuilder/Util/Main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceBuilder/Util/Main.c -------------------------------------------------------------------------------- /Tools/DeviceBuilder/Util/SourceCodeInjector.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceBuilder/Util/SourceCodeInjector.exe -------------------------------------------------------------------------------- /Tools/DeviceBuilder/Util/SourceCodeInjector.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceBuilder/Util/SourceCodeInjector.sln -------------------------------------------------------------------------------- /Tools/DeviceBuilder/Util/stdafx.cpp: -------------------------------------------------------------------------------- 1 | #include "stdafx.h" 2 | -------------------------------------------------------------------------------- /Tools/DeviceBuilder/Util/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceBuilder/Util/stdafx.h -------------------------------------------------------------------------------- /Tools/DeviceRelay/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceRelay/AssemblyInfo.cs -------------------------------------------------------------------------------- /Tools/DeviceRelay/ConnectionForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceRelay/ConnectionForm.cs -------------------------------------------------------------------------------- /Tools/DeviceRelay/ConnectionForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceRelay/ConnectionForm.resx -------------------------------------------------------------------------------- /Tools/DeviceRelay/CpGateKeeper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceRelay/CpGateKeeper.cs -------------------------------------------------------------------------------- /Tools/DeviceRelay/DeviceRelay.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceRelay/DeviceRelay.csproj -------------------------------------------------------------------------------- /Tools/DeviceRelay/DeviceSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceRelay/DeviceSelector.cs -------------------------------------------------------------------------------- /Tools/DeviceRelay/DeviceSelector.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceRelay/DeviceSelector.resx -------------------------------------------------------------------------------- /Tools/DeviceRelay/DvGateKeeper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceRelay/DvGateKeeper.cs -------------------------------------------------------------------------------- /Tools/DeviceRelay/Gatekeeper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceRelay/Gatekeeper.cs -------------------------------------------------------------------------------- /Tools/DeviceRelay/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceRelay/MainForm.cs -------------------------------------------------------------------------------- /Tools/DeviceRelay/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceRelay/MainForm.resx -------------------------------------------------------------------------------- /Tools/DeviceRelay/Media/Action1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceRelay/Media/Action1.gif -------------------------------------------------------------------------------- /Tools/DeviceRelay/Media/Action2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceRelay/Media/Action2.gif -------------------------------------------------------------------------------- /Tools/DeviceRelay/Media/ClosedBox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceRelay/Media/ClosedBox.png -------------------------------------------------------------------------------- /Tools/DeviceRelay/Media/OpenBox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceRelay/Media/OpenBox.png -------------------------------------------------------------------------------- /Tools/DeviceRelay/ModifyDevice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceRelay/ModifyDevice.cs -------------------------------------------------------------------------------- /Tools/DeviceRelay/ModifyDevice.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceRelay/ModifyDevice.resx -------------------------------------------------------------------------------- /Tools/DeviceRelay/PortNumberForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceRelay/PortNumberForm.cs -------------------------------------------------------------------------------- /Tools/DeviceRelay/PortNumberForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceRelay/PortNumberForm.resx -------------------------------------------------------------------------------- /Tools/DeviceRelay/ProxyDeviceFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceRelay/ProxyDeviceFactory.cs -------------------------------------------------------------------------------- /Tools/DeviceRelay/TraceForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceRelay/TraceForm.cs -------------------------------------------------------------------------------- /Tools/DeviceRelay/TraceForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceRelay/TraceForm.resx -------------------------------------------------------------------------------- /Tools/DeviceRelay/UPnPRelay.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceRelay/UPnPRelay.ico -------------------------------------------------------------------------------- /Tools/DeviceRelay/UPnPRelay.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceRelay/UPnPRelay.sln -------------------------------------------------------------------------------- /Tools/DeviceRelay/UPnPRelayDevice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceRelay/UPnPRelayDevice.cs -------------------------------------------------------------------------------- /Tools/DeviceSniffer/AddressFilterForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceSniffer/AddressFilterForm.cs -------------------------------------------------------------------------------- /Tools/DeviceSniffer/AddressFilterForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceSniffer/AddressFilterForm.resx -------------------------------------------------------------------------------- /Tools/DeviceSniffer/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceSniffer/AssemblyInfo.cs -------------------------------------------------------------------------------- /Tools/DeviceSniffer/CustomSearch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceSniffer/CustomSearch.cs -------------------------------------------------------------------------------- /Tools/DeviceSniffer/CustomSearch.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceSniffer/CustomSearch.resx -------------------------------------------------------------------------------- /Tools/DeviceSniffer/DeviceSniffer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceSniffer/DeviceSniffer.csproj -------------------------------------------------------------------------------- /Tools/DeviceSniffer/HttpRequestor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceSniffer/HttpRequestor.cs -------------------------------------------------------------------------------- /Tools/DeviceSniffer/HttpRequestor.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceSniffer/HttpRequestor.resx -------------------------------------------------------------------------------- /Tools/DeviceSniffer/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceSniffer/MainForm.cs -------------------------------------------------------------------------------- /Tools/DeviceSniffer/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceSniffer/MainForm.resx -------------------------------------------------------------------------------- /Tools/DeviceSniffer/Media/Packet.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceSniffer/Media/Packet.bmp -------------------------------------------------------------------------------- /Tools/DeviceSniffer/Media/UPnPSniffer.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceSniffer/Media/UPnPSniffer.bmp -------------------------------------------------------------------------------- /Tools/DeviceSniffer/Media/UPnPSniffer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceSniffer/Media/UPnPSniffer.png -------------------------------------------------------------------------------- /Tools/DeviceSniffer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceSniffer/Program.cs -------------------------------------------------------------------------------- /Tools/DeviceSniffer/UPnPMulticastSniffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceSniffer/UPnPMulticastSniffer.cs -------------------------------------------------------------------------------- /Tools/DeviceSniffer/UPnPSearchSniffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceSniffer/UPnPSearchSniffer.cs -------------------------------------------------------------------------------- /Tools/DeviceSniffer/UPnPSniffer.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceSniffer/UPnPSniffer.ico -------------------------------------------------------------------------------- /Tools/DeviceSniffer/UPnPSniffer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceSniffer/UPnPSniffer.sln -------------------------------------------------------------------------------- /Tools/DeviceSpy.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceSpy.sln -------------------------------------------------------------------------------- /Tools/DeviceSpy/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceSpy/AssemblyInfo.cs -------------------------------------------------------------------------------- /Tools/DeviceSpy/DeviceSpy.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceSpy/DeviceSpy.csproj -------------------------------------------------------------------------------- /Tools/DeviceSpy/DeviceSpy.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceSpy/DeviceSpy.ico -------------------------------------------------------------------------------- /Tools/DeviceSpy/ForceLoad.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceSpy/ForceLoad.cs -------------------------------------------------------------------------------- /Tools/DeviceSpy/ForceLoad.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceSpy/ForceLoad.resx -------------------------------------------------------------------------------- /Tools/DeviceSpy/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceSpy/MainForm.cs -------------------------------------------------------------------------------- /Tools/DeviceSpy/MainForm.fr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceSpy/MainForm.fr.resx -------------------------------------------------------------------------------- /Tools/DeviceSpy/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceSpy/MainForm.resx -------------------------------------------------------------------------------- /Tools/DeviceSpy/Media/Action1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceSpy/Media/Action1.gif -------------------------------------------------------------------------------- /Tools/DeviceSpy/Media/Action2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceSpy/Media/Action2.gif -------------------------------------------------------------------------------- /Tools/DeviceSpy/Media/Action3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceSpy/Media/Action3.gif -------------------------------------------------------------------------------- /Tools/DeviceSpy/Media/Action4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceSpy/Media/Action4.gif -------------------------------------------------------------------------------- /Tools/DeviceSpy/Media/Computer24.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceSpy/Media/Computer24.bmp -------------------------------------------------------------------------------- /Tools/DeviceSpy/Media/Computer24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceSpy/Media/Computer24.gif -------------------------------------------------------------------------------- /Tools/DeviceSpy/Media/Device24.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceSpy/Media/Device24.bmp -------------------------------------------------------------------------------- /Tools/DeviceSpy/Media/Device24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceSpy/Media/Device24.gif -------------------------------------------------------------------------------- /Tools/DeviceSpy/Media/Folder16-1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceSpy/Media/Folder16-1.bmp -------------------------------------------------------------------------------- /Tools/DeviceSpy/Media/Folder16-2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceSpy/Media/Folder16-2.bmp -------------------------------------------------------------------------------- /Tools/DeviceSpy/Media/Folder24-1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceSpy/Media/Folder24-1.bmp -------------------------------------------------------------------------------- /Tools/DeviceSpy/Media/Folder24-2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceSpy/Media/Folder24-2.bmp -------------------------------------------------------------------------------- /Tools/DeviceSpy/Media/Method24-2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceSpy/Media/Method24-2.bmp -------------------------------------------------------------------------------- /Tools/DeviceSpy/Media/Method24-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceSpy/Media/Method24-2.gif -------------------------------------------------------------------------------- /Tools/DeviceSpy/Media/Method24-3.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceSpy/Media/Method24-3.bmp -------------------------------------------------------------------------------- /Tools/DeviceSpy/Media/Method24.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceSpy/Media/Method24.bmp -------------------------------------------------------------------------------- /Tools/DeviceSpy/Media/Service24-2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceSpy/Media/Service24-2.bmp -------------------------------------------------------------------------------- /Tools/DeviceSpy/Media/Service24-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceSpy/Media/Service24-2.gif -------------------------------------------------------------------------------- /Tools/DeviceSpy/Media/Service24-3.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceSpy/Media/Service24-3.bmp -------------------------------------------------------------------------------- /Tools/DeviceSpy/Media/Service24.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceSpy/Media/Service24.bmp -------------------------------------------------------------------------------- /Tools/DeviceSpy/Media/UPnP-Spy.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceSpy/Media/UPnP-Spy.ico -------------------------------------------------------------------------------- /Tools/DeviceSpy/Media/Variable24-2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceSpy/Media/Variable24-2.bmp -------------------------------------------------------------------------------- /Tools/DeviceSpy/Media/Variable24.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceSpy/Media/Variable24.bmp -------------------------------------------------------------------------------- /Tools/DeviceSpy/MethodInvoke.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceSpy/MethodInvoke.cs -------------------------------------------------------------------------------- /Tools/DeviceSpy/MethodInvoke.fr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceSpy/MethodInvoke.fr.resx -------------------------------------------------------------------------------- /Tools/DeviceSpy/MethodInvoke.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceSpy/MethodInvoke.resx -------------------------------------------------------------------------------- /Tools/DeviceSpy/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceSpy/Program.cs -------------------------------------------------------------------------------- /Tools/DeviceSpy/UPnpArgumentControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceSpy/UPnpArgumentControl.cs -------------------------------------------------------------------------------- /Tools/DeviceSpy/UPnpArgumentControl.fr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceSpy/UPnpArgumentControl.fr.resx -------------------------------------------------------------------------------- /Tools/DeviceSpy/UPnpArgumentControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceSpy/UPnpArgumentControl.resx -------------------------------------------------------------------------------- /Tools/DeviceSpy/ValidationForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceSpy/ValidationForm.cs -------------------------------------------------------------------------------- /Tools/DeviceSpy/ValidationForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceSpy/ValidationForm.resx -------------------------------------------------------------------------------- /Tools/DeviceValidator/AdvancedTestGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceValidator/AdvancedTestGroup.cs -------------------------------------------------------------------------------- /Tools/DeviceValidator/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceValidator/AssemblyInfo.cs -------------------------------------------------------------------------------- /Tools/DeviceValidator/BasicTestGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceValidator/BasicTestGroup.cs -------------------------------------------------------------------------------- /Tools/DeviceValidator/CdsSubTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceValidator/CdsSubTest.cs -------------------------------------------------------------------------------- /Tools/DeviceValidator/CdsTestGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceValidator/CdsTestGroup.cs -------------------------------------------------------------------------------- /Tools/DeviceValidator/Cds_BrowseAll.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceValidator/Cds_BrowseAll.cs -------------------------------------------------------------------------------- /Tools/DeviceValidator/Cds_BrowseFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceValidator/Cds_BrowseFilter.cs -------------------------------------------------------------------------------- /Tools/DeviceValidator/Cds_BrowseRange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceValidator/Cds_BrowseRange.cs -------------------------------------------------------------------------------- /Tools/DeviceValidator/Cds_BrowseSortCriteria.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceValidator/Cds_BrowseSortCriteria.cs -------------------------------------------------------------------------------- /Tools/DeviceValidator/Cds_GetSortCapabilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceValidator/Cds_GetSortCapabilities.cs -------------------------------------------------------------------------------- /Tools/DeviceValidator/Cds_GetSystemUpdateID.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceValidator/Cds_GetSystemUpdateID.cs -------------------------------------------------------------------------------- /Tools/DeviceValidator/DataPointAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceValidator/DataPointAnalyzer.cs -------------------------------------------------------------------------------- /Tools/DeviceValidator/DeviceScriptorTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceValidator/DeviceScriptorTest.cs -------------------------------------------------------------------------------- /Tools/DeviceValidator/DeviceSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceValidator/DeviceSelector.cs -------------------------------------------------------------------------------- /Tools/DeviceValidator/DeviceSelector.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceValidator/DeviceSelector.resx -------------------------------------------------------------------------------- /Tools/DeviceValidator/DeviceValidator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceValidator/DeviceValidator.csproj -------------------------------------------------------------------------------- /Tools/DeviceValidator/IUPnPTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceValidator/IUPnPTest.cs -------------------------------------------------------------------------------- /Tools/DeviceValidator/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceValidator/MainForm.cs -------------------------------------------------------------------------------- /Tools/DeviceValidator/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceValidator/MainForm.resx -------------------------------------------------------------------------------- /Tools/DeviceValidator/Media/Test24-Disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceValidator/Media/Test24-Disabled.png -------------------------------------------------------------------------------- /Tools/DeviceValidator/Media/Test24-Disabled2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceValidator/Media/Test24-Disabled2.png -------------------------------------------------------------------------------- /Tools/DeviceValidator/Media/Test24-Enabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceValidator/Media/Test24-Enabled.png -------------------------------------------------------------------------------- /Tools/DeviceValidator/Media/Test24-Enabled2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceValidator/Media/Test24-Enabled2.png -------------------------------------------------------------------------------- /Tools/DeviceValidator/Media/Test24-Failed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceValidator/Media/Test24-Failed.png -------------------------------------------------------------------------------- /Tools/DeviceValidator/Media/Test24-Pass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceValidator/Media/Test24-Pass.png -------------------------------------------------------------------------------- /Tools/DeviceValidator/Media/Test24-Untested.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceValidator/Media/Test24-Untested.bmp -------------------------------------------------------------------------------- /Tools/DeviceValidator/Media/Test24-Warn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceValidator/Media/Test24-Warn.png -------------------------------------------------------------------------------- /Tools/DeviceValidator/Media/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceValidator/Media/Thumbs.db -------------------------------------------------------------------------------- /Tools/DeviceValidator/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceValidator/Program.cs -------------------------------------------------------------------------------- /Tools/DeviceValidator/QueryBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceValidator/QueryBox.cs -------------------------------------------------------------------------------- /Tools/DeviceValidator/QueryBox.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceValidator/QueryBox.resx -------------------------------------------------------------------------------- /Tools/DeviceValidator/SendLogFrom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceValidator/SendLogFrom.cs -------------------------------------------------------------------------------- /Tools/DeviceValidator/SendLogFrom.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceValidator/SendLogFrom.resx -------------------------------------------------------------------------------- /Tools/DeviceValidator/SubTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceValidator/SubTest.cs -------------------------------------------------------------------------------- /Tools/DeviceValidator/TestQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceValidator/TestQueue.cs -------------------------------------------------------------------------------- /Tools/DeviceValidator/UPnPDeviceLocator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceValidator/UPnPDeviceLocator.cs -------------------------------------------------------------------------------- /Tools/DeviceValidator/UPnPDeviceLocator.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceValidator/UPnPDeviceLocator.resx -------------------------------------------------------------------------------- /Tools/DeviceValidator/UPnPServiceLocator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceValidator/UPnPServiceLocator.cs -------------------------------------------------------------------------------- /Tools/DeviceValidator/UPnPServiceLocator.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceValidator/UPnPServiceLocator.resx -------------------------------------------------------------------------------- /Tools/DeviceValidator/UPnPTestDiscovery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceValidator/UPnPTestDiscovery.cs -------------------------------------------------------------------------------- /Tools/DeviceValidator/UPnPTestInvokeValid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceValidator/UPnPTestInvokeValid.cs -------------------------------------------------------------------------------- /Tools/DeviceValidator/UPnPTestSubscribe.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceValidator/UPnPTestSubscribe.cs -------------------------------------------------------------------------------- /Tools/DeviceValidator/UPnPTestViewOnly.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceValidator/UPnPTestViewOnly.cs -------------------------------------------------------------------------------- /Tools/DeviceValidator/UPnPValidator.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceValidator/UPnPValidator.ico -------------------------------------------------------------------------------- /Tools/DeviceValidator/UPnPValidator.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/DeviceValidator/UPnPValidator.sln -------------------------------------------------------------------------------- /Tools/MediaController/AVMediaController.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/MediaController/AVMediaController.csproj -------------------------------------------------------------------------------- /Tools/MediaController/AVMediaController.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/MediaController/AVMediaController.sln -------------------------------------------------------------------------------- /Tools/MediaController/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/MediaController/AssemblyInfo.cs -------------------------------------------------------------------------------- /Tools/MediaController/EditXmlForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/MediaController/EditXmlForm.cs -------------------------------------------------------------------------------- /Tools/MediaController/EditXmlForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/MediaController/EditXmlForm.resx -------------------------------------------------------------------------------- /Tools/MediaController/ForceLoad.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/MediaController/ForceLoad.cs -------------------------------------------------------------------------------- /Tools/MediaController/ForceLoad.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/MediaController/ForceLoad.resx -------------------------------------------------------------------------------- /Tools/MediaController/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/MediaController/MainForm.cs -------------------------------------------------------------------------------- /Tools/MediaController/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/MediaController/MainForm.resx -------------------------------------------------------------------------------- /Tools/MediaController/Media/Audio Document.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/MediaController/Media/Audio Document.png -------------------------------------------------------------------------------- /Tools/MediaController/Media/Balance Left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/MediaController/Media/Balance Left.png -------------------------------------------------------------------------------- /Tools/MediaController/Media/Balance Right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/MediaController/Media/Balance Right.png -------------------------------------------------------------------------------- /Tools/MediaController/Media/Folder16-1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/MediaController/Media/Folder16-1.bmp -------------------------------------------------------------------------------- /Tools/MediaController/Media/Folder16-2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/MediaController/Media/Folder16-2.bmp -------------------------------------------------------------------------------- /Tools/MediaController/Media/Gears Document.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/MediaController/Media/Gears Document.png -------------------------------------------------------------------------------- /Tools/MediaController/Media/Generic Document.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/MediaController/Media/Generic Document.png -------------------------------------------------------------------------------- /Tools/MediaController/Media/Image Document.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/MediaController/Media/Image Document.png -------------------------------------------------------------------------------- /Tools/MediaController/Media/MediaController.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/MediaController/Media/MediaController.ico -------------------------------------------------------------------------------- /Tools/MediaController/Media/Unknown Document.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/MediaController/Media/Unknown Document.png -------------------------------------------------------------------------------- /Tools/MediaController/Media/Video Document.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/MediaController/Media/Video Document.png -------------------------------------------------------------------------------- /Tools/MediaController/MediaPropertyControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/MediaController/MediaPropertyControl.cs -------------------------------------------------------------------------------- /Tools/MediaController/MediaPropertyControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/MediaController/MediaPropertyControl.resx -------------------------------------------------------------------------------- /Tools/MediaController/MediaPropertyForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/MediaController/MediaPropertyForm.cs -------------------------------------------------------------------------------- /Tools/MediaController/MediaPropertyForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/MediaController/MediaPropertyForm.resx -------------------------------------------------------------------------------- /Tools/MediaController/MediaSearchForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/MediaController/MediaSearchForm.cs -------------------------------------------------------------------------------- /Tools/MediaController/MediaSearchForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/MediaController/MediaSearchForm.resx -------------------------------------------------------------------------------- /Tools/MediaController/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/MediaController/Program.cs -------------------------------------------------------------------------------- /Tools/MediaController/RendererControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/MediaController/RendererControl.cs -------------------------------------------------------------------------------- /Tools/MediaController/RendererControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/MediaController/RendererControl.resx -------------------------------------------------------------------------------- /Tools/MediaController/RendererControlForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/MediaController/RendererControlForm.cs -------------------------------------------------------------------------------- /Tools/MediaController/RendererControlForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/MediaController/RendererControlForm.resx -------------------------------------------------------------------------------- /Tools/MediaController/RendererDebugForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/MediaController/RendererDebugForm.cs -------------------------------------------------------------------------------- /Tools/MediaController/RendererDebugForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/MediaController/RendererDebugForm.resx -------------------------------------------------------------------------------- /Tools/MediaController/TransferForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/MediaController/TransferForm.cs -------------------------------------------------------------------------------- /Tools/MediaController/TransferForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/MediaController/TransferForm.resx -------------------------------------------------------------------------------- /Tools/MediaController/UPnpMediaController.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/MediaController/UPnpMediaController.ico -------------------------------------------------------------------------------- /Tools/MediaRenderer/AVMediaRenderer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/MediaRenderer/AVMediaRenderer.csproj -------------------------------------------------------------------------------- /Tools/MediaRenderer/AVMediaRenderer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/MediaRenderer/AVMediaRenderer.sln -------------------------------------------------------------------------------- /Tools/MediaRenderer/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/MediaRenderer/AssemblyInfo.cs -------------------------------------------------------------------------------- /Tools/MediaRenderer/ContentUriForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/MediaRenderer/ContentUriForm.cs -------------------------------------------------------------------------------- /Tools/MediaRenderer/ContentUriForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/MediaRenderer/ContentUriForm.resx -------------------------------------------------------------------------------- /Tools/MediaRenderer/DebugForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/MediaRenderer/DebugForm.cs -------------------------------------------------------------------------------- /Tools/MediaRenderer/DebugForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/MediaRenderer/DebugForm.resx -------------------------------------------------------------------------------- /Tools/MediaRenderer/ImageVideoForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/MediaRenderer/ImageVideoForm.cs -------------------------------------------------------------------------------- /Tools/MediaRenderer/ImageVideoForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/MediaRenderer/ImageVideoForm.resx -------------------------------------------------------------------------------- /Tools/MediaRenderer/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/MediaRenderer/MainForm.cs -------------------------------------------------------------------------------- /Tools/MediaRenderer/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/MediaRenderer/MainForm.resx -------------------------------------------------------------------------------- /Tools/MediaRenderer/Media/Balance Left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/MediaRenderer/Media/Balance Left.png -------------------------------------------------------------------------------- /Tools/MediaRenderer/Media/Balance Right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/MediaRenderer/Media/Balance Right.png -------------------------------------------------------------------------------- /Tools/MediaRenderer/Media/Buttons.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/MediaRenderer/Media/Buttons.psd -------------------------------------------------------------------------------- /Tools/MediaRenderer/Media/Buttons2.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/MediaRenderer/Media/Buttons2.psd -------------------------------------------------------------------------------- /Tools/MediaRenderer/Media/Buttons3.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/MediaRenderer/Media/Buttons3.psd -------------------------------------------------------------------------------- /Tools/MediaRenderer/Media/Buttons4.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/MediaRenderer/Media/Buttons4.psd -------------------------------------------------------------------------------- /Tools/MediaRenderer/Media/Buttons5.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/MediaRenderer/Media/Buttons5.psd -------------------------------------------------------------------------------- /Tools/MediaRenderer/Media/Mute Button Black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/MediaRenderer/Media/Mute Button Black.png -------------------------------------------------------------------------------- /Tools/MediaRenderer/Media/Mute Button Black3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/MediaRenderer/Media/Mute Button Black3.png -------------------------------------------------------------------------------- /Tools/MediaRenderer/Media/Muted Button Black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/MediaRenderer/Media/Muted Button Black.png -------------------------------------------------------------------------------- /Tools/MediaRenderer/Media/Pause Button Black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/MediaRenderer/Media/Pause Button Black.png -------------------------------------------------------------------------------- /Tools/MediaRenderer/Media/Play Button Black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/MediaRenderer/Media/Play Button Black.png -------------------------------------------------------------------------------- /Tools/MediaRenderer/Media/Play Button Black2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/MediaRenderer/Media/Play Button Black2.png -------------------------------------------------------------------------------- /Tools/MediaRenderer/Media/Play Button Black3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/MediaRenderer/Media/Play Button Black3.png -------------------------------------------------------------------------------- /Tools/MediaRenderer/Media/Play Button Black4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/MediaRenderer/Media/Play Button Black4.png -------------------------------------------------------------------------------- /Tools/MediaRenderer/Media/Soft Button Black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/MediaRenderer/Media/Soft Button Black.png -------------------------------------------------------------------------------- /Tools/MediaRenderer/Media/Soft Button Black3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/MediaRenderer/Media/Soft Button Black3.png -------------------------------------------------------------------------------- /Tools/MediaRenderer/Media/Stop Button Black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/MediaRenderer/Media/Stop Button Black.png -------------------------------------------------------------------------------- /Tools/MediaRenderer/Media/Stop Button Black2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/MediaRenderer/Media/Stop Button Black2.png -------------------------------------------------------------------------------- /Tools/MediaRenderer/Media/Stop Button Black3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/MediaRenderer/Media/Stop Button Black3.png -------------------------------------------------------------------------------- /Tools/MediaRenderer/Media/Stop Button Black4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/MediaRenderer/Media/Stop Button Black4.png -------------------------------------------------------------------------------- /Tools/MediaRenderer/Media/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/MediaRenderer/Media/Thumbs.db -------------------------------------------------------------------------------- /Tools/MediaRenderer/Media/UPnP Renderer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/MediaRenderer/Media/UPnP Renderer.gif -------------------------------------------------------------------------------- /Tools/MediaRenderer/Media/UPnP Renderer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/MediaRenderer/Media/UPnP Renderer.png -------------------------------------------------------------------------------- /Tools/MediaRenderer/MediaRenderer.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/MediaRenderer/MediaRenderer.ico -------------------------------------------------------------------------------- /Tools/MediaRenderer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/MediaRenderer/Program.cs -------------------------------------------------------------------------------- /Tools/MediaRenderer/RendererForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/MediaRenderer/RendererForm.cs -------------------------------------------------------------------------------- /Tools/MediaRenderer/RendererForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/MediaRenderer/RendererForm.resx -------------------------------------------------------------------------------- /Tools/MediaServer/AVMediaServer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/MediaServer/AVMediaServer.sln -------------------------------------------------------------------------------- /Tools/MediaServer/UPnPMediaServer/ConfigForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/MediaServer/UPnPMediaServer/ConfigForm.cs -------------------------------------------------------------------------------- /Tools/MediaServer/UPnPMediaServer/DebugForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/MediaServer/UPnPMediaServer/DebugForm.cs -------------------------------------------------------------------------------- /Tools/MediaServer/UPnPMediaServer/DebugForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/MediaServer/UPnPMediaServer/DebugForm.resx -------------------------------------------------------------------------------- /Tools/MediaServer/UPnPMediaServer/EventsForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/MediaServer/UPnPMediaServer/EventsForm.cs -------------------------------------------------------------------------------- /Tools/MediaServer/UPnPMediaServer/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/MediaServer/UPnPMediaServer/MainForm.cs -------------------------------------------------------------------------------- /Tools/MediaServer/UPnPMediaServer/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/MediaServer/UPnPMediaServer/MainForm.resx -------------------------------------------------------------------------------- /Tools/MediaServer/UPnPMediaServer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/MediaServer/UPnPMediaServer/Program.cs -------------------------------------------------------------------------------- /Tools/MediaWizard/AVMediaWizard.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/MediaWizard/AVMediaWizard.csproj -------------------------------------------------------------------------------- /Tools/MediaWizard/AVMediaWizard.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/MediaWizard/AVMediaWizard.ico -------------------------------------------------------------------------------- /Tools/MediaWizard/AVMediaWizard.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/MediaWizard/AVMediaWizard.sln -------------------------------------------------------------------------------- /Tools/MediaWizard/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/MediaWizard/AssemblyInfo.cs -------------------------------------------------------------------------------- /Tools/MediaWizard/CdsBrowserForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/MediaWizard/CdsBrowserForm.cs -------------------------------------------------------------------------------- /Tools/MediaWizard/CdsBrowserForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/MediaWizard/CdsBrowserForm.resx -------------------------------------------------------------------------------- /Tools/MediaWizard/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/MediaWizard/MainForm.cs -------------------------------------------------------------------------------- /Tools/MediaWizard/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/MediaWizard/MainForm.resx -------------------------------------------------------------------------------- /Tools/MediaWizard/Media/BlueProgressBar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/MediaWizard/Media/BlueProgressBar.png -------------------------------------------------------------------------------- /Tools/MediaWizard/Media/BlueVolumeBar.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/MediaWizard/Media/BlueVolumeBar.PNG -------------------------------------------------------------------------------- /Tools/MediaWizard/Media/Faded Background 2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/MediaWizard/Media/Faded Background 2.bmp -------------------------------------------------------------------------------- /Tools/MediaWizard/Media/Faded Background.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/MediaWizard/Media/Faded Background.bmp -------------------------------------------------------------------------------- /Tools/MediaWizard/Media/GB-NextTrack-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/MediaWizard/Media/GB-NextTrack-1.png -------------------------------------------------------------------------------- /Tools/MediaWizard/Media/GB-NextTrack-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/MediaWizard/Media/GB-NextTrack-2.png -------------------------------------------------------------------------------- /Tools/MediaWizard/Media/GB-NextTrack-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/MediaWizard/Media/GB-NextTrack-3.png -------------------------------------------------------------------------------- /Tools/MediaWizard/Media/GB-NextTrack-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/MediaWizard/Media/GB-NextTrack-4.png -------------------------------------------------------------------------------- /Tools/MediaWizard/Media/GB-Pause-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/MediaWizard/Media/GB-Pause-1.png -------------------------------------------------------------------------------- /Tools/MediaWizard/Media/GB-Pause-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/MediaWizard/Media/GB-Pause-2.png -------------------------------------------------------------------------------- /Tools/MediaWizard/Media/GB-Pause-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/MediaWizard/Media/GB-Pause-3.png -------------------------------------------------------------------------------- /Tools/MediaWizard/Media/GB-Pause-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/MediaWizard/Media/GB-Pause-4.png -------------------------------------------------------------------------------- /Tools/MediaWizard/Media/GB-Play-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/MediaWizard/Media/GB-Play-1.png -------------------------------------------------------------------------------- /Tools/MediaWizard/Media/GB-Play-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/MediaWizard/Media/GB-Play-2.png -------------------------------------------------------------------------------- /Tools/MediaWizard/Media/GB-Play-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/MediaWizard/Media/GB-Play-3.png -------------------------------------------------------------------------------- /Tools/MediaWizard/Media/GB-Play-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/MediaWizard/Media/GB-Play-4.png -------------------------------------------------------------------------------- /Tools/MediaWizard/Media/GB-PrevTrack-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/MediaWizard/Media/GB-PrevTrack-1.png -------------------------------------------------------------------------------- /Tools/MediaWizard/Media/GB-PrevTrack-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/MediaWizard/Media/GB-PrevTrack-2.png -------------------------------------------------------------------------------- /Tools/MediaWizard/Media/GB-PrevTrack-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/MediaWizard/Media/GB-PrevTrack-3.png -------------------------------------------------------------------------------- /Tools/MediaWizard/Media/GB-PrevTrack-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/MediaWizard/Media/GB-PrevTrack-4.png -------------------------------------------------------------------------------- /Tools/MediaWizard/Media/GB-SeekBack-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/MediaWizard/Media/GB-SeekBack-1.png -------------------------------------------------------------------------------- /Tools/MediaWizard/Media/GB-SeekBack-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/MediaWizard/Media/GB-SeekBack-2.png -------------------------------------------------------------------------------- /Tools/MediaWizard/Media/GB-SeekBack-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/MediaWizard/Media/GB-SeekBack-3.png -------------------------------------------------------------------------------- /Tools/MediaWizard/Media/GB-SeekBack-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/MediaWizard/Media/GB-SeekBack-4.png -------------------------------------------------------------------------------- /Tools/MediaWizard/Media/GB-SeekFwrd-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/MediaWizard/Media/GB-SeekFwrd-1.png -------------------------------------------------------------------------------- /Tools/MediaWizard/Media/GB-SeekFwrd-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/MediaWizard/Media/GB-SeekFwrd-2.png -------------------------------------------------------------------------------- /Tools/MediaWizard/Media/GB-SeekFwrd-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/MediaWizard/Media/GB-SeekFwrd-3.png -------------------------------------------------------------------------------- /Tools/MediaWizard/Media/GB-SeekFwrd-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/MediaWizard/Media/GB-SeekFwrd-4.png -------------------------------------------------------------------------------- /Tools/MediaWizard/Media/GB-Small-Down-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/MediaWizard/Media/GB-Small-Down-1.png -------------------------------------------------------------------------------- /Tools/MediaWizard/Media/GB-Small-Down-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/MediaWizard/Media/GB-Small-Down-2.png -------------------------------------------------------------------------------- /Tools/MediaWizard/Media/GB-Small-Down-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/MediaWizard/Media/GB-Small-Down-3.png -------------------------------------------------------------------------------- /Tools/MediaWizard/Media/GB-Small-Down-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/MediaWizard/Media/GB-Small-Down-4.png -------------------------------------------------------------------------------- /Tools/MediaWizard/Media/GB-Small-Up-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/MediaWizard/Media/GB-Small-Up-1.png -------------------------------------------------------------------------------- /Tools/MediaWizard/Media/GB-Small-Up-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/MediaWizard/Media/GB-Small-Up-2.png -------------------------------------------------------------------------------- /Tools/MediaWizard/Media/GB-Small-Up-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/MediaWizard/Media/GB-Small-Up-3.png -------------------------------------------------------------------------------- /Tools/MediaWizard/Media/GB-Small-Up-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/MediaWizard/Media/GB-Small-Up-4.png -------------------------------------------------------------------------------- /Tools/MediaWizard/Media/GB-Stop-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/MediaWizard/Media/GB-Stop-1.png -------------------------------------------------------------------------------- /Tools/MediaWizard/Media/GB-Stop-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/MediaWizard/Media/GB-Stop-2.png -------------------------------------------------------------------------------- /Tools/MediaWizard/Media/GB-Stop-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/MediaWizard/Media/GB-Stop-3.png -------------------------------------------------------------------------------- /Tools/MediaWizard/Media/GB-Stop-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/MediaWizard/Media/GB-Stop-4.png -------------------------------------------------------------------------------- /Tools/MediaWizard/Media/GreenProgressBar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/MediaWizard/Media/GreenProgressBar.png -------------------------------------------------------------------------------- /Tools/MediaWizard/Media/GreenVolumeBar.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/MediaWizard/Media/GreenVolumeBar.PNG -------------------------------------------------------------------------------- /Tools/MediaWizard/Media/NewVolumeBar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/MediaWizard/Media/NewVolumeBar.png -------------------------------------------------------------------------------- /Tools/MediaWizard/Media/Separator Bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/MediaWizard/Media/Separator Bar.png -------------------------------------------------------------------------------- /Tools/MediaWizard/Media/UPnP Renderer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/MediaWizard/Media/UPnP Renderer.png -------------------------------------------------------------------------------- /Tools/MediaWizard/Media/UPnP Wizard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/MediaWizard/Media/UPnP Wizard.png -------------------------------------------------------------------------------- /Tools/MediaWizard/Media/UPnPWizard.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/MediaWizard/Media/UPnPWizard.bmp -------------------------------------------------------------------------------- /Tools/MediaWizard/Media/UPnPWizard.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/MediaWizard/Media/UPnPWizard.ico -------------------------------------------------------------------------------- /Tools/MediaWizard/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/MediaWizard/Program.cs -------------------------------------------------------------------------------- /Tools/NetworkLight/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/NetworkLight/AssemblyInfo.cs -------------------------------------------------------------------------------- /Tools/NetworkLight/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/NetworkLight/MainForm.cs -------------------------------------------------------------------------------- /Tools/NetworkLight/MainForm.en-US.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/NetworkLight/MainForm.en-US.resx -------------------------------------------------------------------------------- /Tools/NetworkLight/MainForm.en.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/NetworkLight/MainForm.en.resx -------------------------------------------------------------------------------- /Tools/NetworkLight/MainForm.fr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/NetworkLight/MainForm.fr.resx -------------------------------------------------------------------------------- /Tools/NetworkLight/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/NetworkLight/MainForm.resx -------------------------------------------------------------------------------- /Tools/NetworkLight/Media/Light32.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/NetworkLight/Media/Light32.gif -------------------------------------------------------------------------------- /Tools/NetworkLight/Media/lamp-0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/NetworkLight/Media/lamp-0.jpg -------------------------------------------------------------------------------- /Tools/NetworkLight/Media/lamp-10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/NetworkLight/Media/lamp-10.jpg -------------------------------------------------------------------------------- /Tools/NetworkLight/Media/lamp-100.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/NetworkLight/Media/lamp-100.jpg -------------------------------------------------------------------------------- /Tools/NetworkLight/Media/lamp-20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/NetworkLight/Media/lamp-20.jpg -------------------------------------------------------------------------------- /Tools/NetworkLight/Media/lamp-30.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/NetworkLight/Media/lamp-30.jpg -------------------------------------------------------------------------------- /Tools/NetworkLight/Media/lamp-40.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/NetworkLight/Media/lamp-40.jpg -------------------------------------------------------------------------------- /Tools/NetworkLight/Media/lamp-50.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/NetworkLight/Media/lamp-50.jpg -------------------------------------------------------------------------------- /Tools/NetworkLight/Media/lamp-60.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/NetworkLight/Media/lamp-60.jpg -------------------------------------------------------------------------------- /Tools/NetworkLight/Media/lamp-70.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/NetworkLight/Media/lamp-70.jpg -------------------------------------------------------------------------------- /Tools/NetworkLight/Media/lamp-80.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/NetworkLight/Media/lamp-80.jpg -------------------------------------------------------------------------------- /Tools/NetworkLight/Media/lamp-90.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/NetworkLight/Media/lamp-90.jpg -------------------------------------------------------------------------------- /Tools/NetworkLight/NetworkLight.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/NetworkLight/NetworkLight.csproj -------------------------------------------------------------------------------- /Tools/NetworkLight/NetworkLight.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/NetworkLight/NetworkLight.ico -------------------------------------------------------------------------------- /Tools/NetworkLight/NetworkLight.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/NetworkLight/NetworkLight.sln -------------------------------------------------------------------------------- /Tools/NetworkLight/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/NetworkLight/Program.cs -------------------------------------------------------------------------------- /Tools/NetworkLight/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/NetworkLight/Properties/Resources.resx -------------------------------------------------------------------------------- /Tools/ServiceAuthor/ActionEditForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/ServiceAuthor/ActionEditForm.cs -------------------------------------------------------------------------------- /Tools/ServiceAuthor/ActionEditForm.fr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/ServiceAuthor/ActionEditForm.fr.resx -------------------------------------------------------------------------------- /Tools/ServiceAuthor/ActionEditForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/ServiceAuthor/ActionEditForm.resx -------------------------------------------------------------------------------- /Tools/ServiceAuthor/AddAllowedValueForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/ServiceAuthor/AddAllowedValueForm.cs -------------------------------------------------------------------------------- /Tools/ServiceAuthor/AddAllowedValueForm.fr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/ServiceAuthor/AddAllowedValueForm.fr.resx -------------------------------------------------------------------------------- /Tools/ServiceAuthor/AddAllowedValueForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/ServiceAuthor/AddAllowedValueForm.resx -------------------------------------------------------------------------------- /Tools/ServiceAuthor/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/ServiceAuthor/AssemblyInfo.cs -------------------------------------------------------------------------------- /Tools/ServiceAuthor/ComplexItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/ServiceAuthor/ComplexItem.cs -------------------------------------------------------------------------------- /Tools/ServiceAuthor/ComplexItem.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/ServiceAuthor/ComplexItem.resx -------------------------------------------------------------------------------- /Tools/ServiceAuthor/ComplexTypeProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/ServiceAuthor/ComplexTypeProperty.cs -------------------------------------------------------------------------------- /Tools/ServiceAuthor/ComplexTypeProperty.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/ServiceAuthor/ComplexTypeProperty.resx -------------------------------------------------------------------------------- /Tools/ServiceAuthor/Container.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/ServiceAuthor/Container.cs -------------------------------------------------------------------------------- /Tools/ServiceAuthor/Container.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/ServiceAuthor/Container.resx -------------------------------------------------------------------------------- /Tools/ServiceAuthor/ContainerProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/ServiceAuthor/ContainerProperty.cs -------------------------------------------------------------------------------- /Tools/ServiceAuthor/ContainerProperty.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/ServiceAuthor/ContainerProperty.resx -------------------------------------------------------------------------------- /Tools/ServiceAuthor/DesignComplexType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/ServiceAuthor/DesignComplexType.cs -------------------------------------------------------------------------------- /Tools/ServiceAuthor/DesignComplexType.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/ServiceAuthor/DesignComplexType.resx -------------------------------------------------------------------------------- /Tools/ServiceAuthor/FieldForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/ServiceAuthor/FieldForm.cs -------------------------------------------------------------------------------- /Tools/ServiceAuthor/FieldForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/ServiceAuthor/FieldForm.resx -------------------------------------------------------------------------------- /Tools/ServiceAuthor/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/ServiceAuthor/MainForm.cs -------------------------------------------------------------------------------- /Tools/ServiceAuthor/MainForm.fr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/ServiceAuthor/MainForm.fr.resx -------------------------------------------------------------------------------- /Tools/ServiceAuthor/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/ServiceAuthor/MainForm.resx -------------------------------------------------------------------------------- /Tools/ServiceAuthor/Media/Action1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/ServiceAuthor/Media/Action1.gif -------------------------------------------------------------------------------- /Tools/ServiceAuthor/Media/Action2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/ServiceAuthor/Media/Action2.gif -------------------------------------------------------------------------------- /Tools/ServiceAuthor/Media/Action3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/ServiceAuthor/Media/Action3.gif -------------------------------------------------------------------------------- /Tools/ServiceAuthor/Media/Action4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/ServiceAuthor/Media/Action4.gif -------------------------------------------------------------------------------- /Tools/ServiceAuthor/Media/Computer24.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/ServiceAuthor/Media/Computer24.bmp -------------------------------------------------------------------------------- /Tools/ServiceAuthor/Media/Computer24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/ServiceAuthor/Media/Computer24.gif -------------------------------------------------------------------------------- /Tools/ServiceAuthor/Media/Device24.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/ServiceAuthor/Media/Device24.bmp -------------------------------------------------------------------------------- /Tools/ServiceAuthor/Media/Device24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/ServiceAuthor/Media/Device24.gif -------------------------------------------------------------------------------- /Tools/ServiceAuthor/Media/DownArrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/ServiceAuthor/Media/DownArrow.png -------------------------------------------------------------------------------- /Tools/ServiceAuthor/Media/DownArrow8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/ServiceAuthor/Media/DownArrow8.png -------------------------------------------------------------------------------- /Tools/ServiceAuthor/Media/Method24-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/ServiceAuthor/Media/Method24-2.gif -------------------------------------------------------------------------------- /Tools/ServiceAuthor/Media/Pad-UPnP.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/ServiceAuthor/Media/Pad-UPnP.gif -------------------------------------------------------------------------------- /Tools/ServiceAuthor/Media/Pad32-UPnP.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/ServiceAuthor/Media/Pad32-UPnP.bmp -------------------------------------------------------------------------------- /Tools/ServiceAuthor/Media/Pad32-UPnP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/ServiceAuthor/Media/Pad32-UPnP.png -------------------------------------------------------------------------------- /Tools/ServiceAuthor/Media/Pad32.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/ServiceAuthor/Media/Pad32.bmp -------------------------------------------------------------------------------- /Tools/ServiceAuthor/Media/Pad32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/ServiceAuthor/Media/Pad32.png -------------------------------------------------------------------------------- /Tools/ServiceAuthor/Media/Service24-2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/ServiceAuthor/Media/Service24-2.bmp -------------------------------------------------------------------------------- /Tools/ServiceAuthor/Media/Service24-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/ServiceAuthor/Media/Service24-2.gif -------------------------------------------------------------------------------- /Tools/ServiceAuthor/Media/UPnPAuthor.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/ServiceAuthor/Media/UPnPAuthor.ico -------------------------------------------------------------------------------- /Tools/ServiceAuthor/Media/UpArrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/ServiceAuthor/Media/UpArrow.png -------------------------------------------------------------------------------- /Tools/ServiceAuthor/Media/UpArrow8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/ServiceAuthor/Media/UpArrow8.png -------------------------------------------------------------------------------- /Tools/ServiceAuthor/Media/Variable24-2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/ServiceAuthor/Media/Variable24-2.bmp -------------------------------------------------------------------------------- /Tools/ServiceAuthor/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/ServiceAuthor/Program.cs -------------------------------------------------------------------------------- /Tools/ServiceAuthor/ServiceAuthor.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/ServiceAuthor/ServiceAuthor.csproj -------------------------------------------------------------------------------- /Tools/ServiceAuthor/ServiceAuthor.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/ServiceAuthor/ServiceAuthor.ico -------------------------------------------------------------------------------- /Tools/ServiceAuthor/ServiceAuthor.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/ServiceAuthor/ServiceAuthor.sln -------------------------------------------------------------------------------- /Tools/ServiceAuthor/StateVariableEditForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/ServiceAuthor/StateVariableEditForm.cs -------------------------------------------------------------------------------- /Tools/ServiceAuthor/StateVariableEditForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/ServiceAuthor/StateVariableEditForm.resx -------------------------------------------------------------------------------- /Tools/ServiceAuthor/TestForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/ServiceAuthor/TestForm.cs -------------------------------------------------------------------------------- /Tools/ServiceAuthor/TestForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/ServiceAuthor/TestForm.resx -------------------------------------------------------------------------------- /Tools/ServiceAuthor/UPnPServiceLocator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/ServiceAuthor/UPnPServiceLocator.cs -------------------------------------------------------------------------------- /Tools/ServiceAuthor/UPnPServiceLocator.fr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/ServiceAuthor/UPnPServiceLocator.fr.resx -------------------------------------------------------------------------------- /Tools/ServiceAuthor/UPnPServiceLocator.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/ServiceAuthor/UPnPServiceLocator.resx -------------------------------------------------------------------------------- /Tools/ServiceAuthor/UPnpArgumentEditControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/ServiceAuthor/UPnpArgumentEditControl.cs -------------------------------------------------------------------------------- /Tools/ServiceAuthor/UPnpArgumentEditControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/ServiceAuthor/UPnpArgumentEditControl.resx -------------------------------------------------------------------------------- /Tools/ToolsSetup/Installer.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/ToolsSetup/Installer.bmp -------------------------------------------------------------------------------- /Tools/ToolsSetup/ToolsSetup.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/ToolsSetup/ToolsSetup.sln -------------------------------------------------------------------------------- /Tools/ToolsSetup/ToolsSetup.vdproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/ToolsSetup/ToolsSetup.vdproj -------------------------------------------------------------------------------- /Tools/ToolsSetup/UpdateInfo-CompleteDevTools.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/ToolsSetup/UpdateInfo-CompleteDevTools.ini -------------------------------------------------------------------------------- /Tools/ToolsSetup/sign.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/ToolsSetup/sign.bat -------------------------------------------------------------------------------- /Tools/ToolsSetupNetbook/Installer.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/ToolsSetupNetbook/Installer.bmp -------------------------------------------------------------------------------- /Tools/ToolsSetupNetbook/ToolsSetupNetbook.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/ToolsSetupNetbook/ToolsSetupNetbook.sln -------------------------------------------------------------------------------- /Tools/ToolsSetupNetbook/ToolsSetupNetbook.vdproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/ToolsSetupNetbook/ToolsSetupNetbook.vdproj -------------------------------------------------------------------------------- /Tools/ToolsSetupNetbook/ToolsSetupNetbook2.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/ToolsSetupNetbook/ToolsSetupNetbook2.sln -------------------------------------------------------------------------------- /Tools/ToolsSetupNetbook/sign.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/ToolsSetupNetbook/sign.bat -------------------------------------------------------------------------------- /Tools/license.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/license.rtf -------------------------------------------------------------------------------- /Tools/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ylianst/Developer-Tools-for-UPnP-Technologies/HEAD/Tools/license.txt --------------------------------------------------------------------------------