├── .gitignore ├── .gitmodules ├── AssemblyInfo.cpp ├── BatchResourceUpdater.cpp ├── BatchResourceUpdater.rc ├── BatchResourceUpdater.sln ├── BatchResourceUpdater.vcxproj ├── BatchResourceUpdater.vcxproj.filters ├── Endpoints.cpp ├── Endpoints.h ├── ICO_CUR.cpp ├── ICO_CUR.h ├── README.md ├── Vars.cpp ├── Vars.h ├── bru.xsd ├── general.cpp ├── general.h ├── gpl.txt ├── resource.h ├── schema.bin ├── stdafx.cpp └── stdafx.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderforlife/batch-resource-updater/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderforlife/batch-resource-updater/HEAD/.gitmodules -------------------------------------------------------------------------------- /AssemblyInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderforlife/batch-resource-updater/HEAD/AssemblyInfo.cpp -------------------------------------------------------------------------------- /BatchResourceUpdater.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderforlife/batch-resource-updater/HEAD/BatchResourceUpdater.cpp -------------------------------------------------------------------------------- /BatchResourceUpdater.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderforlife/batch-resource-updater/HEAD/BatchResourceUpdater.rc -------------------------------------------------------------------------------- /BatchResourceUpdater.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderforlife/batch-resource-updater/HEAD/BatchResourceUpdater.sln -------------------------------------------------------------------------------- /BatchResourceUpdater.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderforlife/batch-resource-updater/HEAD/BatchResourceUpdater.vcxproj -------------------------------------------------------------------------------- /BatchResourceUpdater.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderforlife/batch-resource-updater/HEAD/BatchResourceUpdater.vcxproj.filters -------------------------------------------------------------------------------- /Endpoints.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderforlife/batch-resource-updater/HEAD/Endpoints.cpp -------------------------------------------------------------------------------- /Endpoints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderforlife/batch-resource-updater/HEAD/Endpoints.h -------------------------------------------------------------------------------- /ICO_CUR.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderforlife/batch-resource-updater/HEAD/ICO_CUR.cpp -------------------------------------------------------------------------------- /ICO_CUR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderforlife/batch-resource-updater/HEAD/ICO_CUR.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderforlife/batch-resource-updater/HEAD/README.md -------------------------------------------------------------------------------- /Vars.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderforlife/batch-resource-updater/HEAD/Vars.cpp -------------------------------------------------------------------------------- /Vars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderforlife/batch-resource-updater/HEAD/Vars.h -------------------------------------------------------------------------------- /bru.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderforlife/batch-resource-updater/HEAD/bru.xsd -------------------------------------------------------------------------------- /general.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderforlife/batch-resource-updater/HEAD/general.cpp -------------------------------------------------------------------------------- /general.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderforlife/batch-resource-updater/HEAD/general.h -------------------------------------------------------------------------------- /gpl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderforlife/batch-resource-updater/HEAD/gpl.txt -------------------------------------------------------------------------------- /resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderforlife/batch-resource-updater/HEAD/resource.h -------------------------------------------------------------------------------- /schema.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderforlife/batch-resource-updater/HEAD/schema.bin -------------------------------------------------------------------------------- /stdafx.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderforlife/batch-resource-updater/HEAD/stdafx.h --------------------------------------------------------------------------------