├── .gitattributes ├── .gitignore ├── LICENSE.txt ├── README.md ├── docs ├── doxygen │ ├── DoxygenLayout.xml │ ├── doxygen.dox │ └── doxygen.h ├── gamejolt_cpp.png ├── html.zip ├── os_android.png ├── os_linux.png ├── os_osx.png └── os_windows.png ├── examples ├── android │ ├── AndroidManifest_additional.xml │ └── jni │ │ ├── Android.mk │ │ ├── Application.mk │ │ └── Main │ │ └── Android.mk ├── cmake │ └── CMakeLists.txt ├── codeblocks │ └── GameJoltAPI.cbp ├── libcurl.dll ├── main.cpp ├── netbeans │ ├── Makefile │ └── nbproject │ │ ├── configurations.xml │ │ ├── private │ │ └── configurations.xml │ │ └── project.xml └── visualstudio │ ├── GameJoltAPI.sln │ └── GameJoltAPI │ ├── GameJoltAPI.vcxproj │ ├── GameJoltAPI.vcxproj.filters │ └── GameJoltAPI.vcxproj.user ├── libraries ├── bin │ ├── android │ │ ├── armeabi-v7a │ │ │ └── libcurl.so │ │ ├── armeabi │ │ │ └── libcurl.so │ │ ├── mips │ │ │ └── libcurl.so │ │ └── x86 │ │ │ └── libcurl.so │ ├── linux │ │ └── x64 │ │ │ ├── libcurl.so │ │ │ ├── libcurl.so.4 │ │ │ ├── libcurl.so.4.3.0 │ │ │ └── libraries.tar.gz │ └── windows │ │ ├── x64 │ │ ├── libcurl.dll │ │ └── libcurl.lib │ │ └── x86 │ │ ├── libcurl.a │ │ ├── libcurl.dll │ │ └── libcurl.lib ├── include │ └── curl │ │ ├── curl.h │ │ ├── curlbuild.h │ │ ├── curlrules.h │ │ ├── curlver.h │ │ ├── easy.h │ │ ├── mprintf.h │ │ ├── multi.h │ │ ├── stdcheaders.h │ │ └── typecheck-gcc.h └── licenses │ └── curl.txt └── source ├── Base64.cpp ├── Base64.h ├── MD5.cpp ├── MD5.h ├── gjAPI.cpp ├── gjAPI.h ├── gjCodeAfter.h ├── gjCodeBefore.h ├── gjDataItem.cpp ├── gjDataItem.h ├── gjInline.h ├── gjLookup.h ├── gjNetwork.cpp ├── gjNetwork.h ├── gjNetwork.impl.h ├── gjScore.cpp ├── gjScore.h ├── gjTrophy.cpp ├── gjTrophy.h ├── gjUser.cpp └── gjUser.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MausGames/game-jolt-api-cpp-library/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MausGames/game-jolt-api-cpp-library/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MausGames/game-jolt-api-cpp-library/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MausGames/game-jolt-api-cpp-library/HEAD/README.md -------------------------------------------------------------------------------- /docs/doxygen/DoxygenLayout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MausGames/game-jolt-api-cpp-library/HEAD/docs/doxygen/DoxygenLayout.xml -------------------------------------------------------------------------------- /docs/doxygen/doxygen.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MausGames/game-jolt-api-cpp-library/HEAD/docs/doxygen/doxygen.dox -------------------------------------------------------------------------------- /docs/doxygen/doxygen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MausGames/game-jolt-api-cpp-library/HEAD/docs/doxygen/doxygen.h -------------------------------------------------------------------------------- /docs/gamejolt_cpp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MausGames/game-jolt-api-cpp-library/HEAD/docs/gamejolt_cpp.png -------------------------------------------------------------------------------- /docs/html.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MausGames/game-jolt-api-cpp-library/HEAD/docs/html.zip -------------------------------------------------------------------------------- /docs/os_android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MausGames/game-jolt-api-cpp-library/HEAD/docs/os_android.png -------------------------------------------------------------------------------- /docs/os_linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MausGames/game-jolt-api-cpp-library/HEAD/docs/os_linux.png -------------------------------------------------------------------------------- /docs/os_osx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MausGames/game-jolt-api-cpp-library/HEAD/docs/os_osx.png -------------------------------------------------------------------------------- /docs/os_windows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MausGames/game-jolt-api-cpp-library/HEAD/docs/os_windows.png -------------------------------------------------------------------------------- /examples/android/AndroidManifest_additional.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MausGames/game-jolt-api-cpp-library/HEAD/examples/android/AndroidManifest_additional.xml -------------------------------------------------------------------------------- /examples/android/jni/Android.mk: -------------------------------------------------------------------------------- 1 | include $(call all-subdir-makefiles) -------------------------------------------------------------------------------- /examples/android/jni/Application.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MausGames/game-jolt-api-cpp-library/HEAD/examples/android/jni/Application.mk -------------------------------------------------------------------------------- /examples/android/jni/Main/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MausGames/game-jolt-api-cpp-library/HEAD/examples/android/jni/Main/Android.mk -------------------------------------------------------------------------------- /examples/cmake/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MausGames/game-jolt-api-cpp-library/HEAD/examples/cmake/CMakeLists.txt -------------------------------------------------------------------------------- /examples/codeblocks/GameJoltAPI.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MausGames/game-jolt-api-cpp-library/HEAD/examples/codeblocks/GameJoltAPI.cbp -------------------------------------------------------------------------------- /examples/libcurl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MausGames/game-jolt-api-cpp-library/HEAD/examples/libcurl.dll -------------------------------------------------------------------------------- /examples/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MausGames/game-jolt-api-cpp-library/HEAD/examples/main.cpp -------------------------------------------------------------------------------- /examples/netbeans/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MausGames/game-jolt-api-cpp-library/HEAD/examples/netbeans/Makefile -------------------------------------------------------------------------------- /examples/netbeans/nbproject/configurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MausGames/game-jolt-api-cpp-library/HEAD/examples/netbeans/nbproject/configurations.xml -------------------------------------------------------------------------------- /examples/netbeans/nbproject/private/configurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MausGames/game-jolt-api-cpp-library/HEAD/examples/netbeans/nbproject/private/configurations.xml -------------------------------------------------------------------------------- /examples/netbeans/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MausGames/game-jolt-api-cpp-library/HEAD/examples/netbeans/nbproject/project.xml -------------------------------------------------------------------------------- /examples/visualstudio/GameJoltAPI.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MausGames/game-jolt-api-cpp-library/HEAD/examples/visualstudio/GameJoltAPI.sln -------------------------------------------------------------------------------- /examples/visualstudio/GameJoltAPI/GameJoltAPI.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MausGames/game-jolt-api-cpp-library/HEAD/examples/visualstudio/GameJoltAPI/GameJoltAPI.vcxproj -------------------------------------------------------------------------------- /examples/visualstudio/GameJoltAPI/GameJoltAPI.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MausGames/game-jolt-api-cpp-library/HEAD/examples/visualstudio/GameJoltAPI/GameJoltAPI.vcxproj.filters -------------------------------------------------------------------------------- /examples/visualstudio/GameJoltAPI/GameJoltAPI.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MausGames/game-jolt-api-cpp-library/HEAD/examples/visualstudio/GameJoltAPI/GameJoltAPI.vcxproj.user -------------------------------------------------------------------------------- /libraries/bin/android/armeabi-v7a/libcurl.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MausGames/game-jolt-api-cpp-library/HEAD/libraries/bin/android/armeabi-v7a/libcurl.so -------------------------------------------------------------------------------- /libraries/bin/android/armeabi/libcurl.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MausGames/game-jolt-api-cpp-library/HEAD/libraries/bin/android/armeabi/libcurl.so -------------------------------------------------------------------------------- /libraries/bin/android/mips/libcurl.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MausGames/game-jolt-api-cpp-library/HEAD/libraries/bin/android/mips/libcurl.so -------------------------------------------------------------------------------- /libraries/bin/android/x86/libcurl.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MausGames/game-jolt-api-cpp-library/HEAD/libraries/bin/android/x86/libcurl.so -------------------------------------------------------------------------------- /libraries/bin/linux/x64/libcurl.so: -------------------------------------------------------------------------------- 1 | libcurl.so.4.3.0 -------------------------------------------------------------------------------- /libraries/bin/linux/x64/libcurl.so.4: -------------------------------------------------------------------------------- 1 | libcurl.so.4.3.0 -------------------------------------------------------------------------------- /libraries/bin/linux/x64/libcurl.so.4.3.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MausGames/game-jolt-api-cpp-library/HEAD/libraries/bin/linux/x64/libcurl.so.4.3.0 -------------------------------------------------------------------------------- /libraries/bin/linux/x64/libraries.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MausGames/game-jolt-api-cpp-library/HEAD/libraries/bin/linux/x64/libraries.tar.gz -------------------------------------------------------------------------------- /libraries/bin/windows/x64/libcurl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MausGames/game-jolt-api-cpp-library/HEAD/libraries/bin/windows/x64/libcurl.dll -------------------------------------------------------------------------------- /libraries/bin/windows/x64/libcurl.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MausGames/game-jolt-api-cpp-library/HEAD/libraries/bin/windows/x64/libcurl.lib -------------------------------------------------------------------------------- /libraries/bin/windows/x86/libcurl.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MausGames/game-jolt-api-cpp-library/HEAD/libraries/bin/windows/x86/libcurl.a -------------------------------------------------------------------------------- /libraries/bin/windows/x86/libcurl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MausGames/game-jolt-api-cpp-library/HEAD/libraries/bin/windows/x86/libcurl.dll -------------------------------------------------------------------------------- /libraries/bin/windows/x86/libcurl.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MausGames/game-jolt-api-cpp-library/HEAD/libraries/bin/windows/x86/libcurl.lib -------------------------------------------------------------------------------- /libraries/include/curl/curl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MausGames/game-jolt-api-cpp-library/HEAD/libraries/include/curl/curl.h -------------------------------------------------------------------------------- /libraries/include/curl/curlbuild.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MausGames/game-jolt-api-cpp-library/HEAD/libraries/include/curl/curlbuild.h -------------------------------------------------------------------------------- /libraries/include/curl/curlrules.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MausGames/game-jolt-api-cpp-library/HEAD/libraries/include/curl/curlrules.h -------------------------------------------------------------------------------- /libraries/include/curl/curlver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MausGames/game-jolt-api-cpp-library/HEAD/libraries/include/curl/curlver.h -------------------------------------------------------------------------------- /libraries/include/curl/easy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MausGames/game-jolt-api-cpp-library/HEAD/libraries/include/curl/easy.h -------------------------------------------------------------------------------- /libraries/include/curl/mprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MausGames/game-jolt-api-cpp-library/HEAD/libraries/include/curl/mprintf.h -------------------------------------------------------------------------------- /libraries/include/curl/multi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MausGames/game-jolt-api-cpp-library/HEAD/libraries/include/curl/multi.h -------------------------------------------------------------------------------- /libraries/include/curl/stdcheaders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MausGames/game-jolt-api-cpp-library/HEAD/libraries/include/curl/stdcheaders.h -------------------------------------------------------------------------------- /libraries/include/curl/typecheck-gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MausGames/game-jolt-api-cpp-library/HEAD/libraries/include/curl/typecheck-gcc.h -------------------------------------------------------------------------------- /libraries/licenses/curl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MausGames/game-jolt-api-cpp-library/HEAD/libraries/licenses/curl.txt -------------------------------------------------------------------------------- /source/Base64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MausGames/game-jolt-api-cpp-library/HEAD/source/Base64.cpp -------------------------------------------------------------------------------- /source/Base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MausGames/game-jolt-api-cpp-library/HEAD/source/Base64.h -------------------------------------------------------------------------------- /source/MD5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MausGames/game-jolt-api-cpp-library/HEAD/source/MD5.cpp -------------------------------------------------------------------------------- /source/MD5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MausGames/game-jolt-api-cpp-library/HEAD/source/MD5.h -------------------------------------------------------------------------------- /source/gjAPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MausGames/game-jolt-api-cpp-library/HEAD/source/gjAPI.cpp -------------------------------------------------------------------------------- /source/gjAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MausGames/game-jolt-api-cpp-library/HEAD/source/gjAPI.h -------------------------------------------------------------------------------- /source/gjCodeAfter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MausGames/game-jolt-api-cpp-library/HEAD/source/gjCodeAfter.h -------------------------------------------------------------------------------- /source/gjCodeBefore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MausGames/game-jolt-api-cpp-library/HEAD/source/gjCodeBefore.h -------------------------------------------------------------------------------- /source/gjDataItem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MausGames/game-jolt-api-cpp-library/HEAD/source/gjDataItem.cpp -------------------------------------------------------------------------------- /source/gjDataItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MausGames/game-jolt-api-cpp-library/HEAD/source/gjDataItem.h -------------------------------------------------------------------------------- /source/gjInline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MausGames/game-jolt-api-cpp-library/HEAD/source/gjInline.h -------------------------------------------------------------------------------- /source/gjLookup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MausGames/game-jolt-api-cpp-library/HEAD/source/gjLookup.h -------------------------------------------------------------------------------- /source/gjNetwork.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MausGames/game-jolt-api-cpp-library/HEAD/source/gjNetwork.cpp -------------------------------------------------------------------------------- /source/gjNetwork.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MausGames/game-jolt-api-cpp-library/HEAD/source/gjNetwork.h -------------------------------------------------------------------------------- /source/gjNetwork.impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MausGames/game-jolt-api-cpp-library/HEAD/source/gjNetwork.impl.h -------------------------------------------------------------------------------- /source/gjScore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MausGames/game-jolt-api-cpp-library/HEAD/source/gjScore.cpp -------------------------------------------------------------------------------- /source/gjScore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MausGames/game-jolt-api-cpp-library/HEAD/source/gjScore.h -------------------------------------------------------------------------------- /source/gjTrophy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MausGames/game-jolt-api-cpp-library/HEAD/source/gjTrophy.cpp -------------------------------------------------------------------------------- /source/gjTrophy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MausGames/game-jolt-api-cpp-library/HEAD/source/gjTrophy.h -------------------------------------------------------------------------------- /source/gjUser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MausGames/game-jolt-api-cpp-library/HEAD/source/gjUser.cpp -------------------------------------------------------------------------------- /source/gjUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MausGames/game-jolt-api-cpp-library/HEAD/source/gjUser.h --------------------------------------------------------------------------------