├── .github └── FUNDING.yml ├── README.md ├── assets └── logo.png ├── development ├── ExtensionsExamples │ ├── README.md │ ├── Win10 │ │ ├── BingWallpapers │ │ │ ├── BingWallpapers.cpp │ │ │ ├── BingWallpapers.h │ │ │ ├── BingWallpapers.sln │ │ │ ├── Extras │ │ │ │ ├── archive.h │ │ │ │ ├── archive_entry.h │ │ │ │ ├── ggml.h │ │ │ │ └── nlohmann_json.hpp │ │ │ ├── GUI │ │ │ │ ├── IconsFontAwesome5.h │ │ │ │ ├── imgui.h │ │ │ │ ├── imgui_internal.h │ │ │ │ ├── imgui_shared.h │ │ │ │ ├── implot.h │ │ │ │ ├── implot_internal.h │ │ │ │ └── imstb_textedit.h │ │ │ ├── Headers │ │ │ │ ├── BingWallpapers.h │ │ │ │ ├── IExtension.h │ │ │ │ ├── ImmApiProvider.h │ │ │ │ └── pch.h │ │ │ ├── Helpers │ │ │ │ ├── StorageExtensions.cpp │ │ │ │ ├── StorageExtensions.h │ │ │ │ ├── StorageInfo.h │ │ │ │ ├── StoragePath.cpp │ │ │ │ └── StoragePath.h │ │ │ ├── ImmApiProviderBridge.h │ │ │ ├── ImmExtenTemplate.vcxproj │ │ │ ├── ImmExtenTemplate.vcxproj.filters │ │ │ ├── Libs │ │ │ │ ├── ARM │ │ │ │ │ ├── ImMobile.lib │ │ │ │ │ ├── SDL2.lib │ │ │ │ │ ├── libEGL.lib │ │ │ │ │ ├── libGLESv1_CM.lib │ │ │ │ │ ├── libGLESv2.lib │ │ │ │ │ └── libGLESv2_with_capture.lib │ │ │ │ └── Win32 │ │ │ │ │ └── ImMobile.lib │ │ │ ├── Others │ │ │ │ └── dllmain.cpp │ │ │ └── README.md │ │ ├── ImmLottie │ │ │ ├── Core │ │ │ │ ├── freetype │ │ │ │ │ ├── v_ft_math.cpp │ │ │ │ │ ├── v_ft_math.h │ │ │ │ │ ├── v_ft_raster.cpp │ │ │ │ │ ├── v_ft_raster.h │ │ │ │ │ ├── v_ft_stroker.cpp │ │ │ │ │ ├── v_ft_stroker.h │ │ │ │ │ └── v_ft_types.h │ │ │ │ ├── imlottie.h │ │ │ │ ├── imlottie_impl.h │ │ │ │ ├── imottie_renderer.cpp │ │ │ │ ├── rapidjson │ │ │ │ │ ├── allocators.h │ │ │ │ │ ├── cursorstreamwrapper.h │ │ │ │ │ ├── document.h │ │ │ │ │ ├── encodedstream.h │ │ │ │ │ ├── encodings.h │ │ │ │ │ ├── error │ │ │ │ │ │ ├── en.h │ │ │ │ │ │ └── error.h │ │ │ │ │ ├── filereadstream.h │ │ │ │ │ ├── filewritestream.h │ │ │ │ │ ├── fwd.h │ │ │ │ │ ├── internal │ │ │ │ │ │ ├── biginteger.h │ │ │ │ │ │ ├── clzll.h │ │ │ │ │ │ ├── diyfp.h │ │ │ │ │ │ ├── dtoa.h │ │ │ │ │ │ ├── ieee754.h │ │ │ │ │ │ ├── itoa.h │ │ │ │ │ │ ├── meta.h │ │ │ │ │ │ ├── pow10.h │ │ │ │ │ │ ├── regex.h │ │ │ │ │ │ ├── stack.h │ │ │ │ │ │ ├── strfunc.h │ │ │ │ │ │ ├── strtod.h │ │ │ │ │ │ └── swap.h │ │ │ │ │ ├── istreamwrapper.h │ │ │ │ │ ├── memorybuffer.h │ │ │ │ │ ├── memorystream.h │ │ │ │ │ ├── msinttypes │ │ │ │ │ │ ├── inttypes.h │ │ │ │ │ │ └── stdint.h │ │ │ │ │ ├── ostreamwrapper.h │ │ │ │ │ ├── pointer.h │ │ │ │ │ ├── prettywriter.h │ │ │ │ │ ├── rapidjson.h │ │ │ │ │ ├── reader.h │ │ │ │ │ ├── schema.h │ │ │ │ │ ├── stream.h │ │ │ │ │ ├── stringbuffer.h │ │ │ │ │ └── writer.h │ │ │ │ └── stb_image.h │ │ │ ├── Extras │ │ │ │ ├── archive.h │ │ │ │ ├── archive_entry.h │ │ │ │ ├── ggml.h │ │ │ │ └── nlohmann_json.hpp │ │ │ ├── GUI │ │ │ │ ├── IconsFontAwesome5.h │ │ │ │ ├── imgui.h │ │ │ │ ├── imgui_internal.h │ │ │ │ ├── imgui_shared.h │ │ │ │ ├── implot.h │ │ │ │ ├── implot_internal.h │ │ │ │ └── imstb_textedit.h │ │ │ ├── Headers │ │ │ │ ├── IExtension.h │ │ │ │ ├── ImmApiProvider.h │ │ │ │ └── pch.h │ │ │ ├── Helpers │ │ │ │ ├── StorageExtensions.cpp │ │ │ │ ├── StorageExtensions.h │ │ │ │ ├── StorageInfo.h │ │ │ │ ├── StoragePath.cpp │ │ │ │ └── StoragePath.h │ │ │ ├── ImmApiProviderBridge.h │ │ │ ├── ImmExtenTemplate.vcxproj │ │ │ ├── ImmExtenTemplate.vcxproj.filters │ │ │ ├── ImmLottie.cpp │ │ │ ├── ImmLottie.h │ │ │ ├── ImmLottie.sln │ │ │ ├── Libs │ │ │ │ ├── ARM │ │ │ │ │ ├── ImMobile.lib │ │ │ │ │ ├── SDL2.lib │ │ │ │ │ ├── libEGL.lib │ │ │ │ │ ├── libGLESv1_CM.lib │ │ │ │ │ ├── libGLESv2.lib │ │ │ │ │ └── libGLESv2_with_capture.lib │ │ │ │ └── Win32 │ │ │ │ │ └── ImMobile.lib │ │ │ ├── Others │ │ │ │ └── dllmain.cpp │ │ │ └── README.md │ │ ├── ImmWUT │ │ │ ├── Extras │ │ │ │ ├── archive.h │ │ │ │ ├── archive_entry.h │ │ │ │ ├── ggml.h │ │ │ │ └── nlohmann_json.hpp │ │ │ ├── GUI │ │ │ │ ├── IconsFontAwesome5.h │ │ │ │ ├── imgui.h │ │ │ │ ├── imgui_internal.h │ │ │ │ ├── imgui_shared.h │ │ │ │ ├── implot.h │ │ │ │ ├── implot_internal.h │ │ │ │ └── imstb_textedit.h │ │ │ ├── Headers │ │ │ │ ├── IExtension.h │ │ │ │ ├── ImmApiProvider.h │ │ │ │ └── pch.h │ │ │ ├── Helpers │ │ │ │ ├── StorageExtensions.cpp │ │ │ │ ├── StorageExtensions.h │ │ │ │ ├── StorageInfo.h │ │ │ │ ├── StoragePath.cpp │ │ │ │ └── StoragePath.h │ │ │ ├── ImmApiProviderBridge.h │ │ │ ├── ImmExtenTemplate.vcxproj │ │ │ ├── ImmExtenTemplate.vcxproj.filters │ │ │ ├── ImmWUT.cpp │ │ │ ├── ImmWUT.h │ │ │ ├── ImmWUT.sln │ │ │ ├── Libs │ │ │ │ ├── ARM │ │ │ │ │ ├── ImMobile.lib │ │ │ │ │ ├── SDL2.lib │ │ │ │ │ ├── libEGL.lib │ │ │ │ │ ├── libGLESv1_CM.lib │ │ │ │ │ ├── libGLESv2.lib │ │ │ │ │ └── libGLESv2_with_capture.lib │ │ │ │ └── Win32 │ │ │ │ │ └── ImMobile.lib │ │ │ ├── Others │ │ │ │ └── dllmain.cpp │ │ │ └── README.md │ │ └── README.md │ └── Win8.1 │ │ ├── BingWallpaper │ │ ├── BingWallpaper8.1.sln │ │ ├── ImmExtenTemplate8.1.Shared │ │ │ ├── BingWallpaper8.1.cpp │ │ │ ├── BingWallpaper8.1.h │ │ │ ├── Extras │ │ │ │ ├── archive.h │ │ │ │ ├── archive_entry.h │ │ │ │ ├── ggml.h │ │ │ │ └── picojson.h │ │ │ ├── GUI │ │ │ │ ├── IconsFontAwesome5.h │ │ │ │ ├── imgui.h │ │ │ │ ├── imgui_internal.h │ │ │ │ ├── imgui_shared.h │ │ │ │ ├── implot.h │ │ │ │ ├── implot_internal.h │ │ │ │ └── imstb_textedit.h │ │ │ ├── Headers │ │ │ │ ├── IExtension.h │ │ │ │ ├── ImmApiProvider.h │ │ │ │ └── pch.h │ │ │ ├── Helpers │ │ │ │ ├── StorageExtensions.cpp │ │ │ │ ├── StorageExtensions.h │ │ │ │ ├── StorageInfo.h │ │ │ │ ├── StoragePath.cpp │ │ │ │ └── StoragePath.h │ │ │ ├── ImmApiProviderBridge.h │ │ │ ├── ImmExtenTemplate8.1.Shared.vcxitems │ │ │ ├── ImmExtenTemplate8.1.Shared.vcxitems.filters │ │ │ └── Others │ │ │ │ └── dllmain.cpp │ │ ├── ImmExtenTemplate8.1.Windows │ │ │ ├── ImmExtenTemplate8.1.Windows.vcxproj │ │ │ ├── ImmExtenTemplate8.1.Windows.vcxproj.filters │ │ │ └── Libs │ │ │ │ └── ARM │ │ │ │ └── ImMobile.lib │ │ ├── ImmExtenTemplate8.1.WindowsPhone │ │ │ ├── ImmExtenTemplate8.1.WindowsPhone.vcxproj │ │ │ ├── ImmExtenTemplate8.1.WindowsPhone.vcxproj.filters │ │ │ └── Libs │ │ │ │ └── ARM │ │ │ │ └── ImMobile.lib │ │ └── README.md │ │ └── README.md ├── ExtensionsTemplate │ ├── README.md │ ├── Win10 │ │ ├── Extras │ │ │ ├── ANGLE │ │ │ │ ├── EGL │ │ │ │ │ ├── egl.h │ │ │ │ │ ├── eglext.h │ │ │ │ │ ├── eglext_angle.h │ │ │ │ │ └── eglplatform.h │ │ │ │ ├── GLES2 │ │ │ │ │ ├── gl2.h │ │ │ │ │ ├── gl2ext.h │ │ │ │ │ ├── gl2ext_angle.h │ │ │ │ │ ├── gl2ext_explicit_context_autogen.inc │ │ │ │ │ └── gl2platform.h │ │ │ │ ├── GLES3 │ │ │ │ │ ├── gl3.h │ │ │ │ │ ├── gl31.h │ │ │ │ │ ├── gl31ext_explicit_context_autogen.inc │ │ │ │ │ ├── gl32.h │ │ │ │ │ ├── gl32ext_explicit_context_autogen.inc │ │ │ │ │ ├── gl3ext_explicit_context_autogen.inc │ │ │ │ │ └── gl3platform.h │ │ │ │ ├── KHR │ │ │ │ │ └── khrplatform.h │ │ │ │ ├── angle_gl.h │ │ │ │ └── angle_windowsstore.h │ │ │ ├── SDL │ │ │ │ └── include │ │ │ │ │ ├── SDL.h │ │ │ │ │ ├── SDL_assert.h │ │ │ │ │ ├── SDL_atomic.h │ │ │ │ │ ├── SDL_audio.h │ │ │ │ │ ├── SDL_bits.h │ │ │ │ │ ├── SDL_blendmode.h │ │ │ │ │ ├── SDL_clipboard.h │ │ │ │ │ ├── SDL_config.h │ │ │ │ │ ├── SDL_config.h.cmake │ │ │ │ │ ├── SDL_config.h.in │ │ │ │ │ ├── SDL_config_android.h │ │ │ │ │ ├── SDL_config_emscripten.h │ │ │ │ │ ├── SDL_config_iphoneos.h │ │ │ │ │ ├── SDL_config_macosx.h │ │ │ │ │ ├── SDL_config_minimal.h │ │ │ │ │ ├── SDL_config_os2.h │ │ │ │ │ ├── SDL_config_pandora.h │ │ │ │ │ ├── SDL_config_windows.h │ │ │ │ │ ├── SDL_config_winrt.h │ │ │ │ │ ├── SDL_copying.h │ │ │ │ │ ├── SDL_cpuinfo.h │ │ │ │ │ ├── SDL_egl.h │ │ │ │ │ ├── SDL_endian.h │ │ │ │ │ ├── SDL_error.h │ │ │ │ │ ├── SDL_events.h │ │ │ │ │ ├── SDL_filesystem.h │ │ │ │ │ ├── SDL_gamecontroller.h │ │ │ │ │ ├── SDL_gesture.h │ │ │ │ │ ├── SDL_haptic.h │ │ │ │ │ ├── SDL_hidapi.h │ │ │ │ │ ├── SDL_hints.h │ │ │ │ │ ├── SDL_joystick.h │ │ │ │ │ ├── SDL_keyboard.h │ │ │ │ │ ├── SDL_keycode.h │ │ │ │ │ ├── SDL_loadso.h │ │ │ │ │ ├── SDL_locale.h │ │ │ │ │ ├── SDL_log.h │ │ │ │ │ ├── SDL_main.h │ │ │ │ │ ├── SDL_messagebox.h │ │ │ │ │ ├── SDL_metal.h │ │ │ │ │ ├── SDL_misc.h │ │ │ │ │ ├── SDL_mouse.h │ │ │ │ │ ├── SDL_mutex.h │ │ │ │ │ ├── SDL_name.h │ │ │ │ │ ├── SDL_opengl.h │ │ │ │ │ ├── SDL_opengl_glext.h │ │ │ │ │ ├── SDL_opengles.h │ │ │ │ │ ├── SDL_opengles2.h │ │ │ │ │ ├── SDL_opengles2_gl2.h │ │ │ │ │ ├── SDL_opengles2_gl2ext.h │ │ │ │ │ ├── SDL_opengles2_gl2platform.h │ │ │ │ │ ├── SDL_opengles2_khrplatform.h │ │ │ │ │ ├── SDL_pixels.h │ │ │ │ │ ├── SDL_platform.h │ │ │ │ │ ├── SDL_power.h │ │ │ │ │ ├── SDL_quit.h │ │ │ │ │ ├── SDL_rect.h │ │ │ │ │ ├── SDL_render.h │ │ │ │ │ ├── SDL_revision.h │ │ │ │ │ ├── SDL_revision.h.cmake │ │ │ │ │ ├── SDL_rwops.h │ │ │ │ │ ├── SDL_scancode.h │ │ │ │ │ ├── SDL_sensor.h │ │ │ │ │ ├── SDL_shape.h │ │ │ │ │ ├── SDL_stdinc.h │ │ │ │ │ ├── SDL_surface.h │ │ │ │ │ ├── SDL_system.h │ │ │ │ │ ├── SDL_syswm.h │ │ │ │ │ ├── SDL_test.h │ │ │ │ │ ├── SDL_test_assert.h │ │ │ │ │ ├── SDL_test_common.h │ │ │ │ │ ├── SDL_test_compare.h │ │ │ │ │ ├── SDL_test_crc32.h │ │ │ │ │ ├── SDL_test_font.h │ │ │ │ │ ├── SDL_test_fuzzer.h │ │ │ │ │ ├── SDL_test_harness.h │ │ │ │ │ ├── SDL_test_images.h │ │ │ │ │ ├── SDL_test_log.h │ │ │ │ │ ├── SDL_test_md5.h │ │ │ │ │ ├── SDL_test_memory.h │ │ │ │ │ ├── SDL_test_random.h │ │ │ │ │ ├── SDL_thread.h │ │ │ │ │ ├── SDL_timer.h │ │ │ │ │ ├── SDL_touch.h │ │ │ │ │ ├── SDL_types.h │ │ │ │ │ ├── SDL_version.h │ │ │ │ │ ├── SDL_video.h │ │ │ │ │ ├── SDL_vulkan.h │ │ │ │ │ ├── begin_code.h │ │ │ │ │ └── close_code.h │ │ │ ├── archive.h │ │ │ ├── archive_entry.h │ │ │ ├── ggml.h │ │ │ └── nlohmann_json.hpp │ │ ├── GUI │ │ │ ├── IconsFontAwesome5.h │ │ │ ├── imgui.h │ │ │ ├── imgui_internal.h │ │ │ ├── imgui_shared.h │ │ │ ├── implot.h │ │ │ ├── implot_internal.h │ │ │ └── imstb_textedit.h │ │ ├── Headers │ │ │ ├── IExtension.h │ │ │ ├── ImmApiProvider.h │ │ │ └── pch.h │ │ ├── Helpers │ │ │ ├── StorageExtensions.cpp │ │ │ ├── StorageExtensions.h │ │ │ ├── StorageInfo.h │ │ │ ├── StoragePath.cpp │ │ │ └── StoragePath.h │ │ ├── ImmApiProviderBridge.h │ │ ├── ImmApiProviderBridgeC.h │ │ ├── ImmExtenTemplate.cpp │ │ ├── ImmExtenTemplate.h │ │ ├── ImmExtenTemplate.sln │ │ ├── ImmExtenTemplate.vcxproj │ │ ├── ImmExtenTemplate.vcxproj.filters │ │ ├── Libs │ │ │ ├── ARM │ │ │ │ ├── ImMobile.lib │ │ │ │ ├── SDL2.lib │ │ │ │ ├── libEGL.lib │ │ │ │ ├── libGLESv1_CM.lib │ │ │ │ └── libGLESv2.lib │ │ │ └── Win32 │ │ │ │ ├── ImMobile.lib │ │ │ │ ├── libEGL.lib │ │ │ │ └── libGLESv2.lib │ │ ├── Others │ │ │ └── dllmain.cpp │ │ └── README.md │ └── Win8.1 │ │ ├── ImmExtenTemplate8.1.Shared │ │ ├── Extras │ │ │ ├── archive.h │ │ │ ├── archive_entry.h │ │ │ ├── ggml.h │ │ │ └── picojson.h │ │ ├── GUI │ │ │ ├── IconsFontAwesome5.h │ │ │ ├── imgui.h │ │ │ ├── imgui_internal.h │ │ │ ├── imgui_shared.h │ │ │ ├── implot.h │ │ │ ├── implot_internal.h │ │ │ └── imstb_textedit.h │ │ ├── Headers │ │ │ ├── IExtension.h │ │ │ ├── ImmApiProvider.h │ │ │ └── pch.h │ │ ├── Helpers │ │ │ ├── StorageExtensions.cpp │ │ │ ├── StorageExtensions.h │ │ │ ├── StorageInfo.h │ │ │ ├── StoragePath.cpp │ │ │ └── StoragePath.h │ │ ├── ImmApiProviderBridge.h │ │ ├── ImmApiProviderBridgeC.h │ │ ├── ImmExtenTemplate8.1.Shared.vcxitems │ │ ├── ImmExtenTemplate8.1.Shared.vcxitems.filters │ │ ├── ImmExtenTemplate8.1.cpp │ │ ├── ImmExtenTemplate8.1.h │ │ └── Others │ │ │ └── dllmain.cpp │ │ ├── ImmExtenTemplate8.1.Windows │ │ ├── ImmExtenTemplate8.1.Windows.vcxproj │ │ ├── ImmExtenTemplate8.1.Windows.vcxproj.filters │ │ └── Libs │ │ │ └── ARM │ │ │ └── ImMobile.lib │ │ ├── ImmExtenTemplate8.1.WindowsPhone │ │ ├── Deploy │ │ │ ├── AppDeployCmd.exe │ │ │ ├── ISETool.exe │ │ │ └── Microsoft.Phone.Tools.Deploy.dll │ │ ├── ImmExtenTemplate8.1.WindowsPhone.vcxproj │ │ ├── ImmExtenTemplate8.1.WindowsPhone.vcxproj.filters │ │ └── Libs │ │ │ └── ARM │ │ │ └── ImMobile.lib │ │ ├── ImmExtenTemplate8.1.sln │ │ └── README.md ├── JSDemos │ ├── README.md │ └── jsDemo.js └── README.md ├── docs ├── CNAME ├── Updates.json ├── fav.png ├── index.html └── version.txt ├── library ├── extensions │ ├── 10 │ │ ├── mobile │ │ │ ├── BingWallpapers.dll │ │ │ ├── ImmDemo.dll │ │ │ ├── ImmLibretro.dll │ │ │ ├── ImmLottie.dll │ │ │ ├── ImmWUT.dll │ │ │ └── resources │ │ │ │ └── ImmLottieSamples.zip │ │ └── x86 │ │ │ ├── BingWallpapers.dll │ │ │ ├── ImmDemo.dll │ │ │ ├── ImmLibretro.dll │ │ │ ├── ImmLottie.dll │ │ │ └── resources │ │ │ └── ImmLottieSamples.zip │ ├── 8.1 │ │ ├── mobile │ │ │ ├── BingWallpaper.dll │ │ │ ├── ImmDemo.dll │ │ │ └── ImmLibretro.dll │ │ └── surface │ │ │ ├── BingWallpaper.dll │ │ │ ├── ImmDemo.dll │ │ │ └── ImmLibretro.dll │ └── README.md └── scripts │ ├── README.md │ └── jsDemo.js ├── licenses ├── Dear ImGui (Main).txt ├── Dear ImGui (UWP).txt ├── ImFileDialog.txt ├── ImGuiColorTextEdit.txt ├── ImPlot.txt ├── Libraries │ ├── csv-parser.txt │ ├── dll_management.txt │ ├── gumbo-parser.txt │ ├── libarchive.txt │ ├── libzip.txt │ ├── nlohmann_json.txt │ ├── picojson.txt │ ├── pugixml.txt │ ├── quickjs-ng.txt │ ├── quickjs.txt │ ├── simpleini.txt │ ├── stb.txt │ └── zlib.txt ├── RPN Calculator.txt ├── SoundEffects.txt ├── Themes.txt ├── Wallpapers.txt ├── imgui-notify.txt └── imgui_markdown.txt └── mobile ├── ImMobile_1.3.3_W10M.appx ├── ImMobile_1.3.3_W10M.cer ├── ImMobile_1.3.3_WP8.1.appx ├── ImMobile_1.3.3_WP8.1.cer ├── Microsoft.VCLibs.ARM.8.1.appx └── README.md /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/README.md -------------------------------------------------------------------------------- /assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/assets/logo.png -------------------------------------------------------------------------------- /development/ExtensionsExamples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/README.md -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/BingWallpapers/BingWallpapers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/BingWallpapers/BingWallpapers.cpp -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/BingWallpapers/BingWallpapers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/BingWallpapers/BingWallpapers.h -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/BingWallpapers/BingWallpapers.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/BingWallpapers/BingWallpapers.sln -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/BingWallpapers/Extras/archive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/BingWallpapers/Extras/archive.h -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/BingWallpapers/Extras/archive_entry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/BingWallpapers/Extras/archive_entry.h -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/BingWallpapers/Extras/ggml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/BingWallpapers/Extras/ggml.h -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/BingWallpapers/Extras/nlohmann_json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/BingWallpapers/Extras/nlohmann_json.hpp -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/BingWallpapers/GUI/IconsFontAwesome5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/BingWallpapers/GUI/IconsFontAwesome5.h -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/BingWallpapers/GUI/imgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/BingWallpapers/GUI/imgui.h -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/BingWallpapers/GUI/imgui_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/BingWallpapers/GUI/imgui_internal.h -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/BingWallpapers/GUI/imgui_shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/BingWallpapers/GUI/imgui_shared.h -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/BingWallpapers/GUI/implot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/BingWallpapers/GUI/implot.h -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/BingWallpapers/GUI/implot_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/BingWallpapers/GUI/implot_internal.h -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/BingWallpapers/GUI/imstb_textedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/BingWallpapers/GUI/imstb_textedit.h -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/BingWallpapers/Headers/BingWallpapers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/BingWallpapers/Headers/BingWallpapers.h -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/BingWallpapers/Headers/IExtension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/BingWallpapers/Headers/IExtension.h -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/BingWallpapers/Headers/ImmApiProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/BingWallpapers/Headers/ImmApiProvider.h -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/BingWallpapers/Headers/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/BingWallpapers/Headers/pch.h -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/BingWallpapers/Helpers/StorageExtensions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/BingWallpapers/Helpers/StorageExtensions.cpp -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/BingWallpapers/Helpers/StorageExtensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/BingWallpapers/Helpers/StorageExtensions.h -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/BingWallpapers/Helpers/StorageInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/BingWallpapers/Helpers/StorageInfo.h -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/BingWallpapers/Helpers/StoragePath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/BingWallpapers/Helpers/StoragePath.cpp -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/BingWallpapers/Helpers/StoragePath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/BingWallpapers/Helpers/StoragePath.h -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/BingWallpapers/ImmApiProviderBridge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/BingWallpapers/ImmApiProviderBridge.h -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/BingWallpapers/ImmExtenTemplate.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/BingWallpapers/ImmExtenTemplate.vcxproj -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/BingWallpapers/ImmExtenTemplate.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/BingWallpapers/ImmExtenTemplate.vcxproj.filters -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/BingWallpapers/Libs/ARM/ImMobile.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/BingWallpapers/Libs/ARM/ImMobile.lib -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/BingWallpapers/Libs/ARM/SDL2.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/BingWallpapers/Libs/ARM/SDL2.lib -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/BingWallpapers/Libs/ARM/libEGL.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/BingWallpapers/Libs/ARM/libEGL.lib -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/BingWallpapers/Libs/ARM/libGLESv1_CM.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/BingWallpapers/Libs/ARM/libGLESv1_CM.lib -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/BingWallpapers/Libs/ARM/libGLESv2.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/BingWallpapers/Libs/ARM/libGLESv2.lib -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/BingWallpapers/Libs/ARM/libGLESv2_with_capture.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/BingWallpapers/Libs/ARM/libGLESv2_with_capture.lib -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/BingWallpapers/Libs/Win32/ImMobile.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/BingWallpapers/Libs/Win32/ImMobile.lib -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/BingWallpapers/Others/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/BingWallpapers/Others/dllmain.cpp -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/BingWallpapers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/BingWallpapers/README.md -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/ImmLottie/Core/freetype/v_ft_math.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/ImmLottie/Core/freetype/v_ft_math.cpp -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/ImmLottie/Core/freetype/v_ft_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/ImmLottie/Core/freetype/v_ft_math.h -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/ImmLottie/Core/freetype/v_ft_raster.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/ImmLottie/Core/freetype/v_ft_raster.cpp -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/ImmLottie/Core/freetype/v_ft_raster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/ImmLottie/Core/freetype/v_ft_raster.h -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/ImmLottie/Core/freetype/v_ft_stroker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/ImmLottie/Core/freetype/v_ft_stroker.cpp -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/ImmLottie/Core/freetype/v_ft_stroker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/ImmLottie/Core/freetype/v_ft_stroker.h -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/ImmLottie/Core/freetype/v_ft_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/ImmLottie/Core/freetype/v_ft_types.h -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/ImmLottie/Core/imlottie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/ImmLottie/Core/imlottie.h -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/ImmLottie/Core/imlottie_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/ImmLottie/Core/imlottie_impl.h -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/ImmLottie/Core/imottie_renderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/ImmLottie/Core/imottie_renderer.cpp -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/ImmLottie/Core/rapidjson/allocators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/ImmLottie/Core/rapidjson/allocators.h -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/ImmLottie/Core/rapidjson/cursorstreamwrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/ImmLottie/Core/rapidjson/cursorstreamwrapper.h -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/ImmLottie/Core/rapidjson/document.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/ImmLottie/Core/rapidjson/document.h -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/ImmLottie/Core/rapidjson/encodedstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/ImmLottie/Core/rapidjson/encodedstream.h -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/ImmLottie/Core/rapidjson/encodings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/ImmLottie/Core/rapidjson/encodings.h -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/ImmLottie/Core/rapidjson/error/en.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/ImmLottie/Core/rapidjson/error/en.h -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/ImmLottie/Core/rapidjson/error/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/ImmLottie/Core/rapidjson/error/error.h -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/ImmLottie/Core/rapidjson/filereadstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/ImmLottie/Core/rapidjson/filereadstream.h -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/ImmLottie/Core/rapidjson/filewritestream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/ImmLottie/Core/rapidjson/filewritestream.h -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/ImmLottie/Core/rapidjson/fwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/ImmLottie/Core/rapidjson/fwd.h -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/ImmLottie/Core/rapidjson/internal/biginteger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/ImmLottie/Core/rapidjson/internal/biginteger.h -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/ImmLottie/Core/rapidjson/internal/clzll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/ImmLottie/Core/rapidjson/internal/clzll.h -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/ImmLottie/Core/rapidjson/internal/diyfp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/ImmLottie/Core/rapidjson/internal/diyfp.h -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/ImmLottie/Core/rapidjson/internal/dtoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/ImmLottie/Core/rapidjson/internal/dtoa.h -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/ImmLottie/Core/rapidjson/internal/ieee754.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/ImmLottie/Core/rapidjson/internal/ieee754.h -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/ImmLottie/Core/rapidjson/internal/itoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/ImmLottie/Core/rapidjson/internal/itoa.h -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/ImmLottie/Core/rapidjson/internal/meta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/ImmLottie/Core/rapidjson/internal/meta.h -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/ImmLottie/Core/rapidjson/internal/pow10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/ImmLottie/Core/rapidjson/internal/pow10.h -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/ImmLottie/Core/rapidjson/internal/regex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/ImmLottie/Core/rapidjson/internal/regex.h -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/ImmLottie/Core/rapidjson/internal/stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/ImmLottie/Core/rapidjson/internal/stack.h -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/ImmLottie/Core/rapidjson/internal/strfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/ImmLottie/Core/rapidjson/internal/strfunc.h -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/ImmLottie/Core/rapidjson/internal/strtod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/ImmLottie/Core/rapidjson/internal/strtod.h -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/ImmLottie/Core/rapidjson/internal/swap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/ImmLottie/Core/rapidjson/internal/swap.h -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/ImmLottie/Core/rapidjson/istreamwrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/ImmLottie/Core/rapidjson/istreamwrapper.h -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/ImmLottie/Core/rapidjson/memorybuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/ImmLottie/Core/rapidjson/memorybuffer.h -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/ImmLottie/Core/rapidjson/memorystream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/ImmLottie/Core/rapidjson/memorystream.h -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/ImmLottie/Core/rapidjson/msinttypes/inttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/ImmLottie/Core/rapidjson/msinttypes/inttypes.h -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/ImmLottie/Core/rapidjson/msinttypes/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/ImmLottie/Core/rapidjson/msinttypes/stdint.h -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/ImmLottie/Core/rapidjson/ostreamwrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/ImmLottie/Core/rapidjson/ostreamwrapper.h -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/ImmLottie/Core/rapidjson/pointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/ImmLottie/Core/rapidjson/pointer.h -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/ImmLottie/Core/rapidjson/prettywriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/ImmLottie/Core/rapidjson/prettywriter.h -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/ImmLottie/Core/rapidjson/rapidjson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/ImmLottie/Core/rapidjson/rapidjson.h -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/ImmLottie/Core/rapidjson/reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/ImmLottie/Core/rapidjson/reader.h -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/ImmLottie/Core/rapidjson/schema.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/ImmLottie/Core/rapidjson/schema.h -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/ImmLottie/Core/rapidjson/stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/ImmLottie/Core/rapidjson/stream.h -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/ImmLottie/Core/rapidjson/stringbuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/ImmLottie/Core/rapidjson/stringbuffer.h -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/ImmLottie/Core/rapidjson/writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/ImmLottie/Core/rapidjson/writer.h -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/ImmLottie/Core/stb_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/ImmLottie/Core/stb_image.h -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/ImmLottie/Extras/archive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/ImmLottie/Extras/archive.h -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/ImmLottie/Extras/archive_entry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/ImmLottie/Extras/archive_entry.h -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/ImmLottie/Extras/ggml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/ImmLottie/Extras/ggml.h -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/ImmLottie/Extras/nlohmann_json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/ImmLottie/Extras/nlohmann_json.hpp -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/ImmLottie/GUI/IconsFontAwesome5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/ImmLottie/GUI/IconsFontAwesome5.h -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/ImmLottie/GUI/imgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/ImmLottie/GUI/imgui.h -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/ImmLottie/GUI/imgui_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/ImmLottie/GUI/imgui_internal.h -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/ImmLottie/GUI/imgui_shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/ImmLottie/GUI/imgui_shared.h -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/ImmLottie/GUI/implot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/ImmLottie/GUI/implot.h -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/ImmLottie/GUI/implot_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/ImmLottie/GUI/implot_internal.h -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/ImmLottie/GUI/imstb_textedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/ImmLottie/GUI/imstb_textedit.h -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/ImmLottie/Headers/IExtension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/ImmLottie/Headers/IExtension.h -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/ImmLottie/Headers/ImmApiProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/ImmLottie/Headers/ImmApiProvider.h -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/ImmLottie/Headers/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/ImmLottie/Headers/pch.h -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/ImmLottie/Helpers/StorageExtensions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/ImmLottie/Helpers/StorageExtensions.cpp -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/ImmLottie/Helpers/StorageExtensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/ImmLottie/Helpers/StorageExtensions.h -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/ImmLottie/Helpers/StorageInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/ImmLottie/Helpers/StorageInfo.h -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/ImmLottie/Helpers/StoragePath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/ImmLottie/Helpers/StoragePath.cpp -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/ImmLottie/Helpers/StoragePath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/ImmLottie/Helpers/StoragePath.h -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/ImmLottie/ImmApiProviderBridge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/ImmLottie/ImmApiProviderBridge.h -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/ImmLottie/ImmExtenTemplate.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/ImmLottie/ImmExtenTemplate.vcxproj -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/ImmLottie/ImmExtenTemplate.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/ImmLottie/ImmExtenTemplate.vcxproj.filters -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/ImmLottie/ImmLottie.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/ImmLottie/ImmLottie.cpp -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/ImmLottie/ImmLottie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/ImmLottie/ImmLottie.h -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/ImmLottie/ImmLottie.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/ImmLottie/ImmLottie.sln -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/ImmLottie/Libs/ARM/ImMobile.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/ImmLottie/Libs/ARM/ImMobile.lib -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/ImmLottie/Libs/ARM/SDL2.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/ImmLottie/Libs/ARM/SDL2.lib -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/ImmLottie/Libs/ARM/libEGL.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/ImmLottie/Libs/ARM/libEGL.lib -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/ImmLottie/Libs/ARM/libGLESv1_CM.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/ImmLottie/Libs/ARM/libGLESv1_CM.lib -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/ImmLottie/Libs/ARM/libGLESv2.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/ImmLottie/Libs/ARM/libGLESv2.lib -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/ImmLottie/Libs/ARM/libGLESv2_with_capture.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/ImmLottie/Libs/ARM/libGLESv2_with_capture.lib -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/ImmLottie/Libs/Win32/ImMobile.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/ImmLottie/Libs/Win32/ImMobile.lib -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/ImmLottie/Others/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/ImmLottie/Others/dllmain.cpp -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/ImmLottie/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/ImmLottie/README.md -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/ImmWUT/Extras/archive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/ImmWUT/Extras/archive.h -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/ImmWUT/Extras/archive_entry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/ImmWUT/Extras/archive_entry.h -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/ImmWUT/Extras/ggml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/ImmWUT/Extras/ggml.h -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/ImmWUT/Extras/nlohmann_json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/ImmWUT/Extras/nlohmann_json.hpp -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/ImmWUT/GUI/IconsFontAwesome5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/ImmWUT/GUI/IconsFontAwesome5.h -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/ImmWUT/GUI/imgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/ImmWUT/GUI/imgui.h -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/ImmWUT/GUI/imgui_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/ImmWUT/GUI/imgui_internal.h -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/ImmWUT/GUI/imgui_shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/ImmWUT/GUI/imgui_shared.h -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/ImmWUT/GUI/implot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/ImmWUT/GUI/implot.h -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/ImmWUT/GUI/implot_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/ImmWUT/GUI/implot_internal.h -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/ImmWUT/GUI/imstb_textedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/ImmWUT/GUI/imstb_textedit.h -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/ImmWUT/Headers/IExtension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/ImmWUT/Headers/IExtension.h -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/ImmWUT/Headers/ImmApiProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/ImmWUT/Headers/ImmApiProvider.h -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/ImmWUT/Headers/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/ImmWUT/Headers/pch.h -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/ImmWUT/Helpers/StorageExtensions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/ImmWUT/Helpers/StorageExtensions.cpp -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/ImmWUT/Helpers/StorageExtensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/ImmWUT/Helpers/StorageExtensions.h -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/ImmWUT/Helpers/StorageInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/ImmWUT/Helpers/StorageInfo.h -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/ImmWUT/Helpers/StoragePath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/ImmWUT/Helpers/StoragePath.cpp -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/ImmWUT/Helpers/StoragePath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/ImmWUT/Helpers/StoragePath.h -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/ImmWUT/ImmApiProviderBridge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/ImmWUT/ImmApiProviderBridge.h -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/ImmWUT/ImmExtenTemplate.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/ImmWUT/ImmExtenTemplate.vcxproj -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/ImmWUT/ImmExtenTemplate.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/ImmWUT/ImmExtenTemplate.vcxproj.filters -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/ImmWUT/ImmWUT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/ImmWUT/ImmWUT.cpp -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/ImmWUT/ImmWUT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/ImmWUT/ImmWUT.h -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/ImmWUT/ImmWUT.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/ImmWUT/ImmWUT.sln -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/ImmWUT/Libs/ARM/ImMobile.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/ImmWUT/Libs/ARM/ImMobile.lib -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/ImmWUT/Libs/ARM/SDL2.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/ImmWUT/Libs/ARM/SDL2.lib -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/ImmWUT/Libs/ARM/libEGL.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/ImmWUT/Libs/ARM/libEGL.lib -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/ImmWUT/Libs/ARM/libGLESv1_CM.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/ImmWUT/Libs/ARM/libGLESv1_CM.lib -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/ImmWUT/Libs/ARM/libGLESv2.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/ImmWUT/Libs/ARM/libGLESv2.lib -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/ImmWUT/Libs/ARM/libGLESv2_with_capture.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/ImmWUT/Libs/ARM/libGLESv2_with_capture.lib -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/ImmWUT/Libs/Win32/ImMobile.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/ImmWUT/Libs/Win32/ImMobile.lib -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/ImmWUT/Others/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/ImmWUT/Others/dllmain.cpp -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/ImmWUT/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/ImmWUT/README.md -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win10/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win10/README.md -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win8.1/BingWallpaper/BingWallpaper8.1.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win8.1/BingWallpaper/BingWallpaper8.1.sln -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win8.1/BingWallpaper/ImmExtenTemplate8.1.Shared/BingWallpaper8.1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win8.1/BingWallpaper/ImmExtenTemplate8.1.Shared/BingWallpaper8.1.cpp -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win8.1/BingWallpaper/ImmExtenTemplate8.1.Shared/BingWallpaper8.1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win8.1/BingWallpaper/ImmExtenTemplate8.1.Shared/BingWallpaper8.1.h -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win8.1/BingWallpaper/ImmExtenTemplate8.1.Shared/Extras/archive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win8.1/BingWallpaper/ImmExtenTemplate8.1.Shared/Extras/archive.h -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win8.1/BingWallpaper/ImmExtenTemplate8.1.Shared/Extras/archive_entry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win8.1/BingWallpaper/ImmExtenTemplate8.1.Shared/Extras/archive_entry.h -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win8.1/BingWallpaper/ImmExtenTemplate8.1.Shared/Extras/ggml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win8.1/BingWallpaper/ImmExtenTemplate8.1.Shared/Extras/ggml.h -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win8.1/BingWallpaper/ImmExtenTemplate8.1.Shared/Extras/picojson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win8.1/BingWallpaper/ImmExtenTemplate8.1.Shared/Extras/picojson.h -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win8.1/BingWallpaper/ImmExtenTemplate8.1.Shared/GUI/IconsFontAwesome5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win8.1/BingWallpaper/ImmExtenTemplate8.1.Shared/GUI/IconsFontAwesome5.h -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win8.1/BingWallpaper/ImmExtenTemplate8.1.Shared/GUI/imgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win8.1/BingWallpaper/ImmExtenTemplate8.1.Shared/GUI/imgui.h -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win8.1/BingWallpaper/ImmExtenTemplate8.1.Shared/GUI/imgui_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win8.1/BingWallpaper/ImmExtenTemplate8.1.Shared/GUI/imgui_internal.h -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win8.1/BingWallpaper/ImmExtenTemplate8.1.Shared/GUI/imgui_shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win8.1/BingWallpaper/ImmExtenTemplate8.1.Shared/GUI/imgui_shared.h -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win8.1/BingWallpaper/ImmExtenTemplate8.1.Shared/GUI/implot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win8.1/BingWallpaper/ImmExtenTemplate8.1.Shared/GUI/implot.h -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win8.1/BingWallpaper/ImmExtenTemplate8.1.Shared/GUI/implot_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win8.1/BingWallpaper/ImmExtenTemplate8.1.Shared/GUI/implot_internal.h -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win8.1/BingWallpaper/ImmExtenTemplate8.1.Shared/GUI/imstb_textedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win8.1/BingWallpaper/ImmExtenTemplate8.1.Shared/GUI/imstb_textedit.h -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win8.1/BingWallpaper/ImmExtenTemplate8.1.Shared/Headers/IExtension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win8.1/BingWallpaper/ImmExtenTemplate8.1.Shared/Headers/IExtension.h -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win8.1/BingWallpaper/ImmExtenTemplate8.1.Shared/Headers/ImmApiProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win8.1/BingWallpaper/ImmExtenTemplate8.1.Shared/Headers/ImmApiProvider.h -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win8.1/BingWallpaper/ImmExtenTemplate8.1.Shared/Headers/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win8.1/BingWallpaper/ImmExtenTemplate8.1.Shared/Headers/pch.h -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win8.1/BingWallpaper/ImmExtenTemplate8.1.Shared/Helpers/StorageExtensions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win8.1/BingWallpaper/ImmExtenTemplate8.1.Shared/Helpers/StorageExtensions.cpp -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win8.1/BingWallpaper/ImmExtenTemplate8.1.Shared/Helpers/StorageExtensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win8.1/BingWallpaper/ImmExtenTemplate8.1.Shared/Helpers/StorageExtensions.h -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win8.1/BingWallpaper/ImmExtenTemplate8.1.Shared/Helpers/StorageInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win8.1/BingWallpaper/ImmExtenTemplate8.1.Shared/Helpers/StorageInfo.h -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win8.1/BingWallpaper/ImmExtenTemplate8.1.Shared/Helpers/StoragePath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win8.1/BingWallpaper/ImmExtenTemplate8.1.Shared/Helpers/StoragePath.cpp -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win8.1/BingWallpaper/ImmExtenTemplate8.1.Shared/Helpers/StoragePath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win8.1/BingWallpaper/ImmExtenTemplate8.1.Shared/Helpers/StoragePath.h -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win8.1/BingWallpaper/ImmExtenTemplate8.1.Shared/ImmApiProviderBridge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win8.1/BingWallpaper/ImmExtenTemplate8.1.Shared/ImmApiProviderBridge.h -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win8.1/BingWallpaper/ImmExtenTemplate8.1.Shared/ImmExtenTemplate8.1.Shared.vcxitems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win8.1/BingWallpaper/ImmExtenTemplate8.1.Shared/ImmExtenTemplate8.1.Shared.vcxitems -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win8.1/BingWallpaper/ImmExtenTemplate8.1.Shared/ImmExtenTemplate8.1.Shared.vcxitems.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win8.1/BingWallpaper/ImmExtenTemplate8.1.Shared/ImmExtenTemplate8.1.Shared.vcxitems.filters -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win8.1/BingWallpaper/ImmExtenTemplate8.1.Shared/Others/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win8.1/BingWallpaper/ImmExtenTemplate8.1.Shared/Others/dllmain.cpp -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win8.1/BingWallpaper/ImmExtenTemplate8.1.Windows/ImmExtenTemplate8.1.Windows.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win8.1/BingWallpaper/ImmExtenTemplate8.1.Windows/ImmExtenTemplate8.1.Windows.vcxproj -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win8.1/BingWallpaper/ImmExtenTemplate8.1.Windows/ImmExtenTemplate8.1.Windows.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win8.1/BingWallpaper/ImmExtenTemplate8.1.Windows/ImmExtenTemplate8.1.Windows.vcxproj.filters -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win8.1/BingWallpaper/ImmExtenTemplate8.1.Windows/Libs/ARM/ImMobile.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win8.1/BingWallpaper/ImmExtenTemplate8.1.Windows/Libs/ARM/ImMobile.lib -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win8.1/BingWallpaper/ImmExtenTemplate8.1.WindowsPhone/ImmExtenTemplate8.1.WindowsPhone.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win8.1/BingWallpaper/ImmExtenTemplate8.1.WindowsPhone/ImmExtenTemplate8.1.WindowsPhone.vcxproj -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win8.1/BingWallpaper/ImmExtenTemplate8.1.WindowsPhone/ImmExtenTemplate8.1.WindowsPhone.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win8.1/BingWallpaper/ImmExtenTemplate8.1.WindowsPhone/ImmExtenTemplate8.1.WindowsPhone.vcxproj.filters -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win8.1/BingWallpaper/ImmExtenTemplate8.1.WindowsPhone/Libs/ARM/ImMobile.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win8.1/BingWallpaper/ImmExtenTemplate8.1.WindowsPhone/Libs/ARM/ImMobile.lib -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win8.1/BingWallpaper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win8.1/BingWallpaper/README.md -------------------------------------------------------------------------------- /development/ExtensionsExamples/Win8.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsExamples/Win8.1/README.md -------------------------------------------------------------------------------- /development/ExtensionsTemplate/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/README.md -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win10/Extras/ANGLE/EGL/egl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win10/Extras/ANGLE/EGL/egl.h -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win10/Extras/ANGLE/EGL/eglext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win10/Extras/ANGLE/EGL/eglext.h -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win10/Extras/ANGLE/EGL/eglext_angle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win10/Extras/ANGLE/EGL/eglext_angle.h -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win10/Extras/ANGLE/EGL/eglplatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win10/Extras/ANGLE/EGL/eglplatform.h -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win10/Extras/ANGLE/GLES2/gl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win10/Extras/ANGLE/GLES2/gl2.h -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win10/Extras/ANGLE/GLES2/gl2ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win10/Extras/ANGLE/GLES2/gl2ext.h -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win10/Extras/ANGLE/GLES2/gl2ext_angle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win10/Extras/ANGLE/GLES2/gl2ext_angle.h -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win10/Extras/ANGLE/GLES2/gl2ext_explicit_context_autogen.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win10/Extras/ANGLE/GLES2/gl2ext_explicit_context_autogen.inc -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win10/Extras/ANGLE/GLES2/gl2platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win10/Extras/ANGLE/GLES2/gl2platform.h -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win10/Extras/ANGLE/GLES3/gl3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win10/Extras/ANGLE/GLES3/gl3.h -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win10/Extras/ANGLE/GLES3/gl31.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win10/Extras/ANGLE/GLES3/gl31.h -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win10/Extras/ANGLE/GLES3/gl31ext_explicit_context_autogen.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win10/Extras/ANGLE/GLES3/gl31ext_explicit_context_autogen.inc -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win10/Extras/ANGLE/GLES3/gl32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win10/Extras/ANGLE/GLES3/gl32.h -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win10/Extras/ANGLE/GLES3/gl32ext_explicit_context_autogen.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win10/Extras/ANGLE/GLES3/gl32ext_explicit_context_autogen.inc -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win10/Extras/ANGLE/GLES3/gl3ext_explicit_context_autogen.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win10/Extras/ANGLE/GLES3/gl3ext_explicit_context_autogen.inc -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win10/Extras/ANGLE/GLES3/gl3platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win10/Extras/ANGLE/GLES3/gl3platform.h -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win10/Extras/ANGLE/KHR/khrplatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win10/Extras/ANGLE/KHR/khrplatform.h -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win10/Extras/ANGLE/angle_gl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win10/Extras/ANGLE/angle_gl.h -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win10/Extras/ANGLE/angle_windowsstore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win10/Extras/ANGLE/angle_windowsstore.h -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL.h -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_assert.h -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_atomic.h -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_audio.h -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_bits.h -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_blendmode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_blendmode.h -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_clipboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_clipboard.h -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_config.h -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_config.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_config.h.cmake -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_config.h.in -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_config_android.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_config_android.h -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_config_emscripten.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_config_emscripten.h -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_config_iphoneos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_config_iphoneos.h -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_config_macosx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_config_macosx.h -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_config_minimal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_config_minimal.h -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_config_os2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_config_os2.h -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_config_pandora.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_config_pandora.h -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_config_windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_config_windows.h -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_config_winrt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_config_winrt.h -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_copying.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_copying.h -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_cpuinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_cpuinfo.h -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_egl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_egl.h -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_endian.h -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_error.h -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_events.h -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_filesystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_filesystem.h -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_gamecontroller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_gamecontroller.h -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_gesture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_gesture.h -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_haptic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_haptic.h -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_hidapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_hidapi.h -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_hints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_hints.h -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_joystick.h -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_keyboard.h -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_keycode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_keycode.h -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_loadso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_loadso.h -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_locale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_locale.h -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_log.h -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_main.h -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_messagebox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_messagebox.h -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_metal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_metal.h -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_misc.h -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_mouse.h -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_mutex.h -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_name.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_name.h -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_opengl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_opengl.h -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_opengl_glext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_opengl_glext.h -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_opengles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_opengles.h -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_opengles2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_opengles2.h -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_opengles2_gl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_opengles2_gl2.h -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_opengles2_gl2ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_opengles2_gl2ext.h -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_opengles2_gl2platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_opengles2_gl2platform.h -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_opengles2_khrplatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_opengles2_khrplatform.h -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_pixels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_pixels.h -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_platform.h -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_power.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_power.h -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_quit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_quit.h -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_rect.h -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_render.h -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_revision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_revision.h -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_revision.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_revision.h.cmake -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_rwops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_rwops.h -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_scancode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_scancode.h -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_sensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_sensor.h -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_shape.h -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_stdinc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_stdinc.h -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_surface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_surface.h -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_system.h -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_syswm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_syswm.h -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_test.h -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_test_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_test_assert.h -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_test_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_test_common.h -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_test_compare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_test_compare.h -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_test_crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_test_crc32.h -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_test_font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_test_font.h -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_test_fuzzer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_test_fuzzer.h -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_test_harness.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_test_harness.h -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_test_images.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_test_images.h -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_test_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_test_log.h -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_test_md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_test_md5.h -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_test_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_test_memory.h -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_test_random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_test_random.h -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_thread.h -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_timer.h -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_touch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_touch.h -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_types.h -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_version.h -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_video.h -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_vulkan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win10/Extras/SDL/include/SDL_vulkan.h -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win10/Extras/SDL/include/begin_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win10/Extras/SDL/include/begin_code.h -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win10/Extras/SDL/include/close_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win10/Extras/SDL/include/close_code.h -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win10/Extras/archive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win10/Extras/archive.h -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win10/Extras/archive_entry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win10/Extras/archive_entry.h -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win10/Extras/ggml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win10/Extras/ggml.h -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win10/Extras/nlohmann_json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win10/Extras/nlohmann_json.hpp -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win10/GUI/IconsFontAwesome5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win10/GUI/IconsFontAwesome5.h -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win10/GUI/imgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win10/GUI/imgui.h -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win10/GUI/imgui_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win10/GUI/imgui_internal.h -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win10/GUI/imgui_shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win10/GUI/imgui_shared.h -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win10/GUI/implot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win10/GUI/implot.h -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win10/GUI/implot_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win10/GUI/implot_internal.h -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win10/GUI/imstb_textedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win10/GUI/imstb_textedit.h -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win10/Headers/IExtension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win10/Headers/IExtension.h -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win10/Headers/ImmApiProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win10/Headers/ImmApiProvider.h -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win10/Headers/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win10/Headers/pch.h -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win10/Helpers/StorageExtensions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win10/Helpers/StorageExtensions.cpp -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win10/Helpers/StorageExtensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win10/Helpers/StorageExtensions.h -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win10/Helpers/StorageInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win10/Helpers/StorageInfo.h -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win10/Helpers/StoragePath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win10/Helpers/StoragePath.cpp -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win10/Helpers/StoragePath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win10/Helpers/StoragePath.h -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win10/ImmApiProviderBridge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win10/ImmApiProviderBridge.h -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win10/ImmApiProviderBridgeC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win10/ImmApiProviderBridgeC.h -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win10/ImmExtenTemplate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win10/ImmExtenTemplate.cpp -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win10/ImmExtenTemplate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win10/ImmExtenTemplate.h -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win10/ImmExtenTemplate.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win10/ImmExtenTemplate.sln -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win10/ImmExtenTemplate.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win10/ImmExtenTemplate.vcxproj -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win10/ImmExtenTemplate.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win10/ImmExtenTemplate.vcxproj.filters -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win10/Libs/ARM/ImMobile.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win10/Libs/ARM/ImMobile.lib -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win10/Libs/ARM/SDL2.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win10/Libs/ARM/SDL2.lib -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win10/Libs/ARM/libEGL.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win10/Libs/ARM/libEGL.lib -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win10/Libs/ARM/libGLESv1_CM.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win10/Libs/ARM/libGLESv1_CM.lib -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win10/Libs/ARM/libGLESv2.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win10/Libs/ARM/libGLESv2.lib -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win10/Libs/Win32/ImMobile.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win10/Libs/Win32/ImMobile.lib -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win10/Libs/Win32/libEGL.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win10/Libs/Win32/libEGL.lib -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win10/Libs/Win32/libGLESv2.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win10/Libs/Win32/libGLESv2.lib -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win10/Others/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win10/Others/dllmain.cpp -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win10/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win10/README.md -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win8.1/ImmExtenTemplate8.1.Shared/Extras/archive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win8.1/ImmExtenTemplate8.1.Shared/Extras/archive.h -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win8.1/ImmExtenTemplate8.1.Shared/Extras/archive_entry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win8.1/ImmExtenTemplate8.1.Shared/Extras/archive_entry.h -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win8.1/ImmExtenTemplate8.1.Shared/Extras/ggml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win8.1/ImmExtenTemplate8.1.Shared/Extras/ggml.h -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win8.1/ImmExtenTemplate8.1.Shared/Extras/picojson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win8.1/ImmExtenTemplate8.1.Shared/Extras/picojson.h -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win8.1/ImmExtenTemplate8.1.Shared/GUI/IconsFontAwesome5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win8.1/ImmExtenTemplate8.1.Shared/GUI/IconsFontAwesome5.h -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win8.1/ImmExtenTemplate8.1.Shared/GUI/imgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win8.1/ImmExtenTemplate8.1.Shared/GUI/imgui.h -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win8.1/ImmExtenTemplate8.1.Shared/GUI/imgui_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win8.1/ImmExtenTemplate8.1.Shared/GUI/imgui_internal.h -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win8.1/ImmExtenTemplate8.1.Shared/GUI/imgui_shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win8.1/ImmExtenTemplate8.1.Shared/GUI/imgui_shared.h -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win8.1/ImmExtenTemplate8.1.Shared/GUI/implot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win8.1/ImmExtenTemplate8.1.Shared/GUI/implot.h -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win8.1/ImmExtenTemplate8.1.Shared/GUI/implot_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win8.1/ImmExtenTemplate8.1.Shared/GUI/implot_internal.h -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win8.1/ImmExtenTemplate8.1.Shared/GUI/imstb_textedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win8.1/ImmExtenTemplate8.1.Shared/GUI/imstb_textedit.h -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win8.1/ImmExtenTemplate8.1.Shared/Headers/IExtension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win8.1/ImmExtenTemplate8.1.Shared/Headers/IExtension.h -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win8.1/ImmExtenTemplate8.1.Shared/Headers/ImmApiProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win8.1/ImmExtenTemplate8.1.Shared/Headers/ImmApiProvider.h -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win8.1/ImmExtenTemplate8.1.Shared/Headers/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win8.1/ImmExtenTemplate8.1.Shared/Headers/pch.h -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win8.1/ImmExtenTemplate8.1.Shared/Helpers/StorageExtensions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win8.1/ImmExtenTemplate8.1.Shared/Helpers/StorageExtensions.cpp -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win8.1/ImmExtenTemplate8.1.Shared/Helpers/StorageExtensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win8.1/ImmExtenTemplate8.1.Shared/Helpers/StorageExtensions.h -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win8.1/ImmExtenTemplate8.1.Shared/Helpers/StorageInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win8.1/ImmExtenTemplate8.1.Shared/Helpers/StorageInfo.h -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win8.1/ImmExtenTemplate8.1.Shared/Helpers/StoragePath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win8.1/ImmExtenTemplate8.1.Shared/Helpers/StoragePath.cpp -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win8.1/ImmExtenTemplate8.1.Shared/Helpers/StoragePath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win8.1/ImmExtenTemplate8.1.Shared/Helpers/StoragePath.h -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win8.1/ImmExtenTemplate8.1.Shared/ImmApiProviderBridge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win8.1/ImmExtenTemplate8.1.Shared/ImmApiProviderBridge.h -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win8.1/ImmExtenTemplate8.1.Shared/ImmApiProviderBridgeC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win8.1/ImmExtenTemplate8.1.Shared/ImmApiProviderBridgeC.h -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win8.1/ImmExtenTemplate8.1.Shared/ImmExtenTemplate8.1.Shared.vcxitems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win8.1/ImmExtenTemplate8.1.Shared/ImmExtenTemplate8.1.Shared.vcxitems -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win8.1/ImmExtenTemplate8.1.Shared/ImmExtenTemplate8.1.Shared.vcxitems.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win8.1/ImmExtenTemplate8.1.Shared/ImmExtenTemplate8.1.Shared.vcxitems.filters -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win8.1/ImmExtenTemplate8.1.Shared/ImmExtenTemplate8.1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win8.1/ImmExtenTemplate8.1.Shared/ImmExtenTemplate8.1.cpp -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win8.1/ImmExtenTemplate8.1.Shared/ImmExtenTemplate8.1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win8.1/ImmExtenTemplate8.1.Shared/ImmExtenTemplate8.1.h -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win8.1/ImmExtenTemplate8.1.Shared/Others/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win8.1/ImmExtenTemplate8.1.Shared/Others/dllmain.cpp -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win8.1/ImmExtenTemplate8.1.Windows/ImmExtenTemplate8.1.Windows.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win8.1/ImmExtenTemplate8.1.Windows/ImmExtenTemplate8.1.Windows.vcxproj -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win8.1/ImmExtenTemplate8.1.Windows/ImmExtenTemplate8.1.Windows.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win8.1/ImmExtenTemplate8.1.Windows/ImmExtenTemplate8.1.Windows.vcxproj.filters -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win8.1/ImmExtenTemplate8.1.Windows/Libs/ARM/ImMobile.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win8.1/ImmExtenTemplate8.1.Windows/Libs/ARM/ImMobile.lib -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win8.1/ImmExtenTemplate8.1.WindowsPhone/Deploy/AppDeployCmd.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win8.1/ImmExtenTemplate8.1.WindowsPhone/Deploy/AppDeployCmd.exe -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win8.1/ImmExtenTemplate8.1.WindowsPhone/Deploy/ISETool.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win8.1/ImmExtenTemplate8.1.WindowsPhone/Deploy/ISETool.exe -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win8.1/ImmExtenTemplate8.1.WindowsPhone/Deploy/Microsoft.Phone.Tools.Deploy.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win8.1/ImmExtenTemplate8.1.WindowsPhone/Deploy/Microsoft.Phone.Tools.Deploy.dll -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win8.1/ImmExtenTemplate8.1.WindowsPhone/ImmExtenTemplate8.1.WindowsPhone.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win8.1/ImmExtenTemplate8.1.WindowsPhone/ImmExtenTemplate8.1.WindowsPhone.vcxproj -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win8.1/ImmExtenTemplate8.1.WindowsPhone/ImmExtenTemplate8.1.WindowsPhone.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win8.1/ImmExtenTemplate8.1.WindowsPhone/ImmExtenTemplate8.1.WindowsPhone.vcxproj.filters -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win8.1/ImmExtenTemplate8.1.WindowsPhone/Libs/ARM/ImMobile.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win8.1/ImmExtenTemplate8.1.WindowsPhone/Libs/ARM/ImMobile.lib -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win8.1/ImmExtenTemplate8.1.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win8.1/ImmExtenTemplate8.1.sln -------------------------------------------------------------------------------- /development/ExtensionsTemplate/Win8.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/ExtensionsTemplate/Win8.1/README.md -------------------------------------------------------------------------------- /development/JSDemos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/JSDemos/README.md -------------------------------------------------------------------------------- /development/JSDemos/jsDemo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/JSDemos/jsDemo.js -------------------------------------------------------------------------------- /development/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/development/README.md -------------------------------------------------------------------------------- /docs/CNAME: -------------------------------------------------------------------------------- 1 | imm.astifan.online -------------------------------------------------------------------------------- /docs/Updates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/docs/Updates.json -------------------------------------------------------------------------------- /docs/fav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/docs/fav.png -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/version.txt: -------------------------------------------------------------------------------- 1 | 1.3.3 -------------------------------------------------------------------------------- /library/extensions/10/mobile/BingWallpapers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/library/extensions/10/mobile/BingWallpapers.dll -------------------------------------------------------------------------------- /library/extensions/10/mobile/ImmDemo.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/library/extensions/10/mobile/ImmDemo.dll -------------------------------------------------------------------------------- /library/extensions/10/mobile/ImmLibretro.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/library/extensions/10/mobile/ImmLibretro.dll -------------------------------------------------------------------------------- /library/extensions/10/mobile/ImmLottie.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/library/extensions/10/mobile/ImmLottie.dll -------------------------------------------------------------------------------- /library/extensions/10/mobile/ImmWUT.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/library/extensions/10/mobile/ImmWUT.dll -------------------------------------------------------------------------------- /library/extensions/10/mobile/resources/ImmLottieSamples.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/library/extensions/10/mobile/resources/ImmLottieSamples.zip -------------------------------------------------------------------------------- /library/extensions/10/x86/BingWallpapers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/library/extensions/10/x86/BingWallpapers.dll -------------------------------------------------------------------------------- /library/extensions/10/x86/ImmDemo.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/library/extensions/10/x86/ImmDemo.dll -------------------------------------------------------------------------------- /library/extensions/10/x86/ImmLibretro.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/library/extensions/10/x86/ImmLibretro.dll -------------------------------------------------------------------------------- /library/extensions/10/x86/ImmLottie.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/library/extensions/10/x86/ImmLottie.dll -------------------------------------------------------------------------------- /library/extensions/10/x86/resources/ImmLottieSamples.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/library/extensions/10/x86/resources/ImmLottieSamples.zip -------------------------------------------------------------------------------- /library/extensions/8.1/mobile/BingWallpaper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/library/extensions/8.1/mobile/BingWallpaper.dll -------------------------------------------------------------------------------- /library/extensions/8.1/mobile/ImmDemo.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/library/extensions/8.1/mobile/ImmDemo.dll -------------------------------------------------------------------------------- /library/extensions/8.1/mobile/ImmLibretro.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/library/extensions/8.1/mobile/ImmLibretro.dll -------------------------------------------------------------------------------- /library/extensions/8.1/surface/BingWallpaper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/library/extensions/8.1/surface/BingWallpaper.dll -------------------------------------------------------------------------------- /library/extensions/8.1/surface/ImmDemo.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/library/extensions/8.1/surface/ImmDemo.dll -------------------------------------------------------------------------------- /library/extensions/8.1/surface/ImmLibretro.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/library/extensions/8.1/surface/ImmLibretro.dll -------------------------------------------------------------------------------- /library/extensions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/library/extensions/README.md -------------------------------------------------------------------------------- /library/scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/library/scripts/README.md -------------------------------------------------------------------------------- /library/scripts/jsDemo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/library/scripts/jsDemo.js -------------------------------------------------------------------------------- /licenses/Dear ImGui (Main).txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/licenses/Dear ImGui (Main).txt -------------------------------------------------------------------------------- /licenses/Dear ImGui (UWP).txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/licenses/Dear ImGui (UWP).txt -------------------------------------------------------------------------------- /licenses/ImFileDialog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/licenses/ImFileDialog.txt -------------------------------------------------------------------------------- /licenses/ImGuiColorTextEdit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/licenses/ImGuiColorTextEdit.txt -------------------------------------------------------------------------------- /licenses/ImPlot.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/licenses/ImPlot.txt -------------------------------------------------------------------------------- /licenses/Libraries/csv-parser.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/licenses/Libraries/csv-parser.txt -------------------------------------------------------------------------------- /licenses/Libraries/dll_management.txt: -------------------------------------------------------------------------------- 1 | https://github.com/gus33000 -------------------------------------------------------------------------------- /licenses/Libraries/gumbo-parser.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/licenses/Libraries/gumbo-parser.txt -------------------------------------------------------------------------------- /licenses/Libraries/libarchive.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/licenses/Libraries/libarchive.txt -------------------------------------------------------------------------------- /licenses/Libraries/libzip.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/licenses/Libraries/libzip.txt -------------------------------------------------------------------------------- /licenses/Libraries/nlohmann_json.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/licenses/Libraries/nlohmann_json.txt -------------------------------------------------------------------------------- /licenses/Libraries/picojson.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/licenses/Libraries/picojson.txt -------------------------------------------------------------------------------- /licenses/Libraries/pugixml.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/licenses/Libraries/pugixml.txt -------------------------------------------------------------------------------- /licenses/Libraries/quickjs-ng.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/licenses/Libraries/quickjs-ng.txt -------------------------------------------------------------------------------- /licenses/Libraries/quickjs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/licenses/Libraries/quickjs.txt -------------------------------------------------------------------------------- /licenses/Libraries/simpleini.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/licenses/Libraries/simpleini.txt -------------------------------------------------------------------------------- /licenses/Libraries/stb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/licenses/Libraries/stb.txt -------------------------------------------------------------------------------- /licenses/Libraries/zlib.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/licenses/Libraries/zlib.txt -------------------------------------------------------------------------------- /licenses/RPN Calculator.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/licenses/RPN Calculator.txt -------------------------------------------------------------------------------- /licenses/SoundEffects.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/licenses/SoundEffects.txt -------------------------------------------------------------------------------- /licenses/Themes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/licenses/Themes.txt -------------------------------------------------------------------------------- /licenses/Wallpapers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/licenses/Wallpapers.txt -------------------------------------------------------------------------------- /licenses/imgui-notify.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/licenses/imgui-notify.txt -------------------------------------------------------------------------------- /licenses/imgui_markdown.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/licenses/imgui_markdown.txt -------------------------------------------------------------------------------- /mobile/ImMobile_1.3.3_W10M.appx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/mobile/ImMobile_1.3.3_W10M.appx -------------------------------------------------------------------------------- /mobile/ImMobile_1.3.3_W10M.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/mobile/ImMobile_1.3.3_W10M.cer -------------------------------------------------------------------------------- /mobile/ImMobile_1.3.3_WP8.1.appx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/mobile/ImMobile_1.3.3_WP8.1.appx -------------------------------------------------------------------------------- /mobile/ImMobile_1.3.3_WP8.1.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/mobile/ImMobile_1.3.3_WP8.1.cer -------------------------------------------------------------------------------- /mobile/Microsoft.VCLibs.ARM.8.1.appx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/mobile/Microsoft.VCLibs.ARM.8.1.appx -------------------------------------------------------------------------------- /mobile/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basharast/ImMobile/HEAD/mobile/README.md --------------------------------------------------------------------------------