├── .gitignore ├── Ares.DPR ├── Ares.dproj ├── Ares_Icon.ico ├── AsyncExTypes.pas ├── BitTorrent ├── BDecode.pas ├── BitTorrentDlDb.pas ├── BitTorrentStringfunc.pas ├── BitTorrentUtils.pas ├── bittorrentConst.pas ├── btcore.pas ├── dht_consts.pas ├── dht_int160.pas ├── dht_routingbin.pas ├── dht_search.pas ├── dht_searchManager.pas ├── dht_socket.pas ├── dht_zones.pas ├── hashes.pas ├── thread_bitTorrent.pas └── torrentparser.pas ├── COMPILING.txt ├── DHT ├── dhtUtils.pas ├── dhtconsts.pas ├── dhtcontact.pas ├── dhthashlist.pas ├── dhtkeywords.pas ├── dhtroutingbin.pas ├── dhtsearch.pas ├── dhtsearchManager.pas ├── dhtsocket.pas ├── dhttypes.pas ├── dhtzones.pas ├── int128.pas └── thread_dht.pas ├── Drag_N_Drop.pas ├── LICENSE ├── README ├── README.md ├── Test ├── MainUnit.dfm ├── MainUnit.pas ├── Test.dpr ├── Test.dproj └── Test.res ├── VCLs ├── AresCp.dpk ├── AresCp.dproj ├── BGImPanel.pas ├── CometBtnEdit.pas ├── CometHint.pas ├── CometPageView.pas ├── CometTopicPnl.pas ├── CometTrack.pas ├── CometTrees.pas ├── CometTrees.res ├── CometTreesReg.pas ├── CometVerInfo.pas ├── Compilers.inc ├── FolderBrowse.pas ├── README.txt ├── ShockwaveEx.pas ├── ShockwaveList.pas ├── VCHeaderPopup.pas ├── WINSPLIT.RES ├── WinSplit.pas ├── WindowsXP.rc ├── XPMan.pas ├── XPbutton.pas ├── arescp.res ├── arescp_Icon.ico ├── bmpmplayer.res ├── bmptrackbar.res ├── mPlayerPanel.pas └── uTrayIcon.pas ├── ZLib.pas ├── adler32.obj ├── ares.ico ├── ares.res ├── ares_objects.pas ├── ares_types.pas ├── ares_types_root.pas ├── blcksock.pas ├── class_cmdlist.pas ├── classes2.pas ├── compress.obj ├── const_ares.pas ├── const_client.pas ├── const_commands.pas ├── const_commands_pfs.pas ├── const_supernode_commands.pas ├── const_timeouts.pas ├── const_udpTransfer.pas ├── const_win_messages.pas ├── crc32.obj ├── deflate.obj ├── flvplayer.RES ├── hashlist.pas ├── helpeR_ipfunc.pas ├── helper_GUI_misc.pas ├── helper_ICH.pas ├── helper_altsources.pas ├── helper_ares_nodes.pas ├── helper_arescol.pas ├── helper_autoscan.pas ├── helper_base64_32.pas ├── helper_bighints.pas ├── helper_channellist.pas ├── helper_chat_favorites.pas ├── helper_check_proxy.pas ├── helper_combos.pas ├── helper_crypt.pas ├── helper_datetime.pas ├── helper_diskio.pas ├── helper_download_disk.pas ├── helper_download_misc.pas ├── helper_fakes.pas ├── helper_filtering.pas ├── helper_findmore.pas ├── helper_graphs.pas ├── helper_hashlinks.pas ├── helper_host_discovery.pas ├── helper_http.pas ├── helper_library_db.pas ├── helper_manual_share.pas ├── helper_mimetypes.pas ├── helper_params.pas ├── helper_player.pas ├── helper_playlist.pas ├── helper_preview.pas ├── helper_registry.pas ├── helper_search_gui.pas ├── helper_share_misc.pas ├── helper_share_settings.pas ├── helper_skin.pas ├── helper_sockets.pas ├── helper_sorting.pas ├── helper_stringfinal.pas ├── helper_strings.pas ├── helper_supernode_crypt.pas ├── helper_unicode.pas ├── helper_upnp.pas ├── helper_urls.pas ├── helper_visual_headers.pas ├── helper_visual_library.pas ├── infback.obj ├── inffast.obj ├── inflate.obj ├── inftrees.obj ├── keywfunc.pas ├── mysupernodes.pas ├── peerguard.pas ├── securehash.pas ├── shoutcast.pas ├── synsock.pas ├── th_rbld.pas ├── thread_client.pas ├── thread_download.pas ├── thread_share.pas ├── thread_supernode.pas ├── thread_terminator.pas ├── thread_upload.pas ├── trees.obj ├── types_supernode.pas ├── uWhatImListeningTo.pas ├── uctrvol.dfm ├── uctrvol.pas ├── uflvplayer.pas ├── ufrm_settings.dfm ├── ufrm_settings.pas ├── ufrmabout.dfm ├── ufrmabout.pas ├── ufrmhint.dfm ├── ufrmhint.pas ├── ufrmmain.dfm ├── ufrmmain.pas ├── ufrmpreview.dfm ├── ufrmpreview.pas ├── umediar.pas ├── unetplayer.pas ├── uplaylistfrm.dfm ├── uplaylistfrm.pas ├── utility_ares.pas ├── vars_global.pas └── vars_localiz.pas /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/.gitignore -------------------------------------------------------------------------------- /Ares.DPR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/Ares.DPR -------------------------------------------------------------------------------- /Ares.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/Ares.dproj -------------------------------------------------------------------------------- /Ares_Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/Ares_Icon.ico -------------------------------------------------------------------------------- /AsyncExTypes.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/AsyncExTypes.pas -------------------------------------------------------------------------------- /BitTorrent/BDecode.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/BitTorrent/BDecode.pas -------------------------------------------------------------------------------- /BitTorrent/BitTorrentDlDb.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/BitTorrent/BitTorrentDlDb.pas -------------------------------------------------------------------------------- /BitTorrent/BitTorrentStringfunc.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/BitTorrent/BitTorrentStringfunc.pas -------------------------------------------------------------------------------- /BitTorrent/BitTorrentUtils.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/BitTorrent/BitTorrentUtils.pas -------------------------------------------------------------------------------- /BitTorrent/bittorrentConst.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/BitTorrent/bittorrentConst.pas -------------------------------------------------------------------------------- /BitTorrent/btcore.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/BitTorrent/btcore.pas -------------------------------------------------------------------------------- /BitTorrent/dht_consts.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/BitTorrent/dht_consts.pas -------------------------------------------------------------------------------- /BitTorrent/dht_int160.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/BitTorrent/dht_int160.pas -------------------------------------------------------------------------------- /BitTorrent/dht_routingbin.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/BitTorrent/dht_routingbin.pas -------------------------------------------------------------------------------- /BitTorrent/dht_search.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/BitTorrent/dht_search.pas -------------------------------------------------------------------------------- /BitTorrent/dht_searchManager.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/BitTorrent/dht_searchManager.pas -------------------------------------------------------------------------------- /BitTorrent/dht_socket.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/BitTorrent/dht_socket.pas -------------------------------------------------------------------------------- /BitTorrent/dht_zones.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/BitTorrent/dht_zones.pas -------------------------------------------------------------------------------- /BitTorrent/hashes.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/BitTorrent/hashes.pas -------------------------------------------------------------------------------- /BitTorrent/thread_bitTorrent.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/BitTorrent/thread_bitTorrent.pas -------------------------------------------------------------------------------- /BitTorrent/torrentparser.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/BitTorrent/torrentparser.pas -------------------------------------------------------------------------------- /COMPILING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/COMPILING.txt -------------------------------------------------------------------------------- /DHT/dhtUtils.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/DHT/dhtUtils.pas -------------------------------------------------------------------------------- /DHT/dhtconsts.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/DHT/dhtconsts.pas -------------------------------------------------------------------------------- /DHT/dhtcontact.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/DHT/dhtcontact.pas -------------------------------------------------------------------------------- /DHT/dhthashlist.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/DHT/dhthashlist.pas -------------------------------------------------------------------------------- /DHT/dhtkeywords.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/DHT/dhtkeywords.pas -------------------------------------------------------------------------------- /DHT/dhtroutingbin.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/DHT/dhtroutingbin.pas -------------------------------------------------------------------------------- /DHT/dhtsearch.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/DHT/dhtsearch.pas -------------------------------------------------------------------------------- /DHT/dhtsearchManager.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/DHT/dhtsearchManager.pas -------------------------------------------------------------------------------- /DHT/dhtsocket.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/DHT/dhtsocket.pas -------------------------------------------------------------------------------- /DHT/dhttypes.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/DHT/dhttypes.pas -------------------------------------------------------------------------------- /DHT/dhtzones.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/DHT/dhtzones.pas -------------------------------------------------------------------------------- /DHT/int128.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/DHT/int128.pas -------------------------------------------------------------------------------- /DHT/thread_dht.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/DHT/thread_dht.pas -------------------------------------------------------------------------------- /Drag_N_Drop.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/Drag_N_Drop.pas -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/LICENSE -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/README -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/README.md -------------------------------------------------------------------------------- /Test/MainUnit.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/Test/MainUnit.dfm -------------------------------------------------------------------------------- /Test/MainUnit.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/Test/MainUnit.pas -------------------------------------------------------------------------------- /Test/Test.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/Test/Test.dpr -------------------------------------------------------------------------------- /Test/Test.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/Test/Test.dproj -------------------------------------------------------------------------------- /Test/Test.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/Test/Test.res -------------------------------------------------------------------------------- /VCLs/AresCp.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/VCLs/AresCp.dpk -------------------------------------------------------------------------------- /VCLs/AresCp.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/VCLs/AresCp.dproj -------------------------------------------------------------------------------- /VCLs/BGImPanel.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/VCLs/BGImPanel.pas -------------------------------------------------------------------------------- /VCLs/CometBtnEdit.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/VCLs/CometBtnEdit.pas -------------------------------------------------------------------------------- /VCLs/CometHint.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/VCLs/CometHint.pas -------------------------------------------------------------------------------- /VCLs/CometPageView.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/VCLs/CometPageView.pas -------------------------------------------------------------------------------- /VCLs/CometTopicPnl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/VCLs/CometTopicPnl.pas -------------------------------------------------------------------------------- /VCLs/CometTrack.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/VCLs/CometTrack.pas -------------------------------------------------------------------------------- /VCLs/CometTrees.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/VCLs/CometTrees.pas -------------------------------------------------------------------------------- /VCLs/CometTrees.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/VCLs/CometTrees.res -------------------------------------------------------------------------------- /VCLs/CometTreesReg.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/VCLs/CometTreesReg.pas -------------------------------------------------------------------------------- /VCLs/CometVerInfo.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/VCLs/CometVerInfo.pas -------------------------------------------------------------------------------- /VCLs/Compilers.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/VCLs/Compilers.inc -------------------------------------------------------------------------------- /VCLs/FolderBrowse.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/VCLs/FolderBrowse.pas -------------------------------------------------------------------------------- /VCLs/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/VCLs/README.txt -------------------------------------------------------------------------------- /VCLs/ShockwaveEx.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/VCLs/ShockwaveEx.pas -------------------------------------------------------------------------------- /VCLs/ShockwaveList.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/VCLs/ShockwaveList.pas -------------------------------------------------------------------------------- /VCLs/VCHeaderPopup.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/VCLs/VCHeaderPopup.pas -------------------------------------------------------------------------------- /VCLs/WINSPLIT.RES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/VCLs/WINSPLIT.RES -------------------------------------------------------------------------------- /VCLs/WinSplit.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/VCLs/WinSplit.pas -------------------------------------------------------------------------------- /VCLs/WindowsXP.rc: -------------------------------------------------------------------------------- 1 | 1 24 "sample.manifest" -------------------------------------------------------------------------------- /VCLs/XPMan.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/VCLs/XPMan.pas -------------------------------------------------------------------------------- /VCLs/XPbutton.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/VCLs/XPbutton.pas -------------------------------------------------------------------------------- /VCLs/arescp.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/VCLs/arescp.res -------------------------------------------------------------------------------- /VCLs/arescp_Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/VCLs/arescp_Icon.ico -------------------------------------------------------------------------------- /VCLs/bmpmplayer.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/VCLs/bmpmplayer.res -------------------------------------------------------------------------------- /VCLs/bmptrackbar.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/VCLs/bmptrackbar.res -------------------------------------------------------------------------------- /VCLs/mPlayerPanel.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/VCLs/mPlayerPanel.pas -------------------------------------------------------------------------------- /VCLs/uTrayIcon.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/VCLs/uTrayIcon.pas -------------------------------------------------------------------------------- /ZLib.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/ZLib.pas -------------------------------------------------------------------------------- /adler32.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/adler32.obj -------------------------------------------------------------------------------- /ares.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/ares.ico -------------------------------------------------------------------------------- /ares.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/ares.res -------------------------------------------------------------------------------- /ares_objects.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/ares_objects.pas -------------------------------------------------------------------------------- /ares_types.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/ares_types.pas -------------------------------------------------------------------------------- /ares_types_root.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/ares_types_root.pas -------------------------------------------------------------------------------- /blcksock.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/blcksock.pas -------------------------------------------------------------------------------- /class_cmdlist.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/class_cmdlist.pas -------------------------------------------------------------------------------- /classes2.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/classes2.pas -------------------------------------------------------------------------------- /compress.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/compress.obj -------------------------------------------------------------------------------- /const_ares.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/const_ares.pas -------------------------------------------------------------------------------- /const_client.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/const_client.pas -------------------------------------------------------------------------------- /const_commands.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/const_commands.pas -------------------------------------------------------------------------------- /const_commands_pfs.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/const_commands_pfs.pas -------------------------------------------------------------------------------- /const_supernode_commands.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/const_supernode_commands.pas -------------------------------------------------------------------------------- /const_timeouts.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/const_timeouts.pas -------------------------------------------------------------------------------- /const_udpTransfer.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/const_udpTransfer.pas -------------------------------------------------------------------------------- /const_win_messages.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/const_win_messages.pas -------------------------------------------------------------------------------- /crc32.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/crc32.obj -------------------------------------------------------------------------------- /deflate.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/deflate.obj -------------------------------------------------------------------------------- /flvplayer.RES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/flvplayer.RES -------------------------------------------------------------------------------- /hashlist.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/hashlist.pas -------------------------------------------------------------------------------- /helpeR_ipfunc.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/helpeR_ipfunc.pas -------------------------------------------------------------------------------- /helper_GUI_misc.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/helper_GUI_misc.pas -------------------------------------------------------------------------------- /helper_ICH.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/helper_ICH.pas -------------------------------------------------------------------------------- /helper_altsources.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/helper_altsources.pas -------------------------------------------------------------------------------- /helper_ares_nodes.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/helper_ares_nodes.pas -------------------------------------------------------------------------------- /helper_arescol.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/helper_arescol.pas -------------------------------------------------------------------------------- /helper_autoscan.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/helper_autoscan.pas -------------------------------------------------------------------------------- /helper_base64_32.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/helper_base64_32.pas -------------------------------------------------------------------------------- /helper_bighints.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/helper_bighints.pas -------------------------------------------------------------------------------- /helper_channellist.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/helper_channellist.pas -------------------------------------------------------------------------------- /helper_chat_favorites.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/helper_chat_favorites.pas -------------------------------------------------------------------------------- /helper_check_proxy.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/helper_check_proxy.pas -------------------------------------------------------------------------------- /helper_combos.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/helper_combos.pas -------------------------------------------------------------------------------- /helper_crypt.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/helper_crypt.pas -------------------------------------------------------------------------------- /helper_datetime.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/helper_datetime.pas -------------------------------------------------------------------------------- /helper_diskio.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/helper_diskio.pas -------------------------------------------------------------------------------- /helper_download_disk.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/helper_download_disk.pas -------------------------------------------------------------------------------- /helper_download_misc.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/helper_download_misc.pas -------------------------------------------------------------------------------- /helper_fakes.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/helper_fakes.pas -------------------------------------------------------------------------------- /helper_filtering.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/helper_filtering.pas -------------------------------------------------------------------------------- /helper_findmore.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/helper_findmore.pas -------------------------------------------------------------------------------- /helper_graphs.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/helper_graphs.pas -------------------------------------------------------------------------------- /helper_hashlinks.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/helper_hashlinks.pas -------------------------------------------------------------------------------- /helper_host_discovery.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/helper_host_discovery.pas -------------------------------------------------------------------------------- /helper_http.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/helper_http.pas -------------------------------------------------------------------------------- /helper_library_db.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/helper_library_db.pas -------------------------------------------------------------------------------- /helper_manual_share.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/helper_manual_share.pas -------------------------------------------------------------------------------- /helper_mimetypes.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/helper_mimetypes.pas -------------------------------------------------------------------------------- /helper_params.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/helper_params.pas -------------------------------------------------------------------------------- /helper_player.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/helper_player.pas -------------------------------------------------------------------------------- /helper_playlist.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/helper_playlist.pas -------------------------------------------------------------------------------- /helper_preview.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/helper_preview.pas -------------------------------------------------------------------------------- /helper_registry.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/helper_registry.pas -------------------------------------------------------------------------------- /helper_search_gui.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/helper_search_gui.pas -------------------------------------------------------------------------------- /helper_share_misc.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/helper_share_misc.pas -------------------------------------------------------------------------------- /helper_share_settings.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/helper_share_settings.pas -------------------------------------------------------------------------------- /helper_skin.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/helper_skin.pas -------------------------------------------------------------------------------- /helper_sockets.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/helper_sockets.pas -------------------------------------------------------------------------------- /helper_sorting.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/helper_sorting.pas -------------------------------------------------------------------------------- /helper_stringfinal.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/helper_stringfinal.pas -------------------------------------------------------------------------------- /helper_strings.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/helper_strings.pas -------------------------------------------------------------------------------- /helper_supernode_crypt.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/helper_supernode_crypt.pas -------------------------------------------------------------------------------- /helper_unicode.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/helper_unicode.pas -------------------------------------------------------------------------------- /helper_upnp.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/helper_upnp.pas -------------------------------------------------------------------------------- /helper_urls.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/helper_urls.pas -------------------------------------------------------------------------------- /helper_visual_headers.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/helper_visual_headers.pas -------------------------------------------------------------------------------- /helper_visual_library.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/helper_visual_library.pas -------------------------------------------------------------------------------- /infback.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/infback.obj -------------------------------------------------------------------------------- /inffast.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/inffast.obj -------------------------------------------------------------------------------- /inflate.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/inflate.obj -------------------------------------------------------------------------------- /inftrees.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/inftrees.obj -------------------------------------------------------------------------------- /keywfunc.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/keywfunc.pas -------------------------------------------------------------------------------- /mysupernodes.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/mysupernodes.pas -------------------------------------------------------------------------------- /peerguard.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/peerguard.pas -------------------------------------------------------------------------------- /securehash.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/securehash.pas -------------------------------------------------------------------------------- /shoutcast.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/shoutcast.pas -------------------------------------------------------------------------------- /synsock.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/synsock.pas -------------------------------------------------------------------------------- /th_rbld.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/th_rbld.pas -------------------------------------------------------------------------------- /thread_client.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/thread_client.pas -------------------------------------------------------------------------------- /thread_download.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/thread_download.pas -------------------------------------------------------------------------------- /thread_share.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/thread_share.pas -------------------------------------------------------------------------------- /thread_supernode.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/thread_supernode.pas -------------------------------------------------------------------------------- /thread_terminator.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/thread_terminator.pas -------------------------------------------------------------------------------- /thread_upload.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/thread_upload.pas -------------------------------------------------------------------------------- /trees.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/trees.obj -------------------------------------------------------------------------------- /types_supernode.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/types_supernode.pas -------------------------------------------------------------------------------- /uWhatImListeningTo.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/uWhatImListeningTo.pas -------------------------------------------------------------------------------- /uctrvol.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/uctrvol.dfm -------------------------------------------------------------------------------- /uctrvol.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/uctrvol.pas -------------------------------------------------------------------------------- /uflvplayer.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/uflvplayer.pas -------------------------------------------------------------------------------- /ufrm_settings.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/ufrm_settings.dfm -------------------------------------------------------------------------------- /ufrm_settings.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/ufrm_settings.pas -------------------------------------------------------------------------------- /ufrmabout.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/ufrmabout.dfm -------------------------------------------------------------------------------- /ufrmabout.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/ufrmabout.pas -------------------------------------------------------------------------------- /ufrmhint.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/ufrmhint.dfm -------------------------------------------------------------------------------- /ufrmhint.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/ufrmhint.pas -------------------------------------------------------------------------------- /ufrmmain.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/ufrmmain.dfm -------------------------------------------------------------------------------- /ufrmmain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/ufrmmain.pas -------------------------------------------------------------------------------- /ufrmpreview.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/ufrmpreview.dfm -------------------------------------------------------------------------------- /ufrmpreview.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/ufrmpreview.pas -------------------------------------------------------------------------------- /umediar.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/umediar.pas -------------------------------------------------------------------------------- /unetplayer.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/unetplayer.pas -------------------------------------------------------------------------------- /uplaylistfrm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/uplaylistfrm.dfm -------------------------------------------------------------------------------- /uplaylistfrm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/uplaylistfrm.pas -------------------------------------------------------------------------------- /utility_ares.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/utility_ares.pas -------------------------------------------------------------------------------- /vars_global.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/vars_global.pas -------------------------------------------------------------------------------- /vars_localiz.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWBudde/AresGalaxy/HEAD/vars_localiz.pas --------------------------------------------------------------------------------