├── .github ├── actions │ └── setup-ninja │ │ └── action.yml └── workflows │ ├── main.yml │ └── release.yml ├── .gitignore ├── .wikiheaders-options ├── Android.mk ├── CMakeLists.txt ├── LICENSE.txt ├── README.md ├── VisualC ├── SDL_net.sln ├── SDL_net.vcxproj ├── SDL_net.vcxproj.filters ├── clean.sh └── examples │ ├── echo-server.vcxproj │ ├── get-local-addrs.vcxproj │ ├── resolve-hostnames.vcxproj │ ├── simple-http-get.vcxproj │ └── voipchat.vcxproj ├── Xcode ├── Info-Framework.plist ├── SDL_net.xcodeproj │ └── project.pbxproj ├── config.xcconfig ├── iOS │ └── SDL3.framework │ │ ├── Headers │ │ ├── SDL.h │ │ ├── SDL_assert.h │ │ ├── SDL_asyncio.h │ │ ├── SDL_atomic.h │ │ ├── SDL_audio.h │ │ ├── SDL_begin_code.h │ │ ├── SDL_bits.h │ │ ├── SDL_blendmode.h │ │ ├── SDL_camera.h │ │ ├── SDL_clipboard.h │ │ ├── SDL_close_code.h │ │ ├── SDL_copying.h │ │ ├── SDL_cpuinfo.h │ │ ├── SDL_dialog.h │ │ ├── SDL_dlopennote.h │ │ ├── SDL_egl.h │ │ ├── SDL_endian.h │ │ ├── SDL_error.h │ │ ├── SDL_events.h │ │ ├── SDL_filesystem.h │ │ ├── SDL_gamepad.h │ │ ├── SDL_gpu.h │ │ ├── SDL_guid.h │ │ ├── SDL_haptic.h │ │ ├── SDL_hidapi.h │ │ ├── SDL_hints.h │ │ ├── SDL_init.h │ │ ├── SDL_intrin.h │ │ ├── SDL_iostream.h │ │ ├── SDL_joystick.h │ │ ├── SDL_keyboard.h │ │ ├── SDL_keycode.h │ │ ├── SDL_loadso.h │ │ ├── SDL_locale.h │ │ ├── SDL_log.h │ │ ├── SDL_main.h │ │ ├── SDL_main_impl.h │ │ ├── SDL_messagebox.h │ │ ├── SDL_metal.h │ │ ├── SDL_misc.h │ │ ├── SDL_mouse.h │ │ ├── SDL_mutex.h │ │ ├── SDL_oldnames.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_pen.h │ │ ├── SDL_pixels.h │ │ ├── SDL_platform.h │ │ ├── SDL_platform_defines.h │ │ ├── SDL_power.h │ │ ├── SDL_process.h │ │ ├── SDL_properties.h │ │ ├── SDL_rect.h │ │ ├── SDL_render.h │ │ ├── SDL_revision.h │ │ ├── SDL_scancode.h │ │ ├── SDL_sensor.h │ │ ├── SDL_stdinc.h │ │ ├── SDL_storage.h │ │ ├── SDL_surface.h │ │ ├── SDL_system.h │ │ ├── SDL_thread.h │ │ ├── SDL_time.h │ │ ├── SDL_timer.h │ │ ├── SDL_touch.h │ │ ├── SDL_tray.h │ │ ├── SDL_version.h │ │ ├── SDL_video.h │ │ └── SDL_vulkan.h │ │ ├── Info.plist │ │ ├── LICENSE.txt │ │ ├── README.md │ │ └── SDL3.tbd ├── macOS │ └── SDL3.framework │ │ ├── Headers │ │ ├── Resources │ │ ├── SDL3.tbd │ │ └── Versions │ │ ├── A │ │ ├── Headers │ │ │ ├── SDL.h │ │ │ ├── SDL_assert.h │ │ │ ├── SDL_asyncio.h │ │ │ ├── SDL_atomic.h │ │ │ ├── SDL_audio.h │ │ │ ├── SDL_begin_code.h │ │ │ ├── SDL_bits.h │ │ │ ├── SDL_blendmode.h │ │ │ ├── SDL_camera.h │ │ │ ├── SDL_clipboard.h │ │ │ ├── SDL_close_code.h │ │ │ ├── SDL_copying.h │ │ │ ├── SDL_cpuinfo.h │ │ │ ├── SDL_dialog.h │ │ │ ├── SDL_dlopennote.h │ │ │ ├── SDL_egl.h │ │ │ ├── SDL_endian.h │ │ │ ├── SDL_error.h │ │ │ ├── SDL_events.h │ │ │ ├── SDL_filesystem.h │ │ │ ├── SDL_gamepad.h │ │ │ ├── SDL_gpu.h │ │ │ ├── SDL_guid.h │ │ │ ├── SDL_haptic.h │ │ │ ├── SDL_hidapi.h │ │ │ ├── SDL_hints.h │ │ │ ├── SDL_init.h │ │ │ ├── SDL_intrin.h │ │ │ ├── SDL_iostream.h │ │ │ ├── SDL_joystick.h │ │ │ ├── SDL_keyboard.h │ │ │ ├── SDL_keycode.h │ │ │ ├── SDL_loadso.h │ │ │ ├── SDL_locale.h │ │ │ ├── SDL_log.h │ │ │ ├── SDL_main.h │ │ │ ├── SDL_main_impl.h │ │ │ ├── SDL_messagebox.h │ │ │ ├── SDL_metal.h │ │ │ ├── SDL_misc.h │ │ │ ├── SDL_mouse.h │ │ │ ├── SDL_mutex.h │ │ │ ├── SDL_oldnames.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_pen.h │ │ │ ├── SDL_pixels.h │ │ │ ├── SDL_platform.h │ │ │ ├── SDL_platform_defines.h │ │ │ ├── SDL_power.h │ │ │ ├── SDL_process.h │ │ │ ├── SDL_properties.h │ │ │ ├── SDL_rect.h │ │ │ ├── SDL_render.h │ │ │ ├── SDL_revision.h │ │ │ ├── SDL_scancode.h │ │ │ ├── SDL_sensor.h │ │ │ ├── SDL_stdinc.h │ │ │ ├── SDL_storage.h │ │ │ ├── SDL_surface.h │ │ │ ├── SDL_system.h │ │ │ ├── SDL_thread.h │ │ │ ├── SDL_time.h │ │ │ ├── SDL_timer.h │ │ │ ├── SDL_touch.h │ │ │ ├── SDL_tray.h │ │ │ ├── SDL_version.h │ │ │ ├── SDL_video.h │ │ │ └── SDL_vulkan.h │ │ ├── Resources │ │ │ ├── Info.plist │ │ │ ├── LICENSE.txt │ │ │ └── README.md │ │ └── SDL3.tbd │ │ └── Current └── pkg-support │ ├── build.xcconfig │ ├── resources │ ├── CMake │ │ ├── SDL3_netConfig.cmake │ │ └── SDL3_netConfigVersion.cmake │ ├── INSTALL.md │ ├── SDL_DS_Store │ ├── framework │ │ └── INSTALL.md │ └── share │ │ └── cmake │ │ └── SDL3_net │ │ ├── SDL3_netConfig.cmake │ │ └── SDL3_netConfigVersion.cmake │ └── sdl_logo.pdf ├── cmake ├── GetGitRevisionDescription.cmake ├── GetGitRevisionDescription.cmake.in ├── PrivateSdlFunctions.cmake ├── SDL3_netConfig.cmake.in ├── sdl3-net.pc.in ├── sdlcpu.cmake ├── sdlmanpages.cmake └── test │ ├── CMakeLists.txt │ └── main.c ├── examples ├── echo-server.c ├── get-local-addrs.c ├── resolve-hostnames.c ├── simple-http-get.c └── voipchat.c ├── include └── SDL3_net │ └── SDL_net.h └── src ├── SDL_net.c ├── SDL_net.exports ├── SDL_net.sym ├── genexports.py └── version.rc /.github/actions/setup-ninja/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/.github/actions/setup-ninja/action.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/.gitignore -------------------------------------------------------------------------------- /.wikiheaders-options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/.wikiheaders-options -------------------------------------------------------------------------------- /Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Android.mk -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/README.md -------------------------------------------------------------------------------- /VisualC/SDL_net.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/VisualC/SDL_net.sln -------------------------------------------------------------------------------- /VisualC/SDL_net.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/VisualC/SDL_net.vcxproj -------------------------------------------------------------------------------- /VisualC/SDL_net.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/VisualC/SDL_net.vcxproj.filters -------------------------------------------------------------------------------- /VisualC/clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/VisualC/clean.sh -------------------------------------------------------------------------------- /VisualC/examples/echo-server.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/VisualC/examples/echo-server.vcxproj -------------------------------------------------------------------------------- /VisualC/examples/get-local-addrs.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/VisualC/examples/get-local-addrs.vcxproj -------------------------------------------------------------------------------- /VisualC/examples/resolve-hostnames.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/VisualC/examples/resolve-hostnames.vcxproj -------------------------------------------------------------------------------- /VisualC/examples/simple-http-get.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/VisualC/examples/simple-http-get.vcxproj -------------------------------------------------------------------------------- /VisualC/examples/voipchat.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/VisualC/examples/voipchat.vcxproj -------------------------------------------------------------------------------- /Xcode/Info-Framework.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/Info-Framework.plist -------------------------------------------------------------------------------- /Xcode/SDL_net.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/SDL_net.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Xcode/config.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/config.xcconfig -------------------------------------------------------------------------------- /Xcode/iOS/SDL3.framework/Headers/SDL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/iOS/SDL3.framework/Headers/SDL.h -------------------------------------------------------------------------------- /Xcode/iOS/SDL3.framework/Headers/SDL_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/iOS/SDL3.framework/Headers/SDL_assert.h -------------------------------------------------------------------------------- /Xcode/iOS/SDL3.framework/Headers/SDL_asyncio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/iOS/SDL3.framework/Headers/SDL_asyncio.h -------------------------------------------------------------------------------- /Xcode/iOS/SDL3.framework/Headers/SDL_atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/iOS/SDL3.framework/Headers/SDL_atomic.h -------------------------------------------------------------------------------- /Xcode/iOS/SDL3.framework/Headers/SDL_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/iOS/SDL3.framework/Headers/SDL_audio.h -------------------------------------------------------------------------------- /Xcode/iOS/SDL3.framework/Headers/SDL_begin_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/iOS/SDL3.framework/Headers/SDL_begin_code.h -------------------------------------------------------------------------------- /Xcode/iOS/SDL3.framework/Headers/SDL_bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/iOS/SDL3.framework/Headers/SDL_bits.h -------------------------------------------------------------------------------- /Xcode/iOS/SDL3.framework/Headers/SDL_blendmode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/iOS/SDL3.framework/Headers/SDL_blendmode.h -------------------------------------------------------------------------------- /Xcode/iOS/SDL3.framework/Headers/SDL_camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/iOS/SDL3.framework/Headers/SDL_camera.h -------------------------------------------------------------------------------- /Xcode/iOS/SDL3.framework/Headers/SDL_clipboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/iOS/SDL3.framework/Headers/SDL_clipboard.h -------------------------------------------------------------------------------- /Xcode/iOS/SDL3.framework/Headers/SDL_close_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/iOS/SDL3.framework/Headers/SDL_close_code.h -------------------------------------------------------------------------------- /Xcode/iOS/SDL3.framework/Headers/SDL_copying.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/iOS/SDL3.framework/Headers/SDL_copying.h -------------------------------------------------------------------------------- /Xcode/iOS/SDL3.framework/Headers/SDL_cpuinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/iOS/SDL3.framework/Headers/SDL_cpuinfo.h -------------------------------------------------------------------------------- /Xcode/iOS/SDL3.framework/Headers/SDL_dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/iOS/SDL3.framework/Headers/SDL_dialog.h -------------------------------------------------------------------------------- /Xcode/iOS/SDL3.framework/Headers/SDL_dlopennote.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/iOS/SDL3.framework/Headers/SDL_dlopennote.h -------------------------------------------------------------------------------- /Xcode/iOS/SDL3.framework/Headers/SDL_egl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/iOS/SDL3.framework/Headers/SDL_egl.h -------------------------------------------------------------------------------- /Xcode/iOS/SDL3.framework/Headers/SDL_endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/iOS/SDL3.framework/Headers/SDL_endian.h -------------------------------------------------------------------------------- /Xcode/iOS/SDL3.framework/Headers/SDL_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/iOS/SDL3.framework/Headers/SDL_error.h -------------------------------------------------------------------------------- /Xcode/iOS/SDL3.framework/Headers/SDL_events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/iOS/SDL3.framework/Headers/SDL_events.h -------------------------------------------------------------------------------- /Xcode/iOS/SDL3.framework/Headers/SDL_filesystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/iOS/SDL3.framework/Headers/SDL_filesystem.h -------------------------------------------------------------------------------- /Xcode/iOS/SDL3.framework/Headers/SDL_gamepad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/iOS/SDL3.framework/Headers/SDL_gamepad.h -------------------------------------------------------------------------------- /Xcode/iOS/SDL3.framework/Headers/SDL_gpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/iOS/SDL3.framework/Headers/SDL_gpu.h -------------------------------------------------------------------------------- /Xcode/iOS/SDL3.framework/Headers/SDL_guid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/iOS/SDL3.framework/Headers/SDL_guid.h -------------------------------------------------------------------------------- /Xcode/iOS/SDL3.framework/Headers/SDL_haptic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/iOS/SDL3.framework/Headers/SDL_haptic.h -------------------------------------------------------------------------------- /Xcode/iOS/SDL3.framework/Headers/SDL_hidapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/iOS/SDL3.framework/Headers/SDL_hidapi.h -------------------------------------------------------------------------------- /Xcode/iOS/SDL3.framework/Headers/SDL_hints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/iOS/SDL3.framework/Headers/SDL_hints.h -------------------------------------------------------------------------------- /Xcode/iOS/SDL3.framework/Headers/SDL_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/iOS/SDL3.framework/Headers/SDL_init.h -------------------------------------------------------------------------------- /Xcode/iOS/SDL3.framework/Headers/SDL_intrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/iOS/SDL3.framework/Headers/SDL_intrin.h -------------------------------------------------------------------------------- /Xcode/iOS/SDL3.framework/Headers/SDL_iostream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/iOS/SDL3.framework/Headers/SDL_iostream.h -------------------------------------------------------------------------------- /Xcode/iOS/SDL3.framework/Headers/SDL_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/iOS/SDL3.framework/Headers/SDL_joystick.h -------------------------------------------------------------------------------- /Xcode/iOS/SDL3.framework/Headers/SDL_keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/iOS/SDL3.framework/Headers/SDL_keyboard.h -------------------------------------------------------------------------------- /Xcode/iOS/SDL3.framework/Headers/SDL_keycode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/iOS/SDL3.framework/Headers/SDL_keycode.h -------------------------------------------------------------------------------- /Xcode/iOS/SDL3.framework/Headers/SDL_loadso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/iOS/SDL3.framework/Headers/SDL_loadso.h -------------------------------------------------------------------------------- /Xcode/iOS/SDL3.framework/Headers/SDL_locale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/iOS/SDL3.framework/Headers/SDL_locale.h -------------------------------------------------------------------------------- /Xcode/iOS/SDL3.framework/Headers/SDL_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/iOS/SDL3.framework/Headers/SDL_log.h -------------------------------------------------------------------------------- /Xcode/iOS/SDL3.framework/Headers/SDL_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/iOS/SDL3.framework/Headers/SDL_main.h -------------------------------------------------------------------------------- /Xcode/iOS/SDL3.framework/Headers/SDL_main_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/iOS/SDL3.framework/Headers/SDL_main_impl.h -------------------------------------------------------------------------------- /Xcode/iOS/SDL3.framework/Headers/SDL_messagebox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/iOS/SDL3.framework/Headers/SDL_messagebox.h -------------------------------------------------------------------------------- /Xcode/iOS/SDL3.framework/Headers/SDL_metal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/iOS/SDL3.framework/Headers/SDL_metal.h -------------------------------------------------------------------------------- /Xcode/iOS/SDL3.framework/Headers/SDL_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/iOS/SDL3.framework/Headers/SDL_misc.h -------------------------------------------------------------------------------- /Xcode/iOS/SDL3.framework/Headers/SDL_mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/iOS/SDL3.framework/Headers/SDL_mouse.h -------------------------------------------------------------------------------- /Xcode/iOS/SDL3.framework/Headers/SDL_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/iOS/SDL3.framework/Headers/SDL_mutex.h -------------------------------------------------------------------------------- /Xcode/iOS/SDL3.framework/Headers/SDL_oldnames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/iOS/SDL3.framework/Headers/SDL_oldnames.h -------------------------------------------------------------------------------- /Xcode/iOS/SDL3.framework/Headers/SDL_opengl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/iOS/SDL3.framework/Headers/SDL_opengl.h -------------------------------------------------------------------------------- /Xcode/iOS/SDL3.framework/Headers/SDL_opengl_glext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/iOS/SDL3.framework/Headers/SDL_opengl_glext.h -------------------------------------------------------------------------------- /Xcode/iOS/SDL3.framework/Headers/SDL_opengles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/iOS/SDL3.framework/Headers/SDL_opengles.h -------------------------------------------------------------------------------- /Xcode/iOS/SDL3.framework/Headers/SDL_opengles2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/iOS/SDL3.framework/Headers/SDL_opengles2.h -------------------------------------------------------------------------------- /Xcode/iOS/SDL3.framework/Headers/SDL_opengles2_gl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/iOS/SDL3.framework/Headers/SDL_opengles2_gl2.h -------------------------------------------------------------------------------- /Xcode/iOS/SDL3.framework/Headers/SDL_opengles2_gl2ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/iOS/SDL3.framework/Headers/SDL_opengles2_gl2ext.h -------------------------------------------------------------------------------- /Xcode/iOS/SDL3.framework/Headers/SDL_opengles2_gl2platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/iOS/SDL3.framework/Headers/SDL_opengles2_gl2platform.h -------------------------------------------------------------------------------- /Xcode/iOS/SDL3.framework/Headers/SDL_opengles2_khrplatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/iOS/SDL3.framework/Headers/SDL_opengles2_khrplatform.h -------------------------------------------------------------------------------- /Xcode/iOS/SDL3.framework/Headers/SDL_pen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/iOS/SDL3.framework/Headers/SDL_pen.h -------------------------------------------------------------------------------- /Xcode/iOS/SDL3.framework/Headers/SDL_pixels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/iOS/SDL3.framework/Headers/SDL_pixels.h -------------------------------------------------------------------------------- /Xcode/iOS/SDL3.framework/Headers/SDL_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/iOS/SDL3.framework/Headers/SDL_platform.h -------------------------------------------------------------------------------- /Xcode/iOS/SDL3.framework/Headers/SDL_platform_defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/iOS/SDL3.framework/Headers/SDL_platform_defines.h -------------------------------------------------------------------------------- /Xcode/iOS/SDL3.framework/Headers/SDL_power.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/iOS/SDL3.framework/Headers/SDL_power.h -------------------------------------------------------------------------------- /Xcode/iOS/SDL3.framework/Headers/SDL_process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/iOS/SDL3.framework/Headers/SDL_process.h -------------------------------------------------------------------------------- /Xcode/iOS/SDL3.framework/Headers/SDL_properties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/iOS/SDL3.framework/Headers/SDL_properties.h -------------------------------------------------------------------------------- /Xcode/iOS/SDL3.framework/Headers/SDL_rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/iOS/SDL3.framework/Headers/SDL_rect.h -------------------------------------------------------------------------------- /Xcode/iOS/SDL3.framework/Headers/SDL_render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/iOS/SDL3.framework/Headers/SDL_render.h -------------------------------------------------------------------------------- /Xcode/iOS/SDL3.framework/Headers/SDL_revision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/iOS/SDL3.framework/Headers/SDL_revision.h -------------------------------------------------------------------------------- /Xcode/iOS/SDL3.framework/Headers/SDL_scancode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/iOS/SDL3.framework/Headers/SDL_scancode.h -------------------------------------------------------------------------------- /Xcode/iOS/SDL3.framework/Headers/SDL_sensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/iOS/SDL3.framework/Headers/SDL_sensor.h -------------------------------------------------------------------------------- /Xcode/iOS/SDL3.framework/Headers/SDL_stdinc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/iOS/SDL3.framework/Headers/SDL_stdinc.h -------------------------------------------------------------------------------- /Xcode/iOS/SDL3.framework/Headers/SDL_storage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/iOS/SDL3.framework/Headers/SDL_storage.h -------------------------------------------------------------------------------- /Xcode/iOS/SDL3.framework/Headers/SDL_surface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/iOS/SDL3.framework/Headers/SDL_surface.h -------------------------------------------------------------------------------- /Xcode/iOS/SDL3.framework/Headers/SDL_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/iOS/SDL3.framework/Headers/SDL_system.h -------------------------------------------------------------------------------- /Xcode/iOS/SDL3.framework/Headers/SDL_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/iOS/SDL3.framework/Headers/SDL_thread.h -------------------------------------------------------------------------------- /Xcode/iOS/SDL3.framework/Headers/SDL_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/iOS/SDL3.framework/Headers/SDL_time.h -------------------------------------------------------------------------------- /Xcode/iOS/SDL3.framework/Headers/SDL_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/iOS/SDL3.framework/Headers/SDL_timer.h -------------------------------------------------------------------------------- /Xcode/iOS/SDL3.framework/Headers/SDL_touch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/iOS/SDL3.framework/Headers/SDL_touch.h -------------------------------------------------------------------------------- /Xcode/iOS/SDL3.framework/Headers/SDL_tray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/iOS/SDL3.framework/Headers/SDL_tray.h -------------------------------------------------------------------------------- /Xcode/iOS/SDL3.framework/Headers/SDL_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/iOS/SDL3.framework/Headers/SDL_version.h -------------------------------------------------------------------------------- /Xcode/iOS/SDL3.framework/Headers/SDL_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/iOS/SDL3.framework/Headers/SDL_video.h -------------------------------------------------------------------------------- /Xcode/iOS/SDL3.framework/Headers/SDL_vulkan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/iOS/SDL3.framework/Headers/SDL_vulkan.h -------------------------------------------------------------------------------- /Xcode/iOS/SDL3.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/iOS/SDL3.framework/Info.plist -------------------------------------------------------------------------------- /Xcode/iOS/SDL3.framework/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/iOS/SDL3.framework/LICENSE.txt -------------------------------------------------------------------------------- /Xcode/iOS/SDL3.framework/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/iOS/SDL3.framework/README.md -------------------------------------------------------------------------------- /Xcode/iOS/SDL3.framework/SDL3.tbd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/iOS/SDL3.framework/SDL3.tbd -------------------------------------------------------------------------------- /Xcode/macOS/SDL3.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /Xcode/macOS/SDL3.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /Xcode/macOS/SDL3.framework/SDL3.tbd: -------------------------------------------------------------------------------- 1 | Versions/Current/SDL3.tbd -------------------------------------------------------------------------------- /Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL.h -------------------------------------------------------------------------------- /Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_assert.h -------------------------------------------------------------------------------- /Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_asyncio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_asyncio.h -------------------------------------------------------------------------------- /Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_atomic.h -------------------------------------------------------------------------------- /Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_audio.h -------------------------------------------------------------------------------- /Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_begin_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_begin_code.h -------------------------------------------------------------------------------- /Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_bits.h -------------------------------------------------------------------------------- /Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_blendmode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_blendmode.h -------------------------------------------------------------------------------- /Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_camera.h -------------------------------------------------------------------------------- /Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_clipboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_clipboard.h -------------------------------------------------------------------------------- /Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_close_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_close_code.h -------------------------------------------------------------------------------- /Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_copying.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_copying.h -------------------------------------------------------------------------------- /Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_cpuinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_cpuinfo.h -------------------------------------------------------------------------------- /Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_dialog.h -------------------------------------------------------------------------------- /Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_dlopennote.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_dlopennote.h -------------------------------------------------------------------------------- /Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_egl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_egl.h -------------------------------------------------------------------------------- /Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_endian.h -------------------------------------------------------------------------------- /Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_error.h -------------------------------------------------------------------------------- /Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_events.h -------------------------------------------------------------------------------- /Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_filesystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_filesystem.h -------------------------------------------------------------------------------- /Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_gamepad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_gamepad.h -------------------------------------------------------------------------------- /Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_gpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_gpu.h -------------------------------------------------------------------------------- /Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_guid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_guid.h -------------------------------------------------------------------------------- /Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_haptic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_haptic.h -------------------------------------------------------------------------------- /Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_hidapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_hidapi.h -------------------------------------------------------------------------------- /Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_hints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_hints.h -------------------------------------------------------------------------------- /Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_init.h -------------------------------------------------------------------------------- /Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_intrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_intrin.h -------------------------------------------------------------------------------- /Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_iostream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_iostream.h -------------------------------------------------------------------------------- /Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_joystick.h -------------------------------------------------------------------------------- /Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_keyboard.h -------------------------------------------------------------------------------- /Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_keycode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_keycode.h -------------------------------------------------------------------------------- /Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_loadso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_loadso.h -------------------------------------------------------------------------------- /Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_locale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_locale.h -------------------------------------------------------------------------------- /Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_log.h -------------------------------------------------------------------------------- /Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_main.h -------------------------------------------------------------------------------- /Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_main_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_main_impl.h -------------------------------------------------------------------------------- /Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_messagebox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_messagebox.h -------------------------------------------------------------------------------- /Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_metal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_metal.h -------------------------------------------------------------------------------- /Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_misc.h -------------------------------------------------------------------------------- /Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_mouse.h -------------------------------------------------------------------------------- /Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_mutex.h -------------------------------------------------------------------------------- /Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_oldnames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_oldnames.h -------------------------------------------------------------------------------- /Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_opengl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_opengl.h -------------------------------------------------------------------------------- /Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_opengl_glext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_opengl_glext.h -------------------------------------------------------------------------------- /Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_opengles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_opengles.h -------------------------------------------------------------------------------- /Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_opengles2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_opengles2.h -------------------------------------------------------------------------------- /Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_opengles2_gl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_opengles2_gl2.h -------------------------------------------------------------------------------- /Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_opengles2_gl2ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_opengles2_gl2ext.h -------------------------------------------------------------------------------- /Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_opengles2_gl2platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_opengles2_gl2platform.h -------------------------------------------------------------------------------- /Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_opengles2_khrplatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_opengles2_khrplatform.h -------------------------------------------------------------------------------- /Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_pen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_pen.h -------------------------------------------------------------------------------- /Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_pixels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_pixels.h -------------------------------------------------------------------------------- /Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_platform.h -------------------------------------------------------------------------------- /Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_platform_defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_platform_defines.h -------------------------------------------------------------------------------- /Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_power.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_power.h -------------------------------------------------------------------------------- /Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_process.h -------------------------------------------------------------------------------- /Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_properties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_properties.h -------------------------------------------------------------------------------- /Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_rect.h -------------------------------------------------------------------------------- /Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_render.h -------------------------------------------------------------------------------- /Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_revision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_revision.h -------------------------------------------------------------------------------- /Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_scancode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_scancode.h -------------------------------------------------------------------------------- /Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_sensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_sensor.h -------------------------------------------------------------------------------- /Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_stdinc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_stdinc.h -------------------------------------------------------------------------------- /Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_storage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_storage.h -------------------------------------------------------------------------------- /Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_surface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_surface.h -------------------------------------------------------------------------------- /Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_system.h -------------------------------------------------------------------------------- /Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_thread.h -------------------------------------------------------------------------------- /Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_time.h -------------------------------------------------------------------------------- /Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_timer.h -------------------------------------------------------------------------------- /Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_touch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_touch.h -------------------------------------------------------------------------------- /Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_tray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_tray.h -------------------------------------------------------------------------------- /Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_version.h -------------------------------------------------------------------------------- /Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_video.h -------------------------------------------------------------------------------- /Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_vulkan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_vulkan.h -------------------------------------------------------------------------------- /Xcode/macOS/SDL3.framework/Versions/A/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/macOS/SDL3.framework/Versions/A/Resources/Info.plist -------------------------------------------------------------------------------- /Xcode/macOS/SDL3.framework/Versions/A/Resources/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/macOS/SDL3.framework/Versions/A/Resources/LICENSE.txt -------------------------------------------------------------------------------- /Xcode/macOS/SDL3.framework/Versions/A/Resources/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/macOS/SDL3.framework/Versions/A/Resources/README.md -------------------------------------------------------------------------------- /Xcode/macOS/SDL3.framework/Versions/A/SDL3.tbd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/macOS/SDL3.framework/Versions/A/SDL3.tbd -------------------------------------------------------------------------------- /Xcode/macOS/SDL3.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /Xcode/pkg-support/build.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/pkg-support/build.xcconfig -------------------------------------------------------------------------------- /Xcode/pkg-support/resources/CMake/SDL3_netConfig.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/pkg-support/resources/CMake/SDL3_netConfig.cmake -------------------------------------------------------------------------------- /Xcode/pkg-support/resources/CMake/SDL3_netConfigVersion.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/pkg-support/resources/CMake/SDL3_netConfigVersion.cmake -------------------------------------------------------------------------------- /Xcode/pkg-support/resources/INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/pkg-support/resources/INSTALL.md -------------------------------------------------------------------------------- /Xcode/pkg-support/resources/SDL_DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/pkg-support/resources/SDL_DS_Store -------------------------------------------------------------------------------- /Xcode/pkg-support/resources/framework/INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/pkg-support/resources/framework/INSTALL.md -------------------------------------------------------------------------------- /Xcode/pkg-support/resources/share/cmake/SDL3_net/SDL3_netConfig.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/pkg-support/resources/share/cmake/SDL3_net/SDL3_netConfig.cmake -------------------------------------------------------------------------------- /Xcode/pkg-support/resources/share/cmake/SDL3_net/SDL3_netConfigVersion.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/pkg-support/resources/share/cmake/SDL3_net/SDL3_netConfigVersion.cmake -------------------------------------------------------------------------------- /Xcode/pkg-support/sdl_logo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/Xcode/pkg-support/sdl_logo.pdf -------------------------------------------------------------------------------- /cmake/GetGitRevisionDescription.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/cmake/GetGitRevisionDescription.cmake -------------------------------------------------------------------------------- /cmake/GetGitRevisionDescription.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/cmake/GetGitRevisionDescription.cmake.in -------------------------------------------------------------------------------- /cmake/PrivateSdlFunctions.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/cmake/PrivateSdlFunctions.cmake -------------------------------------------------------------------------------- /cmake/SDL3_netConfig.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/cmake/SDL3_netConfig.cmake.in -------------------------------------------------------------------------------- /cmake/sdl3-net.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/cmake/sdl3-net.pc.in -------------------------------------------------------------------------------- /cmake/sdlcpu.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/cmake/sdlcpu.cmake -------------------------------------------------------------------------------- /cmake/sdlmanpages.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/cmake/sdlmanpages.cmake -------------------------------------------------------------------------------- /cmake/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/cmake/test/CMakeLists.txt -------------------------------------------------------------------------------- /cmake/test/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/cmake/test/main.c -------------------------------------------------------------------------------- /examples/echo-server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/examples/echo-server.c -------------------------------------------------------------------------------- /examples/get-local-addrs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/examples/get-local-addrs.c -------------------------------------------------------------------------------- /examples/resolve-hostnames.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/examples/resolve-hostnames.c -------------------------------------------------------------------------------- /examples/simple-http-get.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/examples/simple-http-get.c -------------------------------------------------------------------------------- /examples/voipchat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/examples/voipchat.c -------------------------------------------------------------------------------- /include/SDL3_net/SDL_net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/include/SDL3_net/SDL_net.h -------------------------------------------------------------------------------- /src/SDL_net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/src/SDL_net.c -------------------------------------------------------------------------------- /src/SDL_net.exports: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/src/SDL_net.exports -------------------------------------------------------------------------------- /src/SDL_net.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/src/SDL_net.sym -------------------------------------------------------------------------------- /src/genexports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/src/genexports.py -------------------------------------------------------------------------------- /src/version.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libsdl-org/SDL_net/HEAD/src/version.rc --------------------------------------------------------------------------------