├── .github └── workflows │ └── main.yml ├── CMakeLists.txt ├── COPYING ├── README.md ├── cmake ├── FindFluidSynth.cmake ├── FindSDL2.cmake ├── FindSDL2_mixer.cmake ├── FindSDL2_net.cmake ├── FindSampleRate.cmake ├── Findm.cmake ├── Findminiz.cmake ├── config.h.cin └── triplets │ ├── x64-linux-dynamic-release.cmake │ └── x86-windows-static-release.cmake ├── data ├── README ├── convert-icon ├── doom.desktop ├── doom.ico ├── doom.png ├── heretic.desktop ├── heretic.ico ├── heretic.png ├── setup.ico └── setup.png ├── miniz ├── CMakeLists.txt ├── LICENSE ├── miniz.c └── miniz.h ├── opl ├── CMakeLists.txt ├── opl.c ├── opl.h ├── opl3.c ├── opl3.h ├── opl_internal.h ├── opl_queue.c ├── opl_queue.h └── opl_sdl.c ├── pcsound ├── CMakeLists.txt ├── pcsound.c ├── pcsound.h ├── pcsound_internal.h └── pcsound_sdl.c ├── src ├── CMakeLists.txt ├── Heretic.desktop.in ├── aes_prng.c ├── aes_prng.h ├── crlcore.c ├── crlcore.h ├── crlvars.c ├── crlvars.h ├── d_dedicated.c ├── d_event.c ├── d_event.h ├── d_iwad.c ├── d_iwad.h ├── d_loop.c ├── d_loop.h ├── d_mode.c ├── d_mode.h ├── d_ticcmd.h ├── deh_defs.h ├── deh_io.c ├── deh_io.h ├── deh_main.c ├── deh_main.h ├── deh_mapping.c ├── deh_mapping.h ├── deh_str.c ├── deh_str.h ├── deh_text.c ├── doom-res.rc.in ├── doom.appdata.xml.in ├── doom.desktop.in ├── doom │ ├── CMakeLists.txt │ ├── am_map.c │ ├── am_map.h │ ├── crlfunc.c │ ├── crlfunc.h │ ├── ct_chat.c │ ├── d_englsh.h │ ├── d_items.c │ ├── d_items.h │ ├── d_main.c │ ├── d_main.h │ ├── d_net.c │ ├── d_player.h │ ├── d_think.h │ ├── deh_ammo.c │ ├── deh_bexstr.c │ ├── deh_cheat.c │ ├── deh_doom.c │ ├── deh_frame.c │ ├── deh_misc.c │ ├── deh_misc.h │ ├── deh_ptr.c │ ├── deh_sound.c │ ├── deh_thing.c │ ├── deh_weapon.c │ ├── doomdef.c │ ├── doomdef.h │ ├── doomstat.c │ ├── doomstat.h │ ├── dstrings.c │ ├── dstrings.h │ ├── f_finale.c │ ├── f_finale.h │ ├── f_wipe.c │ ├── f_wipe.h │ ├── g_game.c │ ├── g_game.h │ ├── icon.c │ ├── info.c │ ├── info.h │ ├── m_menu.c │ ├── m_menu.h │ ├── m_random.c │ ├── m_random.h │ ├── p_ceilng.c │ ├── p_doors.c │ ├── p_enemy.c │ ├── p_floor.c │ ├── p_inter.c │ ├── p_lights.c │ ├── p_local.h │ ├── p_map.c │ ├── p_maputl.c │ ├── p_mobj.c │ ├── p_plats.c │ ├── p_pspr.c │ ├── p_saveg.c │ ├── p_setup.c │ ├── p_sight.c │ ├── p_spec.c │ ├── p_switch.c │ ├── p_telept.c │ ├── p_tick.c │ ├── p_user.c │ ├── r_bsp.c │ ├── r_data.c │ ├── r_draw.c │ ├── r_local.h │ ├── r_main.c │ ├── r_plane.c │ ├── r_segs.c │ ├── r_things.c │ ├── s_sound.c │ ├── s_sound.h │ ├── sounds.c │ ├── sounds.h │ ├── st_bar.c │ ├── st_bar.h │ ├── statdump.c │ ├── statdump.h │ ├── wi_stuff.c │ └── wi_stuff.h ├── doomkeys.h ├── doomtype.h ├── gusconf.c ├── gusconf.h ├── heretic-res.rc.in ├── heretic │ ├── .gitignore │ ├── CMakeLists.txt │ ├── am_data.h │ ├── am_map.c │ ├── am_map.h │ ├── crlfunc.c │ ├── crlfunc.h │ ├── ct_chat.c │ ├── ct_chat.h │ ├── d_main.c │ ├── d_net.c │ ├── deh_ammo.c │ ├── deh_frame.c │ ├── deh_htext.c │ ├── deh_htic.c │ ├── deh_htic.h │ ├── deh_sound.c │ ├── deh_thing.c │ ├── deh_weapon.c │ ├── doomdata.h │ ├── doomdef.h │ ├── dstrings.h │ ├── f_finale.c │ ├── g_game.c │ ├── icon.c │ ├── in_lude.c │ ├── info.c │ ├── info.h │ ├── m_random.c │ ├── m_random.h │ ├── mn_menu.c │ ├── p_action.h │ ├── p_ceilng.c │ ├── p_doors.c │ ├── p_enemy.c │ ├── p_floor.c │ ├── p_inter.c │ ├── p_lights.c │ ├── p_local.h │ ├── p_map.c │ ├── p_maputl.c │ ├── p_mobj.c │ ├── p_plats.c │ ├── p_pspr.c │ ├── p_saveg.c │ ├── p_setup.c │ ├── p_sight.c │ ├── p_spec.c │ ├── p_spec.h │ ├── p_switch.c │ ├── p_telept.c │ ├── p_tick.c │ ├── p_user.c │ ├── r_bsp.c │ ├── r_data.c │ ├── r_draw.c │ ├── r_local.h │ ├── r_main.c │ ├── r_plane.c │ ├── r_segs.c │ ├── r_things.c │ ├── s_sound.c │ ├── s_sound.h │ ├── sb_bar.c │ ├── sounds.c │ └── sounds.h ├── i_endoom.c ├── i_endoom.h ├── i_flmusic.c ├── i_glob.c ├── i_glob.h ├── i_input.c ├── i_input.h ├── i_joystick.c ├── i_joystick.h ├── i_main.c ├── i_musicpack.c ├── i_oplmusic.c ├── i_pcsound.c ├── i_sdlmusic.c ├── i_sdlsound.c ├── i_sound.c ├── i_sound.h ├── i_swap.h ├── i_system.c ├── i_system.h ├── i_timer.c ├── i_timer.h ├── i_video.c ├── i_video.h ├── i_winmusic.c ├── m_argv.c ├── m_argv.h ├── m_bbox.c ├── m_bbox.h ├── m_cheat.c ├── m_cheat.h ├── m_config.c ├── m_config.h ├── m_controls.c ├── m_controls.h ├── m_fixed.c ├── m_fixed.h ├── m_misc.c ├── m_misc.h ├── manifest.xml ├── memio.c ├── memio.h ├── midifallback.c ├── midifallback.h ├── midifile.c ├── midifile.h ├── mus2mid.c ├── mus2mid.h ├── net_client.c ├── net_client.h ├── net_common.c ├── net_common.h ├── net_dedicated.c ├── net_dedicated.h ├── net_defs.h ├── net_gui.c ├── net_gui.h ├── net_io.c ├── net_io.h ├── net_loop.c ├── net_loop.h ├── net_packet.c ├── net_packet.h ├── net_petname.c ├── net_petname.h ├── net_query.c ├── net_query.h ├── net_sdl.c ├── net_sdl.h ├── net_server.c ├── net_server.h ├── net_structrw.c ├── net_structrw.h ├── resource.rc.in ├── setup-res.rc.in ├── setup │ ├── CMakeLists.txt │ ├── execute.c │ ├── execute.h │ ├── mainmenu.c │ ├── mode.c │ ├── mode.h │ ├── multiplayer.c │ ├── multiplayer.h │ ├── setup-manifest.xml.in │ ├── setup.desktop.in │ └── setup_icon.c ├── sha1.c ├── sha1.h ├── tables.c ├── tables.h ├── v_diskicon.c ├── v_diskicon.h ├── v_patch.h ├── v_trans.c ├── v_trans.h ├── v_video.c ├── v_video.h ├── w_checksum.c ├── w_checksum.h ├── w_file.c ├── w_file.h ├── w_file_posix.c ├── w_file_stdc.c ├── w_file_win32.c ├── w_main.c ├── w_main.h ├── w_merge.c ├── w_merge.h ├── w_wad.c ├── w_wad.h ├── z_native.c ├── z_zone.c └── z_zone.h ├── textscreen ├── CMakeLists.txt ├── Doxyfile ├── fonts │ ├── README │ ├── codepage.h │ ├── convert-font │ ├── large.h │ ├── large.png │ ├── normal.h │ ├── normal.png │ ├── small.h │ └── small.png ├── textscreen.h ├── txt_button.c ├── txt_button.h ├── txt_checkbox.c ├── txt_checkbox.h ├── txt_conditional.c ├── txt_conditional.h ├── txt_desktop.c ├── txt_desktop.h ├── txt_dropdown.c ├── txt_dropdown.h ├── txt_fileselect.c ├── txt_fileselect.h ├── txt_gui.c ├── txt_gui.h ├── txt_inputbox.c ├── txt_inputbox.h ├── txt_io.c ├── txt_io.h ├── txt_label.c ├── txt_label.h ├── txt_main.h ├── txt_radiobutton.c ├── txt_radiobutton.h ├── txt_scrollpane.c ├── txt_scrollpane.h ├── txt_sdl.c ├── txt_sdl.h ├── txt_separator.c ├── txt_separator.h ├── txt_spinctrl.c ├── txt_spinctrl.h ├── txt_strut.c ├── txt_strut.h ├── txt_table.c ├── txt_table.h ├── txt_utf8.c ├── txt_utf8.h ├── txt_widget.c ├── txt_widget.h ├── txt_window.c ├── txt_window.h ├── txt_window_action.c └── txt_window_action.h ├── vcpkg.json └── win32 ├── SDL2-2.32.10 ├── .git-hash ├── BUGS.txt ├── LICENSE.txt ├── README-SDL.txt ├── README.md ├── WhatsNew.txt ├── cmake │ ├── sdl2-config-version.cmake │ └── sdl2-config.cmake ├── docs │ ├── CONTRIBUTING.md │ ├── README-android.md │ ├── README-cmake.md │ ├── README-directfb.md │ ├── README-dynapi.md │ ├── README-emscripten.md │ ├── README-gdk.md │ ├── README-gesture.md │ ├── README-git.md │ ├── README-hg.md │ ├── README-ios.md │ ├── README-kmsbsd.md │ ├── README-linux.md │ ├── README-macos.md │ ├── README-n3ds.md │ ├── README-nacl.md │ ├── README-ngage.md │ ├── README-os2.md │ ├── README-pandora.md │ ├── README-platforms.md │ ├── README-porting.md │ ├── README-ps2.md │ ├── README-psp.md │ ├── README-raspberrypi.md │ ├── README-riscos.md │ ├── README-touch.md │ ├── README-versions.md │ ├── README-visualc.md │ ├── README-vita.md │ ├── README-wince.md │ ├── README-windows.md │ ├── README-winrt.md │ ├── README.md │ ├── doxyfile │ └── release_checklist.md ├── 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_android.h │ ├── SDL_config_emscripten.h │ ├── SDL_config_iphoneos.h │ ├── SDL_config_macosx.h │ ├── SDL_config_minimal.h │ ├── SDL_config_ngage.h │ ├── SDL_config_os2.h │ ├── SDL_config_pandora.h │ ├── SDL_config_windows.h │ ├── SDL_config_wingdk.h │ ├── SDL_config_winrt.h │ ├── SDL_config_xbox.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_guid.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_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 └── lib │ ├── x64 │ ├── SDL2.dll │ ├── SDL2.lib │ ├── SDL2.pdb │ ├── SDL2main.lib │ └── SDL2test.lib │ └── x86 │ ├── SDL2.dll │ ├── SDL2.lib │ ├── SDL2.pdb │ ├── SDL2main.lib │ └── SDL2test.lib ├── SDL2_mixer-2.8.1 ├── .git-hash ├── CHANGES.txt ├── LICENSE.txt ├── README.txt ├── cmake │ ├── sdl2_mixer-config-version.cmake │ └── sdl2_mixer-config.cmake ├── include │ └── SDL_mixer.h └── lib │ ├── x64 │ ├── SDL2_mixer.dll │ ├── SDL2_mixer.lib │ ├── SDL2_mixer.pdb │ └── optional │ │ ├── LICENSE.gme.txt │ │ ├── LICENSE.ogg-vorbis.txt │ │ ├── LICENSE.opus.txt │ │ ├── LICENSE.opusfile.txt │ │ ├── LICENSE.wavpack.txt │ │ ├── LICENSE.xmp.txt │ │ ├── libgme.dll │ │ ├── libogg-0.dll │ │ ├── libopus-0.dll │ │ ├── libopusfile-0.dll │ │ ├── libwavpack-1.dll │ │ └── libxmp.dll │ └── x86 │ ├── SDL2_mixer.dll │ ├── SDL2_mixer.lib │ ├── SDL2_mixer.pdb │ └── optional │ ├── LICENSE.gme.txt │ ├── LICENSE.ogg-vorbis.txt │ ├── LICENSE.opus.txt │ ├── LICENSE.opusfile.txt │ ├── LICENSE.wavpack.txt │ ├── LICENSE.xmp.txt │ ├── libgme.dll │ ├── libogg-0.dll │ ├── libopus-0.dll │ ├── libopusfile-0.dll │ ├── libwavpack-1.dll │ └── libxmp.dll ├── SDL2_net-2.2.0 ├── CHANGES.txt ├── LICENSE.txt ├── README.txt ├── cmake │ ├── sdl2_net-config-version.cmake │ └── sdl2_net-config.cmake ├── include │ └── SDL_net.h └── lib │ ├── x64 │ ├── SDL2_net.dll │ └── SDL2_net.lib │ └── x86 │ ├── SDL2_net.dll │ └── SDL2_net.lib ├── dlls-vc-win32 ├── SDL2.dll ├── SDL2_mixer.dll ├── SDL2_net.dll ├── intl.dll ├── libfluidsynth-3.dll ├── libglib-2.0-0.dll ├── libgobject-2.0-0.dll ├── libgthread-2.0-0.dll ├── libinstpatch-2.dll ├── libogg-0.dll ├── libopus-0.dll ├── libopusfile-0.dll ├── samplerate.dll └── sndfile.dll ├── libsamplerate-0.2.2-win32 ├── bin │ └── samplerate.dll ├── include │ └── samplerate.h ├── lib │ ├── cmake │ │ └── SampleRate │ │ │ ├── SampleRateConfig.cmake │ │ │ ├── SampleRateConfigVersion.cmake │ │ │ ├── SampleRateTargets-release.cmake │ │ │ └── SampleRateTargets.cmake │ └── samplerate.lib └── share │ └── doc │ └── libsamplerate │ ├── SRC.png │ ├── api.md │ ├── api_callback.md │ ├── api_full.md │ ├── api_misc.md │ ├── api_simple.md │ ├── bugs.md │ ├── download.md │ ├── faq.md │ ├── history.md │ ├── index.md │ ├── license.md │ ├── lists.md │ ├── quality.md │ └── win32.md ├── win_opendir.c └── win_opendir.h /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/COPYING -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/README.md -------------------------------------------------------------------------------- /cmake/FindFluidSynth.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/cmake/FindFluidSynth.cmake -------------------------------------------------------------------------------- /cmake/FindSDL2.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/cmake/FindSDL2.cmake -------------------------------------------------------------------------------- /cmake/FindSDL2_mixer.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/cmake/FindSDL2_mixer.cmake -------------------------------------------------------------------------------- /cmake/FindSDL2_net.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/cmake/FindSDL2_net.cmake -------------------------------------------------------------------------------- /cmake/FindSampleRate.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/cmake/FindSampleRate.cmake -------------------------------------------------------------------------------- /cmake/Findm.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/cmake/Findm.cmake -------------------------------------------------------------------------------- /cmake/Findminiz.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/cmake/Findminiz.cmake -------------------------------------------------------------------------------- /cmake/config.h.cin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/cmake/config.h.cin -------------------------------------------------------------------------------- /cmake/triplets/x64-linux-dynamic-release.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/cmake/triplets/x64-linux-dynamic-release.cmake -------------------------------------------------------------------------------- /cmake/triplets/x86-windows-static-release.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/cmake/triplets/x86-windows-static-release.cmake -------------------------------------------------------------------------------- /data/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/data/README -------------------------------------------------------------------------------- /data/convert-icon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/data/convert-icon -------------------------------------------------------------------------------- /data/doom.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/data/doom.desktop -------------------------------------------------------------------------------- /data/doom.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/data/doom.ico -------------------------------------------------------------------------------- /data/doom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/data/doom.png -------------------------------------------------------------------------------- /data/heretic.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/data/heretic.desktop -------------------------------------------------------------------------------- /data/heretic.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/data/heretic.ico -------------------------------------------------------------------------------- /data/heretic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/data/heretic.png -------------------------------------------------------------------------------- /data/setup.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/data/setup.ico -------------------------------------------------------------------------------- /data/setup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/data/setup.png -------------------------------------------------------------------------------- /miniz/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/miniz/CMakeLists.txt -------------------------------------------------------------------------------- /miniz/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/miniz/LICENSE -------------------------------------------------------------------------------- /miniz/miniz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/miniz/miniz.c -------------------------------------------------------------------------------- /miniz/miniz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/miniz/miniz.h -------------------------------------------------------------------------------- /opl/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/opl/CMakeLists.txt -------------------------------------------------------------------------------- /opl/opl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/opl/opl.c -------------------------------------------------------------------------------- /opl/opl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/opl/opl.h -------------------------------------------------------------------------------- /opl/opl3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/opl/opl3.c -------------------------------------------------------------------------------- /opl/opl3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/opl/opl3.h -------------------------------------------------------------------------------- /opl/opl_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/opl/opl_internal.h -------------------------------------------------------------------------------- /opl/opl_queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/opl/opl_queue.c -------------------------------------------------------------------------------- /opl/opl_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/opl/opl_queue.h -------------------------------------------------------------------------------- /opl/opl_sdl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/opl/opl_sdl.c -------------------------------------------------------------------------------- /pcsound/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/pcsound/CMakeLists.txt -------------------------------------------------------------------------------- /pcsound/pcsound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/pcsound/pcsound.c -------------------------------------------------------------------------------- /pcsound/pcsound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/pcsound/pcsound.h -------------------------------------------------------------------------------- /pcsound/pcsound_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/pcsound/pcsound_internal.h -------------------------------------------------------------------------------- /pcsound/pcsound_sdl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/pcsound/pcsound_sdl.c -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/Heretic.desktop.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/Heretic.desktop.in -------------------------------------------------------------------------------- /src/aes_prng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/aes_prng.c -------------------------------------------------------------------------------- /src/aes_prng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/aes_prng.h -------------------------------------------------------------------------------- /src/crlcore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/crlcore.c -------------------------------------------------------------------------------- /src/crlcore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/crlcore.h -------------------------------------------------------------------------------- /src/crlvars.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/crlvars.c -------------------------------------------------------------------------------- /src/crlvars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/crlvars.h -------------------------------------------------------------------------------- /src/d_dedicated.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/d_dedicated.c -------------------------------------------------------------------------------- /src/d_event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/d_event.c -------------------------------------------------------------------------------- /src/d_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/d_event.h -------------------------------------------------------------------------------- /src/d_iwad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/d_iwad.c -------------------------------------------------------------------------------- /src/d_iwad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/d_iwad.h -------------------------------------------------------------------------------- /src/d_loop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/d_loop.c -------------------------------------------------------------------------------- /src/d_loop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/d_loop.h -------------------------------------------------------------------------------- /src/d_mode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/d_mode.c -------------------------------------------------------------------------------- /src/d_mode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/d_mode.h -------------------------------------------------------------------------------- /src/d_ticcmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/d_ticcmd.h -------------------------------------------------------------------------------- /src/deh_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/deh_defs.h -------------------------------------------------------------------------------- /src/deh_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/deh_io.c -------------------------------------------------------------------------------- /src/deh_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/deh_io.h -------------------------------------------------------------------------------- /src/deh_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/deh_main.c -------------------------------------------------------------------------------- /src/deh_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/deh_main.h -------------------------------------------------------------------------------- /src/deh_mapping.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/deh_mapping.c -------------------------------------------------------------------------------- /src/deh_mapping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/deh_mapping.h -------------------------------------------------------------------------------- /src/deh_str.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/deh_str.c -------------------------------------------------------------------------------- /src/deh_str.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/deh_str.h -------------------------------------------------------------------------------- /src/deh_text.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/deh_text.c -------------------------------------------------------------------------------- /src/doom-res.rc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/doom-res.rc.in -------------------------------------------------------------------------------- /src/doom.appdata.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/doom.appdata.xml.in -------------------------------------------------------------------------------- /src/doom.desktop.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/doom.desktop.in -------------------------------------------------------------------------------- /src/doom/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/doom/CMakeLists.txt -------------------------------------------------------------------------------- /src/doom/am_map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/doom/am_map.c -------------------------------------------------------------------------------- /src/doom/am_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/doom/am_map.h -------------------------------------------------------------------------------- /src/doom/crlfunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/doom/crlfunc.c -------------------------------------------------------------------------------- /src/doom/crlfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/doom/crlfunc.h -------------------------------------------------------------------------------- /src/doom/ct_chat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/doom/ct_chat.c -------------------------------------------------------------------------------- /src/doom/d_englsh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/doom/d_englsh.h -------------------------------------------------------------------------------- /src/doom/d_items.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/doom/d_items.c -------------------------------------------------------------------------------- /src/doom/d_items.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/doom/d_items.h -------------------------------------------------------------------------------- /src/doom/d_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/doom/d_main.c -------------------------------------------------------------------------------- /src/doom/d_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/doom/d_main.h -------------------------------------------------------------------------------- /src/doom/d_net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/doom/d_net.c -------------------------------------------------------------------------------- /src/doom/d_player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/doom/d_player.h -------------------------------------------------------------------------------- /src/doom/d_think.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/doom/d_think.h -------------------------------------------------------------------------------- /src/doom/deh_ammo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/doom/deh_ammo.c -------------------------------------------------------------------------------- /src/doom/deh_bexstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/doom/deh_bexstr.c -------------------------------------------------------------------------------- /src/doom/deh_cheat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/doom/deh_cheat.c -------------------------------------------------------------------------------- /src/doom/deh_doom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/doom/deh_doom.c -------------------------------------------------------------------------------- /src/doom/deh_frame.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/doom/deh_frame.c -------------------------------------------------------------------------------- /src/doom/deh_misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/doom/deh_misc.c -------------------------------------------------------------------------------- /src/doom/deh_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/doom/deh_misc.h -------------------------------------------------------------------------------- /src/doom/deh_ptr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/doom/deh_ptr.c -------------------------------------------------------------------------------- /src/doom/deh_sound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/doom/deh_sound.c -------------------------------------------------------------------------------- /src/doom/deh_thing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/doom/deh_thing.c -------------------------------------------------------------------------------- /src/doom/deh_weapon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/doom/deh_weapon.c -------------------------------------------------------------------------------- /src/doom/doomdef.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/doom/doomdef.c -------------------------------------------------------------------------------- /src/doom/doomdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/doom/doomdef.h -------------------------------------------------------------------------------- /src/doom/doomstat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/doom/doomstat.c -------------------------------------------------------------------------------- /src/doom/doomstat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/doom/doomstat.h -------------------------------------------------------------------------------- /src/doom/dstrings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/doom/dstrings.c -------------------------------------------------------------------------------- /src/doom/dstrings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/doom/dstrings.h -------------------------------------------------------------------------------- /src/doom/f_finale.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/doom/f_finale.c -------------------------------------------------------------------------------- /src/doom/f_finale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/doom/f_finale.h -------------------------------------------------------------------------------- /src/doom/f_wipe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/doom/f_wipe.c -------------------------------------------------------------------------------- /src/doom/f_wipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/doom/f_wipe.h -------------------------------------------------------------------------------- /src/doom/g_game.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/doom/g_game.c -------------------------------------------------------------------------------- /src/doom/g_game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/doom/g_game.h -------------------------------------------------------------------------------- /src/doom/icon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/doom/icon.c -------------------------------------------------------------------------------- /src/doom/info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/doom/info.c -------------------------------------------------------------------------------- /src/doom/info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/doom/info.h -------------------------------------------------------------------------------- /src/doom/m_menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/doom/m_menu.c -------------------------------------------------------------------------------- /src/doom/m_menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/doom/m_menu.h -------------------------------------------------------------------------------- /src/doom/m_random.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/doom/m_random.c -------------------------------------------------------------------------------- /src/doom/m_random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/doom/m_random.h -------------------------------------------------------------------------------- /src/doom/p_ceilng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/doom/p_ceilng.c -------------------------------------------------------------------------------- /src/doom/p_doors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/doom/p_doors.c -------------------------------------------------------------------------------- /src/doom/p_enemy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/doom/p_enemy.c -------------------------------------------------------------------------------- /src/doom/p_floor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/doom/p_floor.c -------------------------------------------------------------------------------- /src/doom/p_inter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/doom/p_inter.c -------------------------------------------------------------------------------- /src/doom/p_lights.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/doom/p_lights.c -------------------------------------------------------------------------------- /src/doom/p_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/doom/p_local.h -------------------------------------------------------------------------------- /src/doom/p_map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/doom/p_map.c -------------------------------------------------------------------------------- /src/doom/p_maputl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/doom/p_maputl.c -------------------------------------------------------------------------------- /src/doom/p_mobj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/doom/p_mobj.c -------------------------------------------------------------------------------- /src/doom/p_plats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/doom/p_plats.c -------------------------------------------------------------------------------- /src/doom/p_pspr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/doom/p_pspr.c -------------------------------------------------------------------------------- /src/doom/p_saveg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/doom/p_saveg.c -------------------------------------------------------------------------------- /src/doom/p_setup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/doom/p_setup.c -------------------------------------------------------------------------------- /src/doom/p_sight.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/doom/p_sight.c -------------------------------------------------------------------------------- /src/doom/p_spec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/doom/p_spec.c -------------------------------------------------------------------------------- /src/doom/p_switch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/doom/p_switch.c -------------------------------------------------------------------------------- /src/doom/p_telept.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/doom/p_telept.c -------------------------------------------------------------------------------- /src/doom/p_tick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/doom/p_tick.c -------------------------------------------------------------------------------- /src/doom/p_user.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/doom/p_user.c -------------------------------------------------------------------------------- /src/doom/r_bsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/doom/r_bsp.c -------------------------------------------------------------------------------- /src/doom/r_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/doom/r_data.c -------------------------------------------------------------------------------- /src/doom/r_draw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/doom/r_draw.c -------------------------------------------------------------------------------- /src/doom/r_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/doom/r_local.h -------------------------------------------------------------------------------- /src/doom/r_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/doom/r_main.c -------------------------------------------------------------------------------- /src/doom/r_plane.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/doom/r_plane.c -------------------------------------------------------------------------------- /src/doom/r_segs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/doom/r_segs.c -------------------------------------------------------------------------------- /src/doom/r_things.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/doom/r_things.c -------------------------------------------------------------------------------- /src/doom/s_sound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/doom/s_sound.c -------------------------------------------------------------------------------- /src/doom/s_sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/doom/s_sound.h -------------------------------------------------------------------------------- /src/doom/sounds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/doom/sounds.c -------------------------------------------------------------------------------- /src/doom/sounds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/doom/sounds.h -------------------------------------------------------------------------------- /src/doom/st_bar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/doom/st_bar.c -------------------------------------------------------------------------------- /src/doom/st_bar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/doom/st_bar.h -------------------------------------------------------------------------------- /src/doom/statdump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/doom/statdump.c -------------------------------------------------------------------------------- /src/doom/statdump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/doom/statdump.h -------------------------------------------------------------------------------- /src/doom/wi_stuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/doom/wi_stuff.c -------------------------------------------------------------------------------- /src/doom/wi_stuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/doom/wi_stuff.h -------------------------------------------------------------------------------- /src/doomkeys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/doomkeys.h -------------------------------------------------------------------------------- /src/doomtype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/doomtype.h -------------------------------------------------------------------------------- /src/gusconf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/gusconf.c -------------------------------------------------------------------------------- /src/gusconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/gusconf.h -------------------------------------------------------------------------------- /src/heretic-res.rc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/heretic-res.rc.in -------------------------------------------------------------------------------- /src/heretic/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/heretic/.gitignore -------------------------------------------------------------------------------- /src/heretic/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/heretic/CMakeLists.txt -------------------------------------------------------------------------------- /src/heretic/am_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/heretic/am_data.h -------------------------------------------------------------------------------- /src/heretic/am_map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/heretic/am_map.c -------------------------------------------------------------------------------- /src/heretic/am_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/heretic/am_map.h -------------------------------------------------------------------------------- /src/heretic/crlfunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/heretic/crlfunc.c -------------------------------------------------------------------------------- /src/heretic/crlfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/heretic/crlfunc.h -------------------------------------------------------------------------------- /src/heretic/ct_chat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/heretic/ct_chat.c -------------------------------------------------------------------------------- /src/heretic/ct_chat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/heretic/ct_chat.h -------------------------------------------------------------------------------- /src/heretic/d_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/heretic/d_main.c -------------------------------------------------------------------------------- /src/heretic/d_net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/heretic/d_net.c -------------------------------------------------------------------------------- /src/heretic/deh_ammo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/heretic/deh_ammo.c -------------------------------------------------------------------------------- /src/heretic/deh_frame.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/heretic/deh_frame.c -------------------------------------------------------------------------------- /src/heretic/deh_htext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/heretic/deh_htext.c -------------------------------------------------------------------------------- /src/heretic/deh_htic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/heretic/deh_htic.c -------------------------------------------------------------------------------- /src/heretic/deh_htic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/heretic/deh_htic.h -------------------------------------------------------------------------------- /src/heretic/deh_sound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/heretic/deh_sound.c -------------------------------------------------------------------------------- /src/heretic/deh_thing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/heretic/deh_thing.c -------------------------------------------------------------------------------- /src/heretic/deh_weapon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/heretic/deh_weapon.c -------------------------------------------------------------------------------- /src/heretic/doomdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/heretic/doomdata.h -------------------------------------------------------------------------------- /src/heretic/doomdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/heretic/doomdef.h -------------------------------------------------------------------------------- /src/heretic/dstrings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/heretic/dstrings.h -------------------------------------------------------------------------------- /src/heretic/f_finale.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/heretic/f_finale.c -------------------------------------------------------------------------------- /src/heretic/g_game.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/heretic/g_game.c -------------------------------------------------------------------------------- /src/heretic/icon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/heretic/icon.c -------------------------------------------------------------------------------- /src/heretic/in_lude.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/heretic/in_lude.c -------------------------------------------------------------------------------- /src/heretic/info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/heretic/info.c -------------------------------------------------------------------------------- /src/heretic/info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/heretic/info.h -------------------------------------------------------------------------------- /src/heretic/m_random.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/heretic/m_random.c -------------------------------------------------------------------------------- /src/heretic/m_random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/heretic/m_random.h -------------------------------------------------------------------------------- /src/heretic/mn_menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/heretic/mn_menu.c -------------------------------------------------------------------------------- /src/heretic/p_action.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/heretic/p_action.h -------------------------------------------------------------------------------- /src/heretic/p_ceilng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/heretic/p_ceilng.c -------------------------------------------------------------------------------- /src/heretic/p_doors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/heretic/p_doors.c -------------------------------------------------------------------------------- /src/heretic/p_enemy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/heretic/p_enemy.c -------------------------------------------------------------------------------- /src/heretic/p_floor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/heretic/p_floor.c -------------------------------------------------------------------------------- /src/heretic/p_inter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/heretic/p_inter.c -------------------------------------------------------------------------------- /src/heretic/p_lights.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/heretic/p_lights.c -------------------------------------------------------------------------------- /src/heretic/p_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/heretic/p_local.h -------------------------------------------------------------------------------- /src/heretic/p_map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/heretic/p_map.c -------------------------------------------------------------------------------- /src/heretic/p_maputl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/heretic/p_maputl.c -------------------------------------------------------------------------------- /src/heretic/p_mobj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/heretic/p_mobj.c -------------------------------------------------------------------------------- /src/heretic/p_plats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/heretic/p_plats.c -------------------------------------------------------------------------------- /src/heretic/p_pspr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/heretic/p_pspr.c -------------------------------------------------------------------------------- /src/heretic/p_saveg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/heretic/p_saveg.c -------------------------------------------------------------------------------- /src/heretic/p_setup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/heretic/p_setup.c -------------------------------------------------------------------------------- /src/heretic/p_sight.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/heretic/p_sight.c -------------------------------------------------------------------------------- /src/heretic/p_spec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/heretic/p_spec.c -------------------------------------------------------------------------------- /src/heretic/p_spec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/heretic/p_spec.h -------------------------------------------------------------------------------- /src/heretic/p_switch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/heretic/p_switch.c -------------------------------------------------------------------------------- /src/heretic/p_telept.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/heretic/p_telept.c -------------------------------------------------------------------------------- /src/heretic/p_tick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/heretic/p_tick.c -------------------------------------------------------------------------------- /src/heretic/p_user.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/heretic/p_user.c -------------------------------------------------------------------------------- /src/heretic/r_bsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/heretic/r_bsp.c -------------------------------------------------------------------------------- /src/heretic/r_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/heretic/r_data.c -------------------------------------------------------------------------------- /src/heretic/r_draw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/heretic/r_draw.c -------------------------------------------------------------------------------- /src/heretic/r_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/heretic/r_local.h -------------------------------------------------------------------------------- /src/heretic/r_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/heretic/r_main.c -------------------------------------------------------------------------------- /src/heretic/r_plane.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/heretic/r_plane.c -------------------------------------------------------------------------------- /src/heretic/r_segs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/heretic/r_segs.c -------------------------------------------------------------------------------- /src/heretic/r_things.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/heretic/r_things.c -------------------------------------------------------------------------------- /src/heretic/s_sound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/heretic/s_sound.c -------------------------------------------------------------------------------- /src/heretic/s_sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/heretic/s_sound.h -------------------------------------------------------------------------------- /src/heretic/sb_bar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/heretic/sb_bar.c -------------------------------------------------------------------------------- /src/heretic/sounds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/heretic/sounds.c -------------------------------------------------------------------------------- /src/heretic/sounds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/heretic/sounds.h -------------------------------------------------------------------------------- /src/i_endoom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/i_endoom.c -------------------------------------------------------------------------------- /src/i_endoom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/i_endoom.h -------------------------------------------------------------------------------- /src/i_flmusic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/i_flmusic.c -------------------------------------------------------------------------------- /src/i_glob.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/i_glob.c -------------------------------------------------------------------------------- /src/i_glob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/i_glob.h -------------------------------------------------------------------------------- /src/i_input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/i_input.c -------------------------------------------------------------------------------- /src/i_input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/i_input.h -------------------------------------------------------------------------------- /src/i_joystick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/i_joystick.c -------------------------------------------------------------------------------- /src/i_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/i_joystick.h -------------------------------------------------------------------------------- /src/i_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/i_main.c -------------------------------------------------------------------------------- /src/i_musicpack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/i_musicpack.c -------------------------------------------------------------------------------- /src/i_oplmusic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/i_oplmusic.c -------------------------------------------------------------------------------- /src/i_pcsound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/i_pcsound.c -------------------------------------------------------------------------------- /src/i_sdlmusic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/i_sdlmusic.c -------------------------------------------------------------------------------- /src/i_sdlsound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/i_sdlsound.c -------------------------------------------------------------------------------- /src/i_sound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/i_sound.c -------------------------------------------------------------------------------- /src/i_sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/i_sound.h -------------------------------------------------------------------------------- /src/i_swap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/i_swap.h -------------------------------------------------------------------------------- /src/i_system.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/i_system.c -------------------------------------------------------------------------------- /src/i_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/i_system.h -------------------------------------------------------------------------------- /src/i_timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/i_timer.c -------------------------------------------------------------------------------- /src/i_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/i_timer.h -------------------------------------------------------------------------------- /src/i_video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/i_video.c -------------------------------------------------------------------------------- /src/i_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/i_video.h -------------------------------------------------------------------------------- /src/i_winmusic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/i_winmusic.c -------------------------------------------------------------------------------- /src/m_argv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/m_argv.c -------------------------------------------------------------------------------- /src/m_argv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/m_argv.h -------------------------------------------------------------------------------- /src/m_bbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/m_bbox.c -------------------------------------------------------------------------------- /src/m_bbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/m_bbox.h -------------------------------------------------------------------------------- /src/m_cheat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/m_cheat.c -------------------------------------------------------------------------------- /src/m_cheat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/m_cheat.h -------------------------------------------------------------------------------- /src/m_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/m_config.c -------------------------------------------------------------------------------- /src/m_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/m_config.h -------------------------------------------------------------------------------- /src/m_controls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/m_controls.c -------------------------------------------------------------------------------- /src/m_controls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/m_controls.h -------------------------------------------------------------------------------- /src/m_fixed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/m_fixed.c -------------------------------------------------------------------------------- /src/m_fixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/m_fixed.h -------------------------------------------------------------------------------- /src/m_misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/m_misc.c -------------------------------------------------------------------------------- /src/m_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/m_misc.h -------------------------------------------------------------------------------- /src/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/manifest.xml -------------------------------------------------------------------------------- /src/memio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/memio.c -------------------------------------------------------------------------------- /src/memio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/memio.h -------------------------------------------------------------------------------- /src/midifallback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/midifallback.c -------------------------------------------------------------------------------- /src/midifallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/midifallback.h -------------------------------------------------------------------------------- /src/midifile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/midifile.c -------------------------------------------------------------------------------- /src/midifile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/midifile.h -------------------------------------------------------------------------------- /src/mus2mid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/mus2mid.c -------------------------------------------------------------------------------- /src/mus2mid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/mus2mid.h -------------------------------------------------------------------------------- /src/net_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/net_client.c -------------------------------------------------------------------------------- /src/net_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/net_client.h -------------------------------------------------------------------------------- /src/net_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/net_common.c -------------------------------------------------------------------------------- /src/net_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/net_common.h -------------------------------------------------------------------------------- /src/net_dedicated.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/net_dedicated.c -------------------------------------------------------------------------------- /src/net_dedicated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/net_dedicated.h -------------------------------------------------------------------------------- /src/net_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/net_defs.h -------------------------------------------------------------------------------- /src/net_gui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/net_gui.c -------------------------------------------------------------------------------- /src/net_gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/net_gui.h -------------------------------------------------------------------------------- /src/net_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/net_io.c -------------------------------------------------------------------------------- /src/net_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/net_io.h -------------------------------------------------------------------------------- /src/net_loop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/net_loop.c -------------------------------------------------------------------------------- /src/net_loop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/net_loop.h -------------------------------------------------------------------------------- /src/net_packet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/net_packet.c -------------------------------------------------------------------------------- /src/net_packet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/net_packet.h -------------------------------------------------------------------------------- /src/net_petname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/net_petname.c -------------------------------------------------------------------------------- /src/net_petname.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/net_petname.h -------------------------------------------------------------------------------- /src/net_query.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/net_query.c -------------------------------------------------------------------------------- /src/net_query.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/net_query.h -------------------------------------------------------------------------------- /src/net_sdl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/net_sdl.c -------------------------------------------------------------------------------- /src/net_sdl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/net_sdl.h -------------------------------------------------------------------------------- /src/net_server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/net_server.c -------------------------------------------------------------------------------- /src/net_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/net_server.h -------------------------------------------------------------------------------- /src/net_structrw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/net_structrw.c -------------------------------------------------------------------------------- /src/net_structrw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/net_structrw.h -------------------------------------------------------------------------------- /src/resource.rc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/resource.rc.in -------------------------------------------------------------------------------- /src/setup-res.rc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/setup-res.rc.in -------------------------------------------------------------------------------- /src/setup/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/setup/CMakeLists.txt -------------------------------------------------------------------------------- /src/setup/execute.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/setup/execute.c -------------------------------------------------------------------------------- /src/setup/execute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/setup/execute.h -------------------------------------------------------------------------------- /src/setup/mainmenu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/setup/mainmenu.c -------------------------------------------------------------------------------- /src/setup/mode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/setup/mode.c -------------------------------------------------------------------------------- /src/setup/mode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/setup/mode.h -------------------------------------------------------------------------------- /src/setup/multiplayer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/setup/multiplayer.c -------------------------------------------------------------------------------- /src/setup/multiplayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/setup/multiplayer.h -------------------------------------------------------------------------------- /src/setup/setup-manifest.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/setup/setup-manifest.xml.in -------------------------------------------------------------------------------- /src/setup/setup.desktop.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/setup/setup.desktop.in -------------------------------------------------------------------------------- /src/setup/setup_icon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/setup/setup_icon.c -------------------------------------------------------------------------------- /src/sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/sha1.c -------------------------------------------------------------------------------- /src/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/sha1.h -------------------------------------------------------------------------------- /src/tables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/tables.c -------------------------------------------------------------------------------- /src/tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/tables.h -------------------------------------------------------------------------------- /src/v_diskicon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/v_diskicon.c -------------------------------------------------------------------------------- /src/v_diskicon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/v_diskicon.h -------------------------------------------------------------------------------- /src/v_patch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/v_patch.h -------------------------------------------------------------------------------- /src/v_trans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/v_trans.c -------------------------------------------------------------------------------- /src/v_trans.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/v_trans.h -------------------------------------------------------------------------------- /src/v_video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/v_video.c -------------------------------------------------------------------------------- /src/v_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/v_video.h -------------------------------------------------------------------------------- /src/w_checksum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/w_checksum.c -------------------------------------------------------------------------------- /src/w_checksum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/w_checksum.h -------------------------------------------------------------------------------- /src/w_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/w_file.c -------------------------------------------------------------------------------- /src/w_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/w_file.h -------------------------------------------------------------------------------- /src/w_file_posix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/w_file_posix.c -------------------------------------------------------------------------------- /src/w_file_stdc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/w_file_stdc.c -------------------------------------------------------------------------------- /src/w_file_win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/w_file_win32.c -------------------------------------------------------------------------------- /src/w_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/w_main.c -------------------------------------------------------------------------------- /src/w_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/w_main.h -------------------------------------------------------------------------------- /src/w_merge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/w_merge.c -------------------------------------------------------------------------------- /src/w_merge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/w_merge.h -------------------------------------------------------------------------------- /src/w_wad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/w_wad.c -------------------------------------------------------------------------------- /src/w_wad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/w_wad.h -------------------------------------------------------------------------------- /src/z_native.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/z_native.c -------------------------------------------------------------------------------- /src/z_zone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/z_zone.c -------------------------------------------------------------------------------- /src/z_zone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/src/z_zone.h -------------------------------------------------------------------------------- /textscreen/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/textscreen/CMakeLists.txt -------------------------------------------------------------------------------- /textscreen/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/textscreen/Doxyfile -------------------------------------------------------------------------------- /textscreen/fonts/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/textscreen/fonts/README -------------------------------------------------------------------------------- /textscreen/fonts/codepage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/textscreen/fonts/codepage.h -------------------------------------------------------------------------------- /textscreen/fonts/convert-font: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/textscreen/fonts/convert-font -------------------------------------------------------------------------------- /textscreen/fonts/large.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/textscreen/fonts/large.h -------------------------------------------------------------------------------- /textscreen/fonts/large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/textscreen/fonts/large.png -------------------------------------------------------------------------------- /textscreen/fonts/normal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/textscreen/fonts/normal.h -------------------------------------------------------------------------------- /textscreen/fonts/normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/textscreen/fonts/normal.png -------------------------------------------------------------------------------- /textscreen/fonts/small.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/textscreen/fonts/small.h -------------------------------------------------------------------------------- /textscreen/fonts/small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/textscreen/fonts/small.png -------------------------------------------------------------------------------- /textscreen/textscreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/textscreen/textscreen.h -------------------------------------------------------------------------------- /textscreen/txt_button.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/textscreen/txt_button.c -------------------------------------------------------------------------------- /textscreen/txt_button.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/textscreen/txt_button.h -------------------------------------------------------------------------------- /textscreen/txt_checkbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/textscreen/txt_checkbox.c -------------------------------------------------------------------------------- /textscreen/txt_checkbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/textscreen/txt_checkbox.h -------------------------------------------------------------------------------- /textscreen/txt_conditional.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/textscreen/txt_conditional.c -------------------------------------------------------------------------------- /textscreen/txt_conditional.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/textscreen/txt_conditional.h -------------------------------------------------------------------------------- /textscreen/txt_desktop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/textscreen/txt_desktop.c -------------------------------------------------------------------------------- /textscreen/txt_desktop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/textscreen/txt_desktop.h -------------------------------------------------------------------------------- /textscreen/txt_dropdown.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/textscreen/txt_dropdown.c -------------------------------------------------------------------------------- /textscreen/txt_dropdown.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/textscreen/txt_dropdown.h -------------------------------------------------------------------------------- /textscreen/txt_fileselect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/textscreen/txt_fileselect.c -------------------------------------------------------------------------------- /textscreen/txt_fileselect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/textscreen/txt_fileselect.h -------------------------------------------------------------------------------- /textscreen/txt_gui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/textscreen/txt_gui.c -------------------------------------------------------------------------------- /textscreen/txt_gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/textscreen/txt_gui.h -------------------------------------------------------------------------------- /textscreen/txt_inputbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/textscreen/txt_inputbox.c -------------------------------------------------------------------------------- /textscreen/txt_inputbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/textscreen/txt_inputbox.h -------------------------------------------------------------------------------- /textscreen/txt_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/textscreen/txt_io.c -------------------------------------------------------------------------------- /textscreen/txt_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/textscreen/txt_io.h -------------------------------------------------------------------------------- /textscreen/txt_label.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/textscreen/txt_label.c -------------------------------------------------------------------------------- /textscreen/txt_label.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/textscreen/txt_label.h -------------------------------------------------------------------------------- /textscreen/txt_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/textscreen/txt_main.h -------------------------------------------------------------------------------- /textscreen/txt_radiobutton.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/textscreen/txt_radiobutton.c -------------------------------------------------------------------------------- /textscreen/txt_radiobutton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/textscreen/txt_radiobutton.h -------------------------------------------------------------------------------- /textscreen/txt_scrollpane.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/textscreen/txt_scrollpane.c -------------------------------------------------------------------------------- /textscreen/txt_scrollpane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/textscreen/txt_scrollpane.h -------------------------------------------------------------------------------- /textscreen/txt_sdl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/textscreen/txt_sdl.c -------------------------------------------------------------------------------- /textscreen/txt_sdl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/textscreen/txt_sdl.h -------------------------------------------------------------------------------- /textscreen/txt_separator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/textscreen/txt_separator.c -------------------------------------------------------------------------------- /textscreen/txt_separator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/textscreen/txt_separator.h -------------------------------------------------------------------------------- /textscreen/txt_spinctrl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/textscreen/txt_spinctrl.c -------------------------------------------------------------------------------- /textscreen/txt_spinctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/textscreen/txt_spinctrl.h -------------------------------------------------------------------------------- /textscreen/txt_strut.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/textscreen/txt_strut.c -------------------------------------------------------------------------------- /textscreen/txt_strut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/textscreen/txt_strut.h -------------------------------------------------------------------------------- /textscreen/txt_table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/textscreen/txt_table.c -------------------------------------------------------------------------------- /textscreen/txt_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/textscreen/txt_table.h -------------------------------------------------------------------------------- /textscreen/txt_utf8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/textscreen/txt_utf8.c -------------------------------------------------------------------------------- /textscreen/txt_utf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/textscreen/txt_utf8.h -------------------------------------------------------------------------------- /textscreen/txt_widget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/textscreen/txt_widget.c -------------------------------------------------------------------------------- /textscreen/txt_widget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/textscreen/txt_widget.h -------------------------------------------------------------------------------- /textscreen/txt_window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/textscreen/txt_window.c -------------------------------------------------------------------------------- /textscreen/txt_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/textscreen/txt_window.h -------------------------------------------------------------------------------- /textscreen/txt_window_action.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/textscreen/txt_window_action.c -------------------------------------------------------------------------------- /textscreen/txt_window_action.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/textscreen/txt_window_action.h -------------------------------------------------------------------------------- /vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/vcpkg.json -------------------------------------------------------------------------------- /win32/SDL2-2.32.10/.git-hash: -------------------------------------------------------------------------------- 1 | 5d249570393f7a37e037abf22cd6012a4cc56a71 2 | -------------------------------------------------------------------------------- /win32/SDL2-2.32.10/BUGS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2-2.32.10/BUGS.txt -------------------------------------------------------------------------------- /win32/SDL2-2.32.10/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2-2.32.10/LICENSE.txt -------------------------------------------------------------------------------- /win32/SDL2-2.32.10/README-SDL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2-2.32.10/README-SDL.txt -------------------------------------------------------------------------------- /win32/SDL2-2.32.10/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2-2.32.10/README.md -------------------------------------------------------------------------------- /win32/SDL2-2.32.10/WhatsNew.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2-2.32.10/WhatsNew.txt -------------------------------------------------------------------------------- /win32/SDL2-2.32.10/cmake/sdl2-config-version.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2-2.32.10/cmake/sdl2-config-version.cmake -------------------------------------------------------------------------------- /win32/SDL2-2.32.10/cmake/sdl2-config.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2-2.32.10/cmake/sdl2-config.cmake -------------------------------------------------------------------------------- /win32/SDL2-2.32.10/docs/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2-2.32.10/docs/CONTRIBUTING.md -------------------------------------------------------------------------------- /win32/SDL2-2.32.10/docs/README-android.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2-2.32.10/docs/README-android.md -------------------------------------------------------------------------------- /win32/SDL2-2.32.10/docs/README-cmake.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2-2.32.10/docs/README-cmake.md -------------------------------------------------------------------------------- /win32/SDL2-2.32.10/docs/README-directfb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2-2.32.10/docs/README-directfb.md -------------------------------------------------------------------------------- /win32/SDL2-2.32.10/docs/README-dynapi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2-2.32.10/docs/README-dynapi.md -------------------------------------------------------------------------------- /win32/SDL2-2.32.10/docs/README-emscripten.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2-2.32.10/docs/README-emscripten.md -------------------------------------------------------------------------------- /win32/SDL2-2.32.10/docs/README-gdk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2-2.32.10/docs/README-gdk.md -------------------------------------------------------------------------------- /win32/SDL2-2.32.10/docs/README-gesture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2-2.32.10/docs/README-gesture.md -------------------------------------------------------------------------------- /win32/SDL2-2.32.10/docs/README-git.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2-2.32.10/docs/README-git.md -------------------------------------------------------------------------------- /win32/SDL2-2.32.10/docs/README-hg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2-2.32.10/docs/README-hg.md -------------------------------------------------------------------------------- /win32/SDL2-2.32.10/docs/README-ios.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2-2.32.10/docs/README-ios.md -------------------------------------------------------------------------------- /win32/SDL2-2.32.10/docs/README-kmsbsd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2-2.32.10/docs/README-kmsbsd.md -------------------------------------------------------------------------------- /win32/SDL2-2.32.10/docs/README-linux.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2-2.32.10/docs/README-linux.md -------------------------------------------------------------------------------- /win32/SDL2-2.32.10/docs/README-macos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2-2.32.10/docs/README-macos.md -------------------------------------------------------------------------------- /win32/SDL2-2.32.10/docs/README-n3ds.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2-2.32.10/docs/README-n3ds.md -------------------------------------------------------------------------------- /win32/SDL2-2.32.10/docs/README-nacl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2-2.32.10/docs/README-nacl.md -------------------------------------------------------------------------------- /win32/SDL2-2.32.10/docs/README-ngage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2-2.32.10/docs/README-ngage.md -------------------------------------------------------------------------------- /win32/SDL2-2.32.10/docs/README-os2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2-2.32.10/docs/README-os2.md -------------------------------------------------------------------------------- /win32/SDL2-2.32.10/docs/README-pandora.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2-2.32.10/docs/README-pandora.md -------------------------------------------------------------------------------- /win32/SDL2-2.32.10/docs/README-platforms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2-2.32.10/docs/README-platforms.md -------------------------------------------------------------------------------- /win32/SDL2-2.32.10/docs/README-porting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2-2.32.10/docs/README-porting.md -------------------------------------------------------------------------------- /win32/SDL2-2.32.10/docs/README-ps2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2-2.32.10/docs/README-ps2.md -------------------------------------------------------------------------------- /win32/SDL2-2.32.10/docs/README-psp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2-2.32.10/docs/README-psp.md -------------------------------------------------------------------------------- /win32/SDL2-2.32.10/docs/README-raspberrypi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2-2.32.10/docs/README-raspberrypi.md -------------------------------------------------------------------------------- /win32/SDL2-2.32.10/docs/README-riscos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2-2.32.10/docs/README-riscos.md -------------------------------------------------------------------------------- /win32/SDL2-2.32.10/docs/README-touch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2-2.32.10/docs/README-touch.md -------------------------------------------------------------------------------- /win32/SDL2-2.32.10/docs/README-versions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2-2.32.10/docs/README-versions.md -------------------------------------------------------------------------------- /win32/SDL2-2.32.10/docs/README-visualc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2-2.32.10/docs/README-visualc.md -------------------------------------------------------------------------------- /win32/SDL2-2.32.10/docs/README-vita.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2-2.32.10/docs/README-vita.md -------------------------------------------------------------------------------- /win32/SDL2-2.32.10/docs/README-wince.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2-2.32.10/docs/README-wince.md -------------------------------------------------------------------------------- /win32/SDL2-2.32.10/docs/README-windows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2-2.32.10/docs/README-windows.md -------------------------------------------------------------------------------- /win32/SDL2-2.32.10/docs/README-winrt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2-2.32.10/docs/README-winrt.md -------------------------------------------------------------------------------- /win32/SDL2-2.32.10/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2-2.32.10/docs/README.md -------------------------------------------------------------------------------- /win32/SDL2-2.32.10/docs/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2-2.32.10/docs/doxyfile -------------------------------------------------------------------------------- /win32/SDL2-2.32.10/docs/release_checklist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2-2.32.10/docs/release_checklist.md -------------------------------------------------------------------------------- /win32/SDL2-2.32.10/include/SDL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2-2.32.10/include/SDL.h -------------------------------------------------------------------------------- /win32/SDL2-2.32.10/include/SDL_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2-2.32.10/include/SDL_assert.h -------------------------------------------------------------------------------- /win32/SDL2-2.32.10/include/SDL_atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2-2.32.10/include/SDL_atomic.h -------------------------------------------------------------------------------- /win32/SDL2-2.32.10/include/SDL_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2-2.32.10/include/SDL_audio.h -------------------------------------------------------------------------------- /win32/SDL2-2.32.10/include/SDL_bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2-2.32.10/include/SDL_bits.h -------------------------------------------------------------------------------- /win32/SDL2-2.32.10/include/SDL_blendmode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2-2.32.10/include/SDL_blendmode.h -------------------------------------------------------------------------------- /win32/SDL2-2.32.10/include/SDL_clipboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2-2.32.10/include/SDL_clipboard.h -------------------------------------------------------------------------------- /win32/SDL2-2.32.10/include/SDL_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2-2.32.10/include/SDL_config.h -------------------------------------------------------------------------------- /win32/SDL2-2.32.10/include/SDL_config_android.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2-2.32.10/include/SDL_config_android.h -------------------------------------------------------------------------------- /win32/SDL2-2.32.10/include/SDL_config_emscripten.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2-2.32.10/include/SDL_config_emscripten.h -------------------------------------------------------------------------------- /win32/SDL2-2.32.10/include/SDL_config_iphoneos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2-2.32.10/include/SDL_config_iphoneos.h -------------------------------------------------------------------------------- /win32/SDL2-2.32.10/include/SDL_config_macosx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2-2.32.10/include/SDL_config_macosx.h -------------------------------------------------------------------------------- /win32/SDL2-2.32.10/include/SDL_config_minimal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2-2.32.10/include/SDL_config_minimal.h -------------------------------------------------------------------------------- /win32/SDL2-2.32.10/include/SDL_config_ngage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2-2.32.10/include/SDL_config_ngage.h -------------------------------------------------------------------------------- /win32/SDL2-2.32.10/include/SDL_config_os2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2-2.32.10/include/SDL_config_os2.h -------------------------------------------------------------------------------- /win32/SDL2-2.32.10/include/SDL_config_pandora.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2-2.32.10/include/SDL_config_pandora.h -------------------------------------------------------------------------------- /win32/SDL2-2.32.10/include/SDL_config_windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2-2.32.10/include/SDL_config_windows.h -------------------------------------------------------------------------------- /win32/SDL2-2.32.10/include/SDL_config_wingdk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2-2.32.10/include/SDL_config_wingdk.h -------------------------------------------------------------------------------- /win32/SDL2-2.32.10/include/SDL_config_winrt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2-2.32.10/include/SDL_config_winrt.h -------------------------------------------------------------------------------- /win32/SDL2-2.32.10/include/SDL_config_xbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2-2.32.10/include/SDL_config_xbox.h -------------------------------------------------------------------------------- /win32/SDL2-2.32.10/include/SDL_copying.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2-2.32.10/include/SDL_copying.h -------------------------------------------------------------------------------- /win32/SDL2-2.32.10/include/SDL_cpuinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2-2.32.10/include/SDL_cpuinfo.h -------------------------------------------------------------------------------- /win32/SDL2-2.32.10/include/SDL_egl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2-2.32.10/include/SDL_egl.h -------------------------------------------------------------------------------- /win32/SDL2-2.32.10/include/SDL_endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2-2.32.10/include/SDL_endian.h -------------------------------------------------------------------------------- /win32/SDL2-2.32.10/include/SDL_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2-2.32.10/include/SDL_error.h -------------------------------------------------------------------------------- /win32/SDL2-2.32.10/include/SDL_events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2-2.32.10/include/SDL_events.h -------------------------------------------------------------------------------- /win32/SDL2-2.32.10/include/SDL_filesystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2-2.32.10/include/SDL_filesystem.h -------------------------------------------------------------------------------- /win32/SDL2-2.32.10/include/SDL_gamecontroller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2-2.32.10/include/SDL_gamecontroller.h -------------------------------------------------------------------------------- /win32/SDL2-2.32.10/include/SDL_gesture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2-2.32.10/include/SDL_gesture.h -------------------------------------------------------------------------------- /win32/SDL2-2.32.10/include/SDL_guid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2-2.32.10/include/SDL_guid.h -------------------------------------------------------------------------------- /win32/SDL2-2.32.10/include/SDL_haptic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2-2.32.10/include/SDL_haptic.h -------------------------------------------------------------------------------- /win32/SDL2-2.32.10/include/SDL_hidapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2-2.32.10/include/SDL_hidapi.h -------------------------------------------------------------------------------- /win32/SDL2-2.32.10/include/SDL_hints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2-2.32.10/include/SDL_hints.h -------------------------------------------------------------------------------- /win32/SDL2-2.32.10/include/SDL_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2-2.32.10/include/SDL_joystick.h -------------------------------------------------------------------------------- /win32/SDL2-2.32.10/include/SDL_keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2-2.32.10/include/SDL_keyboard.h -------------------------------------------------------------------------------- /win32/SDL2-2.32.10/include/SDL_keycode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2-2.32.10/include/SDL_keycode.h -------------------------------------------------------------------------------- /win32/SDL2-2.32.10/include/SDL_loadso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2-2.32.10/include/SDL_loadso.h -------------------------------------------------------------------------------- /win32/SDL2-2.32.10/include/SDL_locale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2-2.32.10/include/SDL_locale.h -------------------------------------------------------------------------------- /win32/SDL2-2.32.10/include/SDL_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2-2.32.10/include/SDL_log.h -------------------------------------------------------------------------------- /win32/SDL2-2.32.10/include/SDL_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2-2.32.10/include/SDL_main.h -------------------------------------------------------------------------------- /win32/SDL2-2.32.10/include/SDL_messagebox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2-2.32.10/include/SDL_messagebox.h -------------------------------------------------------------------------------- /win32/SDL2-2.32.10/include/SDL_metal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2-2.32.10/include/SDL_metal.h -------------------------------------------------------------------------------- /win32/SDL2-2.32.10/include/SDL_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2-2.32.10/include/SDL_misc.h -------------------------------------------------------------------------------- /win32/SDL2-2.32.10/include/SDL_mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2-2.32.10/include/SDL_mouse.h -------------------------------------------------------------------------------- /win32/SDL2-2.32.10/include/SDL_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2-2.32.10/include/SDL_mutex.h -------------------------------------------------------------------------------- /win32/SDL2-2.32.10/include/SDL_name.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2-2.32.10/include/SDL_name.h -------------------------------------------------------------------------------- /win32/SDL2-2.32.10/include/SDL_opengl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2-2.32.10/include/SDL_opengl.h -------------------------------------------------------------------------------- /win32/SDL2-2.32.10/include/SDL_opengl_glext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2-2.32.10/include/SDL_opengl_glext.h -------------------------------------------------------------------------------- /win32/SDL2-2.32.10/include/SDL_opengles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2-2.32.10/include/SDL_opengles.h -------------------------------------------------------------------------------- /win32/SDL2-2.32.10/include/SDL_opengles2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2-2.32.10/include/SDL_opengles2.h -------------------------------------------------------------------------------- /win32/SDL2-2.32.10/include/SDL_opengles2_gl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2-2.32.10/include/SDL_opengles2_gl2.h -------------------------------------------------------------------------------- /win32/SDL2-2.32.10/include/SDL_opengles2_gl2ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2-2.32.10/include/SDL_opengles2_gl2ext.h -------------------------------------------------------------------------------- /win32/SDL2-2.32.10/include/SDL_opengles2_gl2platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2-2.32.10/include/SDL_opengles2_gl2platform.h -------------------------------------------------------------------------------- /win32/SDL2-2.32.10/include/SDL_opengles2_khrplatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2-2.32.10/include/SDL_opengles2_khrplatform.h -------------------------------------------------------------------------------- /win32/SDL2-2.32.10/include/SDL_pixels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2-2.32.10/include/SDL_pixels.h -------------------------------------------------------------------------------- /win32/SDL2-2.32.10/include/SDL_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2-2.32.10/include/SDL_platform.h -------------------------------------------------------------------------------- /win32/SDL2-2.32.10/include/SDL_power.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2-2.32.10/include/SDL_power.h -------------------------------------------------------------------------------- /win32/SDL2-2.32.10/include/SDL_quit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2-2.32.10/include/SDL_quit.h -------------------------------------------------------------------------------- /win32/SDL2-2.32.10/include/SDL_rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2-2.32.10/include/SDL_rect.h -------------------------------------------------------------------------------- /win32/SDL2-2.32.10/include/SDL_render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2-2.32.10/include/SDL_render.h -------------------------------------------------------------------------------- /win32/SDL2-2.32.10/include/SDL_revision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2-2.32.10/include/SDL_revision.h -------------------------------------------------------------------------------- /win32/SDL2-2.32.10/include/SDL_rwops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2-2.32.10/include/SDL_rwops.h -------------------------------------------------------------------------------- /win32/SDL2-2.32.10/include/SDL_scancode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2-2.32.10/include/SDL_scancode.h -------------------------------------------------------------------------------- /win32/SDL2-2.32.10/include/SDL_sensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2-2.32.10/include/SDL_sensor.h -------------------------------------------------------------------------------- /win32/SDL2-2.32.10/include/SDL_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2-2.32.10/include/SDL_shape.h -------------------------------------------------------------------------------- /win32/SDL2-2.32.10/include/SDL_stdinc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2-2.32.10/include/SDL_stdinc.h -------------------------------------------------------------------------------- /win32/SDL2-2.32.10/include/SDL_surface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2-2.32.10/include/SDL_surface.h -------------------------------------------------------------------------------- /win32/SDL2-2.32.10/include/SDL_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2-2.32.10/include/SDL_system.h -------------------------------------------------------------------------------- /win32/SDL2-2.32.10/include/SDL_syswm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2-2.32.10/include/SDL_syswm.h -------------------------------------------------------------------------------- /win32/SDL2-2.32.10/include/SDL_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2-2.32.10/include/SDL_test.h -------------------------------------------------------------------------------- /win32/SDL2-2.32.10/include/SDL_test_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2-2.32.10/include/SDL_test_assert.h -------------------------------------------------------------------------------- /win32/SDL2-2.32.10/include/SDL_test_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2-2.32.10/include/SDL_test_common.h -------------------------------------------------------------------------------- /win32/SDL2-2.32.10/include/SDL_test_compare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2-2.32.10/include/SDL_test_compare.h -------------------------------------------------------------------------------- /win32/SDL2-2.32.10/include/SDL_test_crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2-2.32.10/include/SDL_test_crc32.h -------------------------------------------------------------------------------- /win32/SDL2-2.32.10/include/SDL_test_font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2-2.32.10/include/SDL_test_font.h -------------------------------------------------------------------------------- /win32/SDL2-2.32.10/include/SDL_test_fuzzer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2-2.32.10/include/SDL_test_fuzzer.h -------------------------------------------------------------------------------- /win32/SDL2-2.32.10/include/SDL_test_harness.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2-2.32.10/include/SDL_test_harness.h -------------------------------------------------------------------------------- /win32/SDL2-2.32.10/include/SDL_test_images.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2-2.32.10/include/SDL_test_images.h -------------------------------------------------------------------------------- /win32/SDL2-2.32.10/include/SDL_test_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2-2.32.10/include/SDL_test_log.h -------------------------------------------------------------------------------- /win32/SDL2-2.32.10/include/SDL_test_md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2-2.32.10/include/SDL_test_md5.h -------------------------------------------------------------------------------- /win32/SDL2-2.32.10/include/SDL_test_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2-2.32.10/include/SDL_test_memory.h -------------------------------------------------------------------------------- /win32/SDL2-2.32.10/include/SDL_test_random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2-2.32.10/include/SDL_test_random.h -------------------------------------------------------------------------------- /win32/SDL2-2.32.10/include/SDL_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2-2.32.10/include/SDL_thread.h -------------------------------------------------------------------------------- /win32/SDL2-2.32.10/include/SDL_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2-2.32.10/include/SDL_timer.h -------------------------------------------------------------------------------- /win32/SDL2-2.32.10/include/SDL_touch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2-2.32.10/include/SDL_touch.h -------------------------------------------------------------------------------- /win32/SDL2-2.32.10/include/SDL_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2-2.32.10/include/SDL_types.h -------------------------------------------------------------------------------- /win32/SDL2-2.32.10/include/SDL_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2-2.32.10/include/SDL_version.h -------------------------------------------------------------------------------- /win32/SDL2-2.32.10/include/SDL_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2-2.32.10/include/SDL_video.h -------------------------------------------------------------------------------- /win32/SDL2-2.32.10/include/SDL_vulkan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2-2.32.10/include/SDL_vulkan.h -------------------------------------------------------------------------------- /win32/SDL2-2.32.10/include/begin_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2-2.32.10/include/begin_code.h -------------------------------------------------------------------------------- /win32/SDL2-2.32.10/include/close_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2-2.32.10/include/close_code.h -------------------------------------------------------------------------------- /win32/SDL2-2.32.10/lib/x64/SDL2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2-2.32.10/lib/x64/SDL2.dll -------------------------------------------------------------------------------- /win32/SDL2-2.32.10/lib/x64/SDL2.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2-2.32.10/lib/x64/SDL2.lib -------------------------------------------------------------------------------- /win32/SDL2-2.32.10/lib/x64/SDL2.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2-2.32.10/lib/x64/SDL2.pdb -------------------------------------------------------------------------------- /win32/SDL2-2.32.10/lib/x64/SDL2main.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2-2.32.10/lib/x64/SDL2main.lib -------------------------------------------------------------------------------- /win32/SDL2-2.32.10/lib/x64/SDL2test.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2-2.32.10/lib/x64/SDL2test.lib -------------------------------------------------------------------------------- /win32/SDL2-2.32.10/lib/x86/SDL2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2-2.32.10/lib/x86/SDL2.dll -------------------------------------------------------------------------------- /win32/SDL2-2.32.10/lib/x86/SDL2.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2-2.32.10/lib/x86/SDL2.lib -------------------------------------------------------------------------------- /win32/SDL2-2.32.10/lib/x86/SDL2.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2-2.32.10/lib/x86/SDL2.pdb -------------------------------------------------------------------------------- /win32/SDL2-2.32.10/lib/x86/SDL2main.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2-2.32.10/lib/x86/SDL2main.lib -------------------------------------------------------------------------------- /win32/SDL2-2.32.10/lib/x86/SDL2test.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2-2.32.10/lib/x86/SDL2test.lib -------------------------------------------------------------------------------- /win32/SDL2_mixer-2.8.1/.git-hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2_mixer-2.8.1/.git-hash -------------------------------------------------------------------------------- /win32/SDL2_mixer-2.8.1/CHANGES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2_mixer-2.8.1/CHANGES.txt -------------------------------------------------------------------------------- /win32/SDL2_mixer-2.8.1/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2_mixer-2.8.1/LICENSE.txt -------------------------------------------------------------------------------- /win32/SDL2_mixer-2.8.1/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2_mixer-2.8.1/README.txt -------------------------------------------------------------------------------- /win32/SDL2_mixer-2.8.1/cmake/sdl2_mixer-config-version.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2_mixer-2.8.1/cmake/sdl2_mixer-config-version.cmake -------------------------------------------------------------------------------- /win32/SDL2_mixer-2.8.1/cmake/sdl2_mixer-config.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2_mixer-2.8.1/cmake/sdl2_mixer-config.cmake -------------------------------------------------------------------------------- /win32/SDL2_mixer-2.8.1/include/SDL_mixer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2_mixer-2.8.1/include/SDL_mixer.h -------------------------------------------------------------------------------- /win32/SDL2_mixer-2.8.1/lib/x64/SDL2_mixer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2_mixer-2.8.1/lib/x64/SDL2_mixer.dll -------------------------------------------------------------------------------- /win32/SDL2_mixer-2.8.1/lib/x64/SDL2_mixer.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2_mixer-2.8.1/lib/x64/SDL2_mixer.lib -------------------------------------------------------------------------------- /win32/SDL2_mixer-2.8.1/lib/x64/SDL2_mixer.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2_mixer-2.8.1/lib/x64/SDL2_mixer.pdb -------------------------------------------------------------------------------- /win32/SDL2_mixer-2.8.1/lib/x64/optional/LICENSE.gme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2_mixer-2.8.1/lib/x64/optional/LICENSE.gme.txt -------------------------------------------------------------------------------- /win32/SDL2_mixer-2.8.1/lib/x64/optional/LICENSE.ogg-vorbis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2_mixer-2.8.1/lib/x64/optional/LICENSE.ogg-vorbis.txt -------------------------------------------------------------------------------- /win32/SDL2_mixer-2.8.1/lib/x64/optional/LICENSE.opus.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2_mixer-2.8.1/lib/x64/optional/LICENSE.opus.txt -------------------------------------------------------------------------------- /win32/SDL2_mixer-2.8.1/lib/x64/optional/LICENSE.opusfile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2_mixer-2.8.1/lib/x64/optional/LICENSE.opusfile.txt -------------------------------------------------------------------------------- /win32/SDL2_mixer-2.8.1/lib/x64/optional/LICENSE.wavpack.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2_mixer-2.8.1/lib/x64/optional/LICENSE.wavpack.txt -------------------------------------------------------------------------------- /win32/SDL2_mixer-2.8.1/lib/x64/optional/LICENSE.xmp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2_mixer-2.8.1/lib/x64/optional/LICENSE.xmp.txt -------------------------------------------------------------------------------- /win32/SDL2_mixer-2.8.1/lib/x64/optional/libgme.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2_mixer-2.8.1/lib/x64/optional/libgme.dll -------------------------------------------------------------------------------- /win32/SDL2_mixer-2.8.1/lib/x64/optional/libogg-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2_mixer-2.8.1/lib/x64/optional/libogg-0.dll -------------------------------------------------------------------------------- /win32/SDL2_mixer-2.8.1/lib/x64/optional/libopus-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2_mixer-2.8.1/lib/x64/optional/libopus-0.dll -------------------------------------------------------------------------------- /win32/SDL2_mixer-2.8.1/lib/x64/optional/libopusfile-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2_mixer-2.8.1/lib/x64/optional/libopusfile-0.dll -------------------------------------------------------------------------------- /win32/SDL2_mixer-2.8.1/lib/x64/optional/libwavpack-1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2_mixer-2.8.1/lib/x64/optional/libwavpack-1.dll -------------------------------------------------------------------------------- /win32/SDL2_mixer-2.8.1/lib/x64/optional/libxmp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2_mixer-2.8.1/lib/x64/optional/libxmp.dll -------------------------------------------------------------------------------- /win32/SDL2_mixer-2.8.1/lib/x86/SDL2_mixer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2_mixer-2.8.1/lib/x86/SDL2_mixer.dll -------------------------------------------------------------------------------- /win32/SDL2_mixer-2.8.1/lib/x86/SDL2_mixer.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2_mixer-2.8.1/lib/x86/SDL2_mixer.lib -------------------------------------------------------------------------------- /win32/SDL2_mixer-2.8.1/lib/x86/SDL2_mixer.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2_mixer-2.8.1/lib/x86/SDL2_mixer.pdb -------------------------------------------------------------------------------- /win32/SDL2_mixer-2.8.1/lib/x86/optional/LICENSE.gme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2_mixer-2.8.1/lib/x86/optional/LICENSE.gme.txt -------------------------------------------------------------------------------- /win32/SDL2_mixer-2.8.1/lib/x86/optional/LICENSE.ogg-vorbis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2_mixer-2.8.1/lib/x86/optional/LICENSE.ogg-vorbis.txt -------------------------------------------------------------------------------- /win32/SDL2_mixer-2.8.1/lib/x86/optional/LICENSE.opus.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2_mixer-2.8.1/lib/x86/optional/LICENSE.opus.txt -------------------------------------------------------------------------------- /win32/SDL2_mixer-2.8.1/lib/x86/optional/LICENSE.opusfile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2_mixer-2.8.1/lib/x86/optional/LICENSE.opusfile.txt -------------------------------------------------------------------------------- /win32/SDL2_mixer-2.8.1/lib/x86/optional/LICENSE.wavpack.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2_mixer-2.8.1/lib/x86/optional/LICENSE.wavpack.txt -------------------------------------------------------------------------------- /win32/SDL2_mixer-2.8.1/lib/x86/optional/LICENSE.xmp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2_mixer-2.8.1/lib/x86/optional/LICENSE.xmp.txt -------------------------------------------------------------------------------- /win32/SDL2_mixer-2.8.1/lib/x86/optional/libgme.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2_mixer-2.8.1/lib/x86/optional/libgme.dll -------------------------------------------------------------------------------- /win32/SDL2_mixer-2.8.1/lib/x86/optional/libogg-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2_mixer-2.8.1/lib/x86/optional/libogg-0.dll -------------------------------------------------------------------------------- /win32/SDL2_mixer-2.8.1/lib/x86/optional/libopus-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2_mixer-2.8.1/lib/x86/optional/libopus-0.dll -------------------------------------------------------------------------------- /win32/SDL2_mixer-2.8.1/lib/x86/optional/libopusfile-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2_mixer-2.8.1/lib/x86/optional/libopusfile-0.dll -------------------------------------------------------------------------------- /win32/SDL2_mixer-2.8.1/lib/x86/optional/libwavpack-1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2_mixer-2.8.1/lib/x86/optional/libwavpack-1.dll -------------------------------------------------------------------------------- /win32/SDL2_mixer-2.8.1/lib/x86/optional/libxmp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2_mixer-2.8.1/lib/x86/optional/libxmp.dll -------------------------------------------------------------------------------- /win32/SDL2_net-2.2.0/CHANGES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2_net-2.2.0/CHANGES.txt -------------------------------------------------------------------------------- /win32/SDL2_net-2.2.0/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2_net-2.2.0/LICENSE.txt -------------------------------------------------------------------------------- /win32/SDL2_net-2.2.0/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2_net-2.2.0/README.txt -------------------------------------------------------------------------------- /win32/SDL2_net-2.2.0/cmake/sdl2_net-config-version.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2_net-2.2.0/cmake/sdl2_net-config-version.cmake -------------------------------------------------------------------------------- /win32/SDL2_net-2.2.0/cmake/sdl2_net-config.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2_net-2.2.0/cmake/sdl2_net-config.cmake -------------------------------------------------------------------------------- /win32/SDL2_net-2.2.0/include/SDL_net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2_net-2.2.0/include/SDL_net.h -------------------------------------------------------------------------------- /win32/SDL2_net-2.2.0/lib/x64/SDL2_net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2_net-2.2.0/lib/x64/SDL2_net.dll -------------------------------------------------------------------------------- /win32/SDL2_net-2.2.0/lib/x64/SDL2_net.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2_net-2.2.0/lib/x64/SDL2_net.lib -------------------------------------------------------------------------------- /win32/SDL2_net-2.2.0/lib/x86/SDL2_net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2_net-2.2.0/lib/x86/SDL2_net.dll -------------------------------------------------------------------------------- /win32/SDL2_net-2.2.0/lib/x86/SDL2_net.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/SDL2_net-2.2.0/lib/x86/SDL2_net.lib -------------------------------------------------------------------------------- /win32/dlls-vc-win32/SDL2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/dlls-vc-win32/SDL2.dll -------------------------------------------------------------------------------- /win32/dlls-vc-win32/SDL2_mixer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/dlls-vc-win32/SDL2_mixer.dll -------------------------------------------------------------------------------- /win32/dlls-vc-win32/SDL2_net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/dlls-vc-win32/SDL2_net.dll -------------------------------------------------------------------------------- /win32/dlls-vc-win32/intl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/dlls-vc-win32/intl.dll -------------------------------------------------------------------------------- /win32/dlls-vc-win32/libfluidsynth-3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/dlls-vc-win32/libfluidsynth-3.dll -------------------------------------------------------------------------------- /win32/dlls-vc-win32/libglib-2.0-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/dlls-vc-win32/libglib-2.0-0.dll -------------------------------------------------------------------------------- /win32/dlls-vc-win32/libgobject-2.0-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/dlls-vc-win32/libgobject-2.0-0.dll -------------------------------------------------------------------------------- /win32/dlls-vc-win32/libgthread-2.0-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/dlls-vc-win32/libgthread-2.0-0.dll -------------------------------------------------------------------------------- /win32/dlls-vc-win32/libinstpatch-2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/dlls-vc-win32/libinstpatch-2.dll -------------------------------------------------------------------------------- /win32/dlls-vc-win32/libogg-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/dlls-vc-win32/libogg-0.dll -------------------------------------------------------------------------------- /win32/dlls-vc-win32/libopus-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/dlls-vc-win32/libopus-0.dll -------------------------------------------------------------------------------- /win32/dlls-vc-win32/libopusfile-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/dlls-vc-win32/libopusfile-0.dll -------------------------------------------------------------------------------- /win32/dlls-vc-win32/samplerate.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/dlls-vc-win32/samplerate.dll -------------------------------------------------------------------------------- /win32/dlls-vc-win32/sndfile.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/dlls-vc-win32/sndfile.dll -------------------------------------------------------------------------------- /win32/libsamplerate-0.2.2-win32/bin/samplerate.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/libsamplerate-0.2.2-win32/bin/samplerate.dll -------------------------------------------------------------------------------- /win32/libsamplerate-0.2.2-win32/include/samplerate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/libsamplerate-0.2.2-win32/include/samplerate.h -------------------------------------------------------------------------------- /win32/libsamplerate-0.2.2-win32/lib/cmake/SampleRate/SampleRateConfig.cmake: -------------------------------------------------------------------------------- 1 | include(${CMAKE_CURRENT_LIST_DIR}/SampleRateTargets.cmake) 2 | -------------------------------------------------------------------------------- /win32/libsamplerate-0.2.2-win32/lib/cmake/SampleRate/SampleRateConfigVersion.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/libsamplerate-0.2.2-win32/lib/cmake/SampleRate/SampleRateConfigVersion.cmake -------------------------------------------------------------------------------- /win32/libsamplerate-0.2.2-win32/lib/cmake/SampleRate/SampleRateTargets-release.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/libsamplerate-0.2.2-win32/lib/cmake/SampleRate/SampleRateTargets-release.cmake -------------------------------------------------------------------------------- /win32/libsamplerate-0.2.2-win32/lib/cmake/SampleRate/SampleRateTargets.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/libsamplerate-0.2.2-win32/lib/cmake/SampleRate/SampleRateTargets.cmake -------------------------------------------------------------------------------- /win32/libsamplerate-0.2.2-win32/lib/samplerate.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/libsamplerate-0.2.2-win32/lib/samplerate.lib -------------------------------------------------------------------------------- /win32/libsamplerate-0.2.2-win32/share/doc/libsamplerate/SRC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/libsamplerate-0.2.2-win32/share/doc/libsamplerate/SRC.png -------------------------------------------------------------------------------- /win32/libsamplerate-0.2.2-win32/share/doc/libsamplerate/api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/libsamplerate-0.2.2-win32/share/doc/libsamplerate/api.md -------------------------------------------------------------------------------- /win32/libsamplerate-0.2.2-win32/share/doc/libsamplerate/api_callback.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/libsamplerate-0.2.2-win32/share/doc/libsamplerate/api_callback.md -------------------------------------------------------------------------------- /win32/libsamplerate-0.2.2-win32/share/doc/libsamplerate/api_full.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/libsamplerate-0.2.2-win32/share/doc/libsamplerate/api_full.md -------------------------------------------------------------------------------- /win32/libsamplerate-0.2.2-win32/share/doc/libsamplerate/api_misc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/libsamplerate-0.2.2-win32/share/doc/libsamplerate/api_misc.md -------------------------------------------------------------------------------- /win32/libsamplerate-0.2.2-win32/share/doc/libsamplerate/api_simple.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/libsamplerate-0.2.2-win32/share/doc/libsamplerate/api_simple.md -------------------------------------------------------------------------------- /win32/libsamplerate-0.2.2-win32/share/doc/libsamplerate/bugs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/libsamplerate-0.2.2-win32/share/doc/libsamplerate/bugs.md -------------------------------------------------------------------------------- /win32/libsamplerate-0.2.2-win32/share/doc/libsamplerate/download.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/libsamplerate-0.2.2-win32/share/doc/libsamplerate/download.md -------------------------------------------------------------------------------- /win32/libsamplerate-0.2.2-win32/share/doc/libsamplerate/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/libsamplerate-0.2.2-win32/share/doc/libsamplerate/faq.md -------------------------------------------------------------------------------- /win32/libsamplerate-0.2.2-win32/share/doc/libsamplerate/history.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/libsamplerate-0.2.2-win32/share/doc/libsamplerate/history.md -------------------------------------------------------------------------------- /win32/libsamplerate-0.2.2-win32/share/doc/libsamplerate/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/libsamplerate-0.2.2-win32/share/doc/libsamplerate/index.md -------------------------------------------------------------------------------- /win32/libsamplerate-0.2.2-win32/share/doc/libsamplerate/license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/libsamplerate-0.2.2-win32/share/doc/libsamplerate/license.md -------------------------------------------------------------------------------- /win32/libsamplerate-0.2.2-win32/share/doc/libsamplerate/lists.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/libsamplerate-0.2.2-win32/share/doc/libsamplerate/lists.md -------------------------------------------------------------------------------- /win32/libsamplerate-0.2.2-win32/share/doc/libsamplerate/quality.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/libsamplerate-0.2.2-win32/share/doc/libsamplerate/quality.md -------------------------------------------------------------------------------- /win32/libsamplerate-0.2.2-win32/share/doc/libsamplerate/win32.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/libsamplerate-0.2.2-win32/share/doc/libsamplerate/win32.md -------------------------------------------------------------------------------- /win32/win_opendir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/win_opendir.c -------------------------------------------------------------------------------- /win32/win_opendir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNechaevsky/CRL/HEAD/win32/win_opendir.h --------------------------------------------------------------------------------