├── .gitignore ├── README.md ├── ZeldaHWLSaveEditor.sln ├── ZeldaHWLSaveEditor.v12.suo ├── ZeldaHWLSaveEditor.vcxproj ├── ZeldaHWLSaveEditor.vcxproj.filters ├── ZeldaHWLSaveEditor.vcxproj.user ├── ZeldaHWLSaveEditorGUI.vcxproj ├── ZeldaHWLSaveEditorGUI.vcxproj.filters ├── ZeldaHWLSaveEditorGUI.vcxproj.user ├── settings.cfg └── source ├── CMakeLists.txt ├── console ├── CMakeLists.txt ├── ZeldaHWLSaveEditorConsole.rc ├── main.cpp └── resource.h ├── core ├── CMakeLists.txt ├── HWLAdventureModeItems.cpp ├── HWLAdventureModeItems.h ├── HWLAdventureModeMaps.cpp ├── HWLAdventureModeMaps.h ├── HWLConfig.cpp ├── HWLConfig.h ├── HWLException.cpp ├── HWLException.h ├── HWLFairy.cpp ├── HWLFairy.h ├── HWLFairyFood.cpp ├── HWLFairyFood.h ├── HWLGeneral.cpp ├── HWLGeneral.h ├── HWLHttp.cpp ├── HWLHttp.h ├── HWLMaterial.cpp ├── HWLMaterial.h ├── HWLPlayer.cpp ├── HWLPlayer.h ├── HWLSaveEditor.cpp ├── HWLSaveEditor.h ├── HWLSaveEditorCore.cpp ├── HWLSaveEditorCore.h ├── HWLWeapon.cpp ├── HWLWeapon.h └── res │ └── ZeldaHWLSaveEditorGUI.ico ├── gui ├── ZeldaAboutDlg.cpp ├── ZeldaAboutDlg.h ├── ZeldaCheckForUpdatesDlg.cpp ├── ZeldaCheckForUpdatesDlg.h ├── ZeldaConfigWeaponCopyDlg.cpp ├── ZeldaConfigWeaponCopyDlg.h ├── ZeldaEditAdventureModeItem.cpp ├── ZeldaEditAdventureModeItem.h ├── ZeldaEditAdventureModeMaps.cpp ├── ZeldaEditAdventureModeMaps.h ├── ZeldaEditCharaOverviewDlg.cpp ├── ZeldaEditCharaOverviewDlg.h ├── ZeldaEditCharaStatsDlg.cpp ├── ZeldaEditCharaStatsDlg.h ├── ZeldaEditCharaWeaponsDlg.cpp ├── ZeldaEditCharaWeaponsDlg.h ├── ZeldaEditFairyDlg.cpp ├── ZeldaEditFairyDlg.h ├── ZeldaEditFairyFoods.cpp ├── ZeldaEditFairyFoods.h ├── ZeldaEditGeneralDlg.cpp ├── ZeldaEditGeneralDlg.h ├── ZeldaEditMaterials.cpp ├── ZeldaEditMaterials.h ├── ZeldaHWLSaveEditorGUI.cpp ├── ZeldaHWLSaveEditorGUI.h ├── ZeldaHWLSaveEditorGUI.rc ├── res │ └── ZeldaHWLSaveEditorGUI.rc2 ├── resource.h ├── stdafx.cpp ├── stdafx.h └── targetver.h └── libs ├── CMakeLists.txt └── HTTP_Client ├── API ├── HTTPClient.c ├── HTTPClient.h ├── HTTPClientAuth.c ├── HTTPClientAuth.h ├── HTTPClientCommon.h ├── HTTPClientString.c ├── HTTPClientString.h ├── HTTPClientWrapper.c └── HTTPClientWrapper.h ├── CHTTP_Client.cpp ├── CHTTP_Client.h ├── CMakeLists.txt └── License.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedron92/HWL-SaveEditor/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedron92/HWL-SaveEditor/HEAD/README.md -------------------------------------------------------------------------------- /ZeldaHWLSaveEditor.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedron92/HWL-SaveEditor/HEAD/ZeldaHWLSaveEditor.sln -------------------------------------------------------------------------------- /ZeldaHWLSaveEditor.v12.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedron92/HWL-SaveEditor/HEAD/ZeldaHWLSaveEditor.v12.suo -------------------------------------------------------------------------------- /ZeldaHWLSaveEditor.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedron92/HWL-SaveEditor/HEAD/ZeldaHWLSaveEditor.vcxproj -------------------------------------------------------------------------------- /ZeldaHWLSaveEditor.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedron92/HWL-SaveEditor/HEAD/ZeldaHWLSaveEditor.vcxproj.filters -------------------------------------------------------------------------------- /ZeldaHWLSaveEditor.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedron92/HWL-SaveEditor/HEAD/ZeldaHWLSaveEditor.vcxproj.user -------------------------------------------------------------------------------- /ZeldaHWLSaveEditorGUI.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedron92/HWL-SaveEditor/HEAD/ZeldaHWLSaveEditorGUI.vcxproj -------------------------------------------------------------------------------- /ZeldaHWLSaveEditorGUI.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedron92/HWL-SaveEditor/HEAD/ZeldaHWLSaveEditorGUI.vcxproj.filters -------------------------------------------------------------------------------- /ZeldaHWLSaveEditorGUI.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedron92/HWL-SaveEditor/HEAD/ZeldaHWLSaveEditorGUI.vcxproj.user -------------------------------------------------------------------------------- /settings.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedron92/HWL-SaveEditor/HEAD/settings.cfg -------------------------------------------------------------------------------- /source/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedron92/HWL-SaveEditor/HEAD/source/CMakeLists.txt -------------------------------------------------------------------------------- /source/console/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedron92/HWL-SaveEditor/HEAD/source/console/CMakeLists.txt -------------------------------------------------------------------------------- /source/console/ZeldaHWLSaveEditorConsole.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedron92/HWL-SaveEditor/HEAD/source/console/ZeldaHWLSaveEditorConsole.rc -------------------------------------------------------------------------------- /source/console/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedron92/HWL-SaveEditor/HEAD/source/console/main.cpp -------------------------------------------------------------------------------- /source/console/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedron92/HWL-SaveEditor/HEAD/source/console/resource.h -------------------------------------------------------------------------------- /source/core/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedron92/HWL-SaveEditor/HEAD/source/core/CMakeLists.txt -------------------------------------------------------------------------------- /source/core/HWLAdventureModeItems.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedron92/HWL-SaveEditor/HEAD/source/core/HWLAdventureModeItems.cpp -------------------------------------------------------------------------------- /source/core/HWLAdventureModeItems.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedron92/HWL-SaveEditor/HEAD/source/core/HWLAdventureModeItems.h -------------------------------------------------------------------------------- /source/core/HWLAdventureModeMaps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedron92/HWL-SaveEditor/HEAD/source/core/HWLAdventureModeMaps.cpp -------------------------------------------------------------------------------- /source/core/HWLAdventureModeMaps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedron92/HWL-SaveEditor/HEAD/source/core/HWLAdventureModeMaps.h -------------------------------------------------------------------------------- /source/core/HWLConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedron92/HWL-SaveEditor/HEAD/source/core/HWLConfig.cpp -------------------------------------------------------------------------------- /source/core/HWLConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedron92/HWL-SaveEditor/HEAD/source/core/HWLConfig.h -------------------------------------------------------------------------------- /source/core/HWLException.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedron92/HWL-SaveEditor/HEAD/source/core/HWLException.cpp -------------------------------------------------------------------------------- /source/core/HWLException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedron92/HWL-SaveEditor/HEAD/source/core/HWLException.h -------------------------------------------------------------------------------- /source/core/HWLFairy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedron92/HWL-SaveEditor/HEAD/source/core/HWLFairy.cpp -------------------------------------------------------------------------------- /source/core/HWLFairy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedron92/HWL-SaveEditor/HEAD/source/core/HWLFairy.h -------------------------------------------------------------------------------- /source/core/HWLFairyFood.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedron92/HWL-SaveEditor/HEAD/source/core/HWLFairyFood.cpp -------------------------------------------------------------------------------- /source/core/HWLFairyFood.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedron92/HWL-SaveEditor/HEAD/source/core/HWLFairyFood.h -------------------------------------------------------------------------------- /source/core/HWLGeneral.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedron92/HWL-SaveEditor/HEAD/source/core/HWLGeneral.cpp -------------------------------------------------------------------------------- /source/core/HWLGeneral.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedron92/HWL-SaveEditor/HEAD/source/core/HWLGeneral.h -------------------------------------------------------------------------------- /source/core/HWLHttp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedron92/HWL-SaveEditor/HEAD/source/core/HWLHttp.cpp -------------------------------------------------------------------------------- /source/core/HWLHttp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedron92/HWL-SaveEditor/HEAD/source/core/HWLHttp.h -------------------------------------------------------------------------------- /source/core/HWLMaterial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedron92/HWL-SaveEditor/HEAD/source/core/HWLMaterial.cpp -------------------------------------------------------------------------------- /source/core/HWLMaterial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedron92/HWL-SaveEditor/HEAD/source/core/HWLMaterial.h -------------------------------------------------------------------------------- /source/core/HWLPlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedron92/HWL-SaveEditor/HEAD/source/core/HWLPlayer.cpp -------------------------------------------------------------------------------- /source/core/HWLPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedron92/HWL-SaveEditor/HEAD/source/core/HWLPlayer.h -------------------------------------------------------------------------------- /source/core/HWLSaveEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedron92/HWL-SaveEditor/HEAD/source/core/HWLSaveEditor.cpp -------------------------------------------------------------------------------- /source/core/HWLSaveEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedron92/HWL-SaveEditor/HEAD/source/core/HWLSaveEditor.h -------------------------------------------------------------------------------- /source/core/HWLSaveEditorCore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedron92/HWL-SaveEditor/HEAD/source/core/HWLSaveEditorCore.cpp -------------------------------------------------------------------------------- /source/core/HWLSaveEditorCore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedron92/HWL-SaveEditor/HEAD/source/core/HWLSaveEditorCore.h -------------------------------------------------------------------------------- /source/core/HWLWeapon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedron92/HWL-SaveEditor/HEAD/source/core/HWLWeapon.cpp -------------------------------------------------------------------------------- /source/core/HWLWeapon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedron92/HWL-SaveEditor/HEAD/source/core/HWLWeapon.h -------------------------------------------------------------------------------- /source/core/res/ZeldaHWLSaveEditorGUI.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedron92/HWL-SaveEditor/HEAD/source/core/res/ZeldaHWLSaveEditorGUI.ico -------------------------------------------------------------------------------- /source/gui/ZeldaAboutDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedron92/HWL-SaveEditor/HEAD/source/gui/ZeldaAboutDlg.cpp -------------------------------------------------------------------------------- /source/gui/ZeldaAboutDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedron92/HWL-SaveEditor/HEAD/source/gui/ZeldaAboutDlg.h -------------------------------------------------------------------------------- /source/gui/ZeldaCheckForUpdatesDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedron92/HWL-SaveEditor/HEAD/source/gui/ZeldaCheckForUpdatesDlg.cpp -------------------------------------------------------------------------------- /source/gui/ZeldaCheckForUpdatesDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedron92/HWL-SaveEditor/HEAD/source/gui/ZeldaCheckForUpdatesDlg.h -------------------------------------------------------------------------------- /source/gui/ZeldaConfigWeaponCopyDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedron92/HWL-SaveEditor/HEAD/source/gui/ZeldaConfigWeaponCopyDlg.cpp -------------------------------------------------------------------------------- /source/gui/ZeldaConfigWeaponCopyDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedron92/HWL-SaveEditor/HEAD/source/gui/ZeldaConfigWeaponCopyDlg.h -------------------------------------------------------------------------------- /source/gui/ZeldaEditAdventureModeItem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedron92/HWL-SaveEditor/HEAD/source/gui/ZeldaEditAdventureModeItem.cpp -------------------------------------------------------------------------------- /source/gui/ZeldaEditAdventureModeItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedron92/HWL-SaveEditor/HEAD/source/gui/ZeldaEditAdventureModeItem.h -------------------------------------------------------------------------------- /source/gui/ZeldaEditAdventureModeMaps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedron92/HWL-SaveEditor/HEAD/source/gui/ZeldaEditAdventureModeMaps.cpp -------------------------------------------------------------------------------- /source/gui/ZeldaEditAdventureModeMaps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedron92/HWL-SaveEditor/HEAD/source/gui/ZeldaEditAdventureModeMaps.h -------------------------------------------------------------------------------- /source/gui/ZeldaEditCharaOverviewDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedron92/HWL-SaveEditor/HEAD/source/gui/ZeldaEditCharaOverviewDlg.cpp -------------------------------------------------------------------------------- /source/gui/ZeldaEditCharaOverviewDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedron92/HWL-SaveEditor/HEAD/source/gui/ZeldaEditCharaOverviewDlg.h -------------------------------------------------------------------------------- /source/gui/ZeldaEditCharaStatsDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedron92/HWL-SaveEditor/HEAD/source/gui/ZeldaEditCharaStatsDlg.cpp -------------------------------------------------------------------------------- /source/gui/ZeldaEditCharaStatsDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedron92/HWL-SaveEditor/HEAD/source/gui/ZeldaEditCharaStatsDlg.h -------------------------------------------------------------------------------- /source/gui/ZeldaEditCharaWeaponsDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedron92/HWL-SaveEditor/HEAD/source/gui/ZeldaEditCharaWeaponsDlg.cpp -------------------------------------------------------------------------------- /source/gui/ZeldaEditCharaWeaponsDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedron92/HWL-SaveEditor/HEAD/source/gui/ZeldaEditCharaWeaponsDlg.h -------------------------------------------------------------------------------- /source/gui/ZeldaEditFairyDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedron92/HWL-SaveEditor/HEAD/source/gui/ZeldaEditFairyDlg.cpp -------------------------------------------------------------------------------- /source/gui/ZeldaEditFairyDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedron92/HWL-SaveEditor/HEAD/source/gui/ZeldaEditFairyDlg.h -------------------------------------------------------------------------------- /source/gui/ZeldaEditFairyFoods.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedron92/HWL-SaveEditor/HEAD/source/gui/ZeldaEditFairyFoods.cpp -------------------------------------------------------------------------------- /source/gui/ZeldaEditFairyFoods.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedron92/HWL-SaveEditor/HEAD/source/gui/ZeldaEditFairyFoods.h -------------------------------------------------------------------------------- /source/gui/ZeldaEditGeneralDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedron92/HWL-SaveEditor/HEAD/source/gui/ZeldaEditGeneralDlg.cpp -------------------------------------------------------------------------------- /source/gui/ZeldaEditGeneralDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedron92/HWL-SaveEditor/HEAD/source/gui/ZeldaEditGeneralDlg.h -------------------------------------------------------------------------------- /source/gui/ZeldaEditMaterials.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedron92/HWL-SaveEditor/HEAD/source/gui/ZeldaEditMaterials.cpp -------------------------------------------------------------------------------- /source/gui/ZeldaEditMaterials.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedron92/HWL-SaveEditor/HEAD/source/gui/ZeldaEditMaterials.h -------------------------------------------------------------------------------- /source/gui/ZeldaHWLSaveEditorGUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedron92/HWL-SaveEditor/HEAD/source/gui/ZeldaHWLSaveEditorGUI.cpp -------------------------------------------------------------------------------- /source/gui/ZeldaHWLSaveEditorGUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedron92/HWL-SaveEditor/HEAD/source/gui/ZeldaHWLSaveEditorGUI.h -------------------------------------------------------------------------------- /source/gui/ZeldaHWLSaveEditorGUI.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedron92/HWL-SaveEditor/HEAD/source/gui/ZeldaHWLSaveEditorGUI.rc -------------------------------------------------------------------------------- /source/gui/res/ZeldaHWLSaveEditorGUI.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedron92/HWL-SaveEditor/HEAD/source/gui/res/ZeldaHWLSaveEditorGUI.rc2 -------------------------------------------------------------------------------- /source/gui/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedron92/HWL-SaveEditor/HEAD/source/gui/resource.h -------------------------------------------------------------------------------- /source/gui/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedron92/HWL-SaveEditor/HEAD/source/gui/stdafx.cpp -------------------------------------------------------------------------------- /source/gui/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedron92/HWL-SaveEditor/HEAD/source/gui/stdafx.h -------------------------------------------------------------------------------- /source/gui/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedron92/HWL-SaveEditor/HEAD/source/gui/targetver.h -------------------------------------------------------------------------------- /source/libs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedron92/HWL-SaveEditor/HEAD/source/libs/CMakeLists.txt -------------------------------------------------------------------------------- /source/libs/HTTP_Client/API/HTTPClient.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedron92/HWL-SaveEditor/HEAD/source/libs/HTTP_Client/API/HTTPClient.c -------------------------------------------------------------------------------- /source/libs/HTTP_Client/API/HTTPClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedron92/HWL-SaveEditor/HEAD/source/libs/HTTP_Client/API/HTTPClient.h -------------------------------------------------------------------------------- /source/libs/HTTP_Client/API/HTTPClientAuth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedron92/HWL-SaveEditor/HEAD/source/libs/HTTP_Client/API/HTTPClientAuth.c -------------------------------------------------------------------------------- /source/libs/HTTP_Client/API/HTTPClientAuth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedron92/HWL-SaveEditor/HEAD/source/libs/HTTP_Client/API/HTTPClientAuth.h -------------------------------------------------------------------------------- /source/libs/HTTP_Client/API/HTTPClientCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedron92/HWL-SaveEditor/HEAD/source/libs/HTTP_Client/API/HTTPClientCommon.h -------------------------------------------------------------------------------- /source/libs/HTTP_Client/API/HTTPClientString.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedron92/HWL-SaveEditor/HEAD/source/libs/HTTP_Client/API/HTTPClientString.c -------------------------------------------------------------------------------- /source/libs/HTTP_Client/API/HTTPClientString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedron92/HWL-SaveEditor/HEAD/source/libs/HTTP_Client/API/HTTPClientString.h -------------------------------------------------------------------------------- /source/libs/HTTP_Client/API/HTTPClientWrapper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedron92/HWL-SaveEditor/HEAD/source/libs/HTTP_Client/API/HTTPClientWrapper.c -------------------------------------------------------------------------------- /source/libs/HTTP_Client/API/HTTPClientWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedron92/HWL-SaveEditor/HEAD/source/libs/HTTP_Client/API/HTTPClientWrapper.h -------------------------------------------------------------------------------- /source/libs/HTTP_Client/CHTTP_Client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedron92/HWL-SaveEditor/HEAD/source/libs/HTTP_Client/CHTTP_Client.cpp -------------------------------------------------------------------------------- /source/libs/HTTP_Client/CHTTP_Client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedron92/HWL-SaveEditor/HEAD/source/libs/HTTP_Client/CHTTP_Client.h -------------------------------------------------------------------------------- /source/libs/HTTP_Client/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedron92/HWL-SaveEditor/HEAD/source/libs/HTTP_Client/CMakeLists.txt -------------------------------------------------------------------------------- /source/libs/HTTP_Client/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedron92/HWL-SaveEditor/HEAD/source/libs/HTTP_Client/License.txt --------------------------------------------------------------------------------