├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── README_CN.md ├── SteamIconFix.cpp ├── include ├── Makefile.am ├── Makefile.in ├── curl.h ├── curlver.h ├── easy.h ├── header.h ├── mprintf.h ├── multi.h ├── options.h ├── stdcheaders.h ├── system.h ├── typecheck-gcc.h ├── urlapi.h └── websockets.h └── lib ├── libcurl.a └── libcurl_a.lib /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ez4y2f/SteamIconFix/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ez4y2f/SteamIconFix/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ez4y2f/SteamIconFix/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ez4y2f/SteamIconFix/HEAD/README.md -------------------------------------------------------------------------------- /README_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ez4y2f/SteamIconFix/HEAD/README_CN.md -------------------------------------------------------------------------------- /SteamIconFix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ez4y2f/SteamIconFix/HEAD/SteamIconFix.cpp -------------------------------------------------------------------------------- /include/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ez4y2f/SteamIconFix/HEAD/include/Makefile.am -------------------------------------------------------------------------------- /include/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ez4y2f/SteamIconFix/HEAD/include/Makefile.in -------------------------------------------------------------------------------- /include/curl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ez4y2f/SteamIconFix/HEAD/include/curl.h -------------------------------------------------------------------------------- /include/curlver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ez4y2f/SteamIconFix/HEAD/include/curlver.h -------------------------------------------------------------------------------- /include/easy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ez4y2f/SteamIconFix/HEAD/include/easy.h -------------------------------------------------------------------------------- /include/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ez4y2f/SteamIconFix/HEAD/include/header.h -------------------------------------------------------------------------------- /include/mprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ez4y2f/SteamIconFix/HEAD/include/mprintf.h -------------------------------------------------------------------------------- /include/multi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ez4y2f/SteamIconFix/HEAD/include/multi.h -------------------------------------------------------------------------------- /include/options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ez4y2f/SteamIconFix/HEAD/include/options.h -------------------------------------------------------------------------------- /include/stdcheaders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ez4y2f/SteamIconFix/HEAD/include/stdcheaders.h -------------------------------------------------------------------------------- /include/system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ez4y2f/SteamIconFix/HEAD/include/system.h -------------------------------------------------------------------------------- /include/typecheck-gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ez4y2f/SteamIconFix/HEAD/include/typecheck-gcc.h -------------------------------------------------------------------------------- /include/urlapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ez4y2f/SteamIconFix/HEAD/include/urlapi.h -------------------------------------------------------------------------------- /include/websockets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ez4y2f/SteamIconFix/HEAD/include/websockets.h -------------------------------------------------------------------------------- /lib/libcurl.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ez4y2f/SteamIconFix/HEAD/lib/libcurl.a -------------------------------------------------------------------------------- /lib/libcurl_a.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ez4y2f/SteamIconFix/HEAD/lib/libcurl_a.lib --------------------------------------------------------------------------------