├── .gitignore ├── COPYING ├── Makefile.am ├── README.md ├── addons ├── Makefile.am ├── library.xbmc.addon │ └── libXBMC_addon.h ├── library.xbmc.codec │ └── libXBMC_codec.h ├── library.xbmc.gui │ └── libXBMC_gui.h ├── library.xbmc.pvr │ └── libXBMC_pvr.h └── pvr.iptvsimple │ ├── .gitignore │ ├── Makefile.am │ ├── addon.xml.in │ ├── icon.png │ ├── iptv.m3u │ └── resources │ ├── language │ ├── Dutch │ │ └── strings.po │ ├── English │ │ └── strings.po │ ├── French │ │ └── strings.po │ ├── German │ │ └── strings.po │ └── Russian │ │ └── strings.po │ └── settings.xml ├── autogen.sh ├── changelog.txt ├── configure.in ├── include ├── rapidxml │ ├── license.txt │ ├── manual.html │ ├── rapidxml.hpp │ ├── rapidxml_iterators.hpp │ ├── rapidxml_print.hpp │ └── rapidxml_utils.hpp ├── xbmc │ ├── DVDDemuxPacket.h │ ├── NOTE │ ├── libXBMC_addon.h │ ├── libXBMC_codec.h │ ├── libXBMC_gui.h │ ├── libXBMC_pvr.h │ ├── xbmc_addon_cpp_dll.h │ ├── xbmc_addon_dll.h │ ├── xbmc_addon_types.h │ ├── xbmc_codec_types.h │ ├── xbmc_epg_types.h │ ├── xbmc_pvr_dll.h │ ├── xbmc_pvr_types.h │ ├── xbmc_scr_dll.h │ ├── xbmc_scr_types.h │ ├── xbmc_stream_utils.hpp │ ├── xbmc_vis_dll.h │ └── xbmc_vis_types.h ├── zconf.h └── zlib.h ├── lib └── zlib.lib ├── project ├── BuildDependencies │ └── bin │ │ ├── 7za.exe │ │ ├── libeay32.dll │ │ ├── libiconv2.dll │ │ ├── libintl3.dll │ │ ├── libssl32.dll │ │ ├── regex2.dll │ │ ├── sed.exe │ │ └── wget.exe └── VS2010Express │ ├── ConfigureAddonXML.bat │ ├── buildzip.bat │ ├── iptvsimple │ └── xbmc-addon-iptvsimple.vcxproj │ ├── platform │ └── platform.vcxproj │ └── xbmc-addon-iptvsimple.sln └── src ├── Makefile.am ├── iptvsimple ├── Makefile.am ├── PVRIptvData.cpp ├── PVRIptvData.h ├── client.cpp └── client.h └── platform ├── os.h ├── posix ├── os-socket.h ├── os-threads.h ├── os-types.h └── serialport.cpp ├── sockets ├── serialport.h ├── socket.h └── tcp.h ├── threads ├── mutex.h └── threads.h ├── util ├── StdString.h ├── atomic.h ├── baudrate.h ├── buffer.h ├── timeutils.h └── util.h └── windows ├── dlfcn-win32.cpp ├── dlfcn-win32.h ├── inttypes.h ├── os-socket.h ├── os-threads.cpp ├── os-threads.h ├── os-types.h ├── serialport.cpp └── stdint.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afedchin/xbmc-addon-iptvsimple/HEAD/.gitignore -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afedchin/xbmc-addon-iptvsimple/HEAD/COPYING -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afedchin/xbmc-addon-iptvsimple/HEAD/Makefile.am -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afedchin/xbmc-addon-iptvsimple/HEAD/README.md -------------------------------------------------------------------------------- /addons/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afedchin/xbmc-addon-iptvsimple/HEAD/addons/Makefile.am -------------------------------------------------------------------------------- /addons/library.xbmc.addon/libXBMC_addon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afedchin/xbmc-addon-iptvsimple/HEAD/addons/library.xbmc.addon/libXBMC_addon.h -------------------------------------------------------------------------------- /addons/library.xbmc.codec/libXBMC_codec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afedchin/xbmc-addon-iptvsimple/HEAD/addons/library.xbmc.codec/libXBMC_codec.h -------------------------------------------------------------------------------- /addons/library.xbmc.gui/libXBMC_gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afedchin/xbmc-addon-iptvsimple/HEAD/addons/library.xbmc.gui/libXBMC_gui.h -------------------------------------------------------------------------------- /addons/library.xbmc.pvr/libXBMC_pvr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afedchin/xbmc-addon-iptvsimple/HEAD/addons/library.xbmc.pvr/libXBMC_pvr.h -------------------------------------------------------------------------------- /addons/pvr.iptvsimple/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afedchin/xbmc-addon-iptvsimple/HEAD/addons/pvr.iptvsimple/.gitignore -------------------------------------------------------------------------------- /addons/pvr.iptvsimple/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afedchin/xbmc-addon-iptvsimple/HEAD/addons/pvr.iptvsimple/Makefile.am -------------------------------------------------------------------------------- /addons/pvr.iptvsimple/addon.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afedchin/xbmc-addon-iptvsimple/HEAD/addons/pvr.iptvsimple/addon.xml.in -------------------------------------------------------------------------------- /addons/pvr.iptvsimple/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afedchin/xbmc-addon-iptvsimple/HEAD/addons/pvr.iptvsimple/icon.png -------------------------------------------------------------------------------- /addons/pvr.iptvsimple/iptv.m3u: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /addons/pvr.iptvsimple/resources/language/Dutch/strings.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afedchin/xbmc-addon-iptvsimple/HEAD/addons/pvr.iptvsimple/resources/language/Dutch/strings.po -------------------------------------------------------------------------------- /addons/pvr.iptvsimple/resources/language/English/strings.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afedchin/xbmc-addon-iptvsimple/HEAD/addons/pvr.iptvsimple/resources/language/English/strings.po -------------------------------------------------------------------------------- /addons/pvr.iptvsimple/resources/language/French/strings.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afedchin/xbmc-addon-iptvsimple/HEAD/addons/pvr.iptvsimple/resources/language/French/strings.po -------------------------------------------------------------------------------- /addons/pvr.iptvsimple/resources/language/German/strings.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afedchin/xbmc-addon-iptvsimple/HEAD/addons/pvr.iptvsimple/resources/language/German/strings.po -------------------------------------------------------------------------------- /addons/pvr.iptvsimple/resources/language/Russian/strings.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afedchin/xbmc-addon-iptvsimple/HEAD/addons/pvr.iptvsimple/resources/language/Russian/strings.po -------------------------------------------------------------------------------- /addons/pvr.iptvsimple/resources/settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afedchin/xbmc-addon-iptvsimple/HEAD/addons/pvr.iptvsimple/resources/settings.xml -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afedchin/xbmc-addon-iptvsimple/HEAD/autogen.sh -------------------------------------------------------------------------------- /changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afedchin/xbmc-addon-iptvsimple/HEAD/changelog.txt -------------------------------------------------------------------------------- /configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afedchin/xbmc-addon-iptvsimple/HEAD/configure.in -------------------------------------------------------------------------------- /include/rapidxml/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afedchin/xbmc-addon-iptvsimple/HEAD/include/rapidxml/license.txt -------------------------------------------------------------------------------- /include/rapidxml/manual.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afedchin/xbmc-addon-iptvsimple/HEAD/include/rapidxml/manual.html -------------------------------------------------------------------------------- /include/rapidxml/rapidxml.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afedchin/xbmc-addon-iptvsimple/HEAD/include/rapidxml/rapidxml.hpp -------------------------------------------------------------------------------- /include/rapidxml/rapidxml_iterators.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afedchin/xbmc-addon-iptvsimple/HEAD/include/rapidxml/rapidxml_iterators.hpp -------------------------------------------------------------------------------- /include/rapidxml/rapidxml_print.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afedchin/xbmc-addon-iptvsimple/HEAD/include/rapidxml/rapidxml_print.hpp -------------------------------------------------------------------------------- /include/rapidxml/rapidxml_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afedchin/xbmc-addon-iptvsimple/HEAD/include/rapidxml/rapidxml_utils.hpp -------------------------------------------------------------------------------- /include/xbmc/DVDDemuxPacket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afedchin/xbmc-addon-iptvsimple/HEAD/include/xbmc/DVDDemuxPacket.h -------------------------------------------------------------------------------- /include/xbmc/NOTE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afedchin/xbmc-addon-iptvsimple/HEAD/include/xbmc/NOTE -------------------------------------------------------------------------------- /include/xbmc/libXBMC_addon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afedchin/xbmc-addon-iptvsimple/HEAD/include/xbmc/libXBMC_addon.h -------------------------------------------------------------------------------- /include/xbmc/libXBMC_codec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afedchin/xbmc-addon-iptvsimple/HEAD/include/xbmc/libXBMC_codec.h -------------------------------------------------------------------------------- /include/xbmc/libXBMC_gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afedchin/xbmc-addon-iptvsimple/HEAD/include/xbmc/libXBMC_gui.h -------------------------------------------------------------------------------- /include/xbmc/libXBMC_pvr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afedchin/xbmc-addon-iptvsimple/HEAD/include/xbmc/libXBMC_pvr.h -------------------------------------------------------------------------------- /include/xbmc/xbmc_addon_cpp_dll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afedchin/xbmc-addon-iptvsimple/HEAD/include/xbmc/xbmc_addon_cpp_dll.h -------------------------------------------------------------------------------- /include/xbmc/xbmc_addon_dll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afedchin/xbmc-addon-iptvsimple/HEAD/include/xbmc/xbmc_addon_dll.h -------------------------------------------------------------------------------- /include/xbmc/xbmc_addon_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afedchin/xbmc-addon-iptvsimple/HEAD/include/xbmc/xbmc_addon_types.h -------------------------------------------------------------------------------- /include/xbmc/xbmc_codec_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afedchin/xbmc-addon-iptvsimple/HEAD/include/xbmc/xbmc_codec_types.h -------------------------------------------------------------------------------- /include/xbmc/xbmc_epg_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afedchin/xbmc-addon-iptvsimple/HEAD/include/xbmc/xbmc_epg_types.h -------------------------------------------------------------------------------- /include/xbmc/xbmc_pvr_dll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afedchin/xbmc-addon-iptvsimple/HEAD/include/xbmc/xbmc_pvr_dll.h -------------------------------------------------------------------------------- /include/xbmc/xbmc_pvr_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afedchin/xbmc-addon-iptvsimple/HEAD/include/xbmc/xbmc_pvr_types.h -------------------------------------------------------------------------------- /include/xbmc/xbmc_scr_dll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afedchin/xbmc-addon-iptvsimple/HEAD/include/xbmc/xbmc_scr_dll.h -------------------------------------------------------------------------------- /include/xbmc/xbmc_scr_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afedchin/xbmc-addon-iptvsimple/HEAD/include/xbmc/xbmc_scr_types.h -------------------------------------------------------------------------------- /include/xbmc/xbmc_stream_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afedchin/xbmc-addon-iptvsimple/HEAD/include/xbmc/xbmc_stream_utils.hpp -------------------------------------------------------------------------------- /include/xbmc/xbmc_vis_dll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afedchin/xbmc-addon-iptvsimple/HEAD/include/xbmc/xbmc_vis_dll.h -------------------------------------------------------------------------------- /include/xbmc/xbmc_vis_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afedchin/xbmc-addon-iptvsimple/HEAD/include/xbmc/xbmc_vis_types.h -------------------------------------------------------------------------------- /include/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afedchin/xbmc-addon-iptvsimple/HEAD/include/zconf.h -------------------------------------------------------------------------------- /include/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afedchin/xbmc-addon-iptvsimple/HEAD/include/zlib.h -------------------------------------------------------------------------------- /lib/zlib.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afedchin/xbmc-addon-iptvsimple/HEAD/lib/zlib.lib -------------------------------------------------------------------------------- /project/BuildDependencies/bin/7za.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afedchin/xbmc-addon-iptvsimple/HEAD/project/BuildDependencies/bin/7za.exe -------------------------------------------------------------------------------- /project/BuildDependencies/bin/libeay32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afedchin/xbmc-addon-iptvsimple/HEAD/project/BuildDependencies/bin/libeay32.dll -------------------------------------------------------------------------------- /project/BuildDependencies/bin/libiconv2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afedchin/xbmc-addon-iptvsimple/HEAD/project/BuildDependencies/bin/libiconv2.dll -------------------------------------------------------------------------------- /project/BuildDependencies/bin/libintl3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afedchin/xbmc-addon-iptvsimple/HEAD/project/BuildDependencies/bin/libintl3.dll -------------------------------------------------------------------------------- /project/BuildDependencies/bin/libssl32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afedchin/xbmc-addon-iptvsimple/HEAD/project/BuildDependencies/bin/libssl32.dll -------------------------------------------------------------------------------- /project/BuildDependencies/bin/regex2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afedchin/xbmc-addon-iptvsimple/HEAD/project/BuildDependencies/bin/regex2.dll -------------------------------------------------------------------------------- /project/BuildDependencies/bin/sed.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afedchin/xbmc-addon-iptvsimple/HEAD/project/BuildDependencies/bin/sed.exe -------------------------------------------------------------------------------- /project/BuildDependencies/bin/wget.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afedchin/xbmc-addon-iptvsimple/HEAD/project/BuildDependencies/bin/wget.exe -------------------------------------------------------------------------------- /project/VS2010Express/ConfigureAddonXML.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afedchin/xbmc-addon-iptvsimple/HEAD/project/VS2010Express/ConfigureAddonXML.bat -------------------------------------------------------------------------------- /project/VS2010Express/buildzip.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afedchin/xbmc-addon-iptvsimple/HEAD/project/VS2010Express/buildzip.bat -------------------------------------------------------------------------------- /project/VS2010Express/iptvsimple/xbmc-addon-iptvsimple.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afedchin/xbmc-addon-iptvsimple/HEAD/project/VS2010Express/iptvsimple/xbmc-addon-iptvsimple.vcxproj -------------------------------------------------------------------------------- /project/VS2010Express/platform/platform.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afedchin/xbmc-addon-iptvsimple/HEAD/project/VS2010Express/platform/platform.vcxproj -------------------------------------------------------------------------------- /project/VS2010Express/xbmc-addon-iptvsimple.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afedchin/xbmc-addon-iptvsimple/HEAD/project/VS2010Express/xbmc-addon-iptvsimple.sln -------------------------------------------------------------------------------- /src/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = iptvsimple -------------------------------------------------------------------------------- /src/iptvsimple/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afedchin/xbmc-addon-iptvsimple/HEAD/src/iptvsimple/Makefile.am -------------------------------------------------------------------------------- /src/iptvsimple/PVRIptvData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afedchin/xbmc-addon-iptvsimple/HEAD/src/iptvsimple/PVRIptvData.cpp -------------------------------------------------------------------------------- /src/iptvsimple/PVRIptvData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afedchin/xbmc-addon-iptvsimple/HEAD/src/iptvsimple/PVRIptvData.h -------------------------------------------------------------------------------- /src/iptvsimple/client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afedchin/xbmc-addon-iptvsimple/HEAD/src/iptvsimple/client.cpp -------------------------------------------------------------------------------- /src/iptvsimple/client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afedchin/xbmc-addon-iptvsimple/HEAD/src/iptvsimple/client.h -------------------------------------------------------------------------------- /src/platform/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afedchin/xbmc-addon-iptvsimple/HEAD/src/platform/os.h -------------------------------------------------------------------------------- /src/platform/posix/os-socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afedchin/xbmc-addon-iptvsimple/HEAD/src/platform/posix/os-socket.h -------------------------------------------------------------------------------- /src/platform/posix/os-threads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afedchin/xbmc-addon-iptvsimple/HEAD/src/platform/posix/os-threads.h -------------------------------------------------------------------------------- /src/platform/posix/os-types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afedchin/xbmc-addon-iptvsimple/HEAD/src/platform/posix/os-types.h -------------------------------------------------------------------------------- /src/platform/posix/serialport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afedchin/xbmc-addon-iptvsimple/HEAD/src/platform/posix/serialport.cpp -------------------------------------------------------------------------------- /src/platform/sockets/serialport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afedchin/xbmc-addon-iptvsimple/HEAD/src/platform/sockets/serialport.h -------------------------------------------------------------------------------- /src/platform/sockets/socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afedchin/xbmc-addon-iptvsimple/HEAD/src/platform/sockets/socket.h -------------------------------------------------------------------------------- /src/platform/sockets/tcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afedchin/xbmc-addon-iptvsimple/HEAD/src/platform/sockets/tcp.h -------------------------------------------------------------------------------- /src/platform/threads/mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afedchin/xbmc-addon-iptvsimple/HEAD/src/platform/threads/mutex.h -------------------------------------------------------------------------------- /src/platform/threads/threads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afedchin/xbmc-addon-iptvsimple/HEAD/src/platform/threads/threads.h -------------------------------------------------------------------------------- /src/platform/util/StdString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afedchin/xbmc-addon-iptvsimple/HEAD/src/platform/util/StdString.h -------------------------------------------------------------------------------- /src/platform/util/atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afedchin/xbmc-addon-iptvsimple/HEAD/src/platform/util/atomic.h -------------------------------------------------------------------------------- /src/platform/util/baudrate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afedchin/xbmc-addon-iptvsimple/HEAD/src/platform/util/baudrate.h -------------------------------------------------------------------------------- /src/platform/util/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afedchin/xbmc-addon-iptvsimple/HEAD/src/platform/util/buffer.h -------------------------------------------------------------------------------- /src/platform/util/timeutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afedchin/xbmc-addon-iptvsimple/HEAD/src/platform/util/timeutils.h -------------------------------------------------------------------------------- /src/platform/util/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afedchin/xbmc-addon-iptvsimple/HEAD/src/platform/util/util.h -------------------------------------------------------------------------------- /src/platform/windows/dlfcn-win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afedchin/xbmc-addon-iptvsimple/HEAD/src/platform/windows/dlfcn-win32.cpp -------------------------------------------------------------------------------- /src/platform/windows/dlfcn-win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afedchin/xbmc-addon-iptvsimple/HEAD/src/platform/windows/dlfcn-win32.h -------------------------------------------------------------------------------- /src/platform/windows/inttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afedchin/xbmc-addon-iptvsimple/HEAD/src/platform/windows/inttypes.h -------------------------------------------------------------------------------- /src/platform/windows/os-socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afedchin/xbmc-addon-iptvsimple/HEAD/src/platform/windows/os-socket.h -------------------------------------------------------------------------------- /src/platform/windows/os-threads.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afedchin/xbmc-addon-iptvsimple/HEAD/src/platform/windows/os-threads.cpp -------------------------------------------------------------------------------- /src/platform/windows/os-threads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afedchin/xbmc-addon-iptvsimple/HEAD/src/platform/windows/os-threads.h -------------------------------------------------------------------------------- /src/platform/windows/os-types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afedchin/xbmc-addon-iptvsimple/HEAD/src/platform/windows/os-types.h -------------------------------------------------------------------------------- /src/platform/windows/serialport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afedchin/xbmc-addon-iptvsimple/HEAD/src/platform/windows/serialport.cpp -------------------------------------------------------------------------------- /src/platform/windows/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afedchin/xbmc-addon-iptvsimple/HEAD/src/platform/windows/stdint.h --------------------------------------------------------------------------------