├── .appveyor.yml ├── .cirrus.yml ├── .clang-format ├── .gitattributes ├── .github └── workflows │ ├── Cygwin-Makefile.yml │ ├── DragonFlyBSD-Autotools.yml │ ├── DragonFlyBSD-Makefile.yml │ ├── Fedora-Autotools.yml │ ├── Fedora-Cross-MinGW.yml │ ├── Fedora-Makefile.yml │ ├── FreeBSD-Autotools.yml │ ├── FreeBSD-Makefile.yml │ ├── Haiku-Autotools.yml │ ├── Haiku-Makefile.yml │ ├── MSYS2-Autotools.yml │ ├── MSYS2-Makefile-Clang.yml │ ├── MSYS2-Makefile.yml │ ├── NetBSD-Autotools.yml │ ├── NetBSD-Makefile.yml │ ├── OpenBSD-Autotools.yml │ ├── OpenBSD-Makefile.yml │ ├── RHEL-Autotools.yml │ ├── RHEL-Makefile.yml │ ├── Ubuntu-Autotools.yml │ ├── Ubuntu-Makefile.yml │ ├── VFX-Makefile.yml │ ├── macOS-Autotools.yml │ └── macOS-Makefile.yml ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── common ├── BuildSettings.h ├── BuildSettingsCompiler.h ├── ComponentManager.cpp ├── ComponentManager.h ├── FileReader.h ├── FileReaderFwd.h ├── Logging.cpp ├── Logging.h ├── Profiler.cpp ├── Profiler.h ├── misc_util.h ├── mptAssert.h ├── mptBaseMacros.h ├── mptBaseTypes.h ├── mptBaseUtils.h ├── mptCPU.h ├── mptFileIO.h ├── mptFileTemporary.h ├── mptFileType.cpp ├── mptFileType.h ├── mptPathString.cpp ├── mptPathString.h ├── mptRandom.cpp ├── mptRandom.h ├── mptString.h ├── mptStringBuffer.cpp ├── mptStringBuffer.h ├── mptStringFormat.h ├── mptTime.cpp ├── mptTime.h ├── serialization_utils.cpp ├── serialization_utils.h ├── stdafx.h ├── version.cpp ├── version.h ├── versionNumber.h └── zlib_helper.h ├── contrib ├── fuzzing │ ├── all_formats.dict │ ├── build.sh │ ├── fuzz-main.sh │ ├── fuzz-secondary1.sh │ ├── fuzz-secondary2.sh │ ├── fuzz-secondary3.sh │ ├── fuzz-settings.sh │ ├── fuzz.cpp │ ├── get-afl.sh │ └── readme.md ├── libmodplug-0.8.8.5 │ ├── LICENSE │ ├── Makefile.am │ ├── autogen.sh │ ├── clean.sh │ ├── config.h.in │ ├── configure.ac │ ├── dist.sh │ ├── libmodplug.pc.in │ ├── libmodplug │ │ ├── modplug.h │ │ ├── sndfile.h │ │ └── stdafx.h │ ├── libopenmpt_modplug.c │ ├── libopenmpt_modplug.pc.in │ ├── libopenmpt_modplug_cpp.cpp │ ├── m4 │ │ └── ax_cxx_compile_stdcxx.m4 │ └── test.sh ├── libmodplug-0.8.9.0 │ ├── LICENSE │ ├── Makefile.am │ ├── autogen.sh │ ├── clean.sh │ ├── config.h.in │ ├── configure.ac │ ├── dist.sh │ ├── libmodplug.pc.in │ ├── libmodplug │ │ ├── modplug.h │ │ ├── sndfile.h │ │ └── stdafx.h │ ├── libopenmpt_modplug.c │ ├── libopenmpt_modplug.pc.in │ ├── libopenmpt_modplug_cpp.cpp │ ├── m4 │ │ └── ax_cxx_compile_stdcxx.m4 │ └── test.sh ├── libopenmpt │ └── libopenmpt_bass.c └── premake │ └── snapshot-premake-master.sh ├── doc ├── backporting_patches.md ├── contributing.md ├── libopenmpt │ ├── changelog.md │ ├── dependencies.md │ ├── gettingstarted.md │ ├── index.dox │ ├── packaging.md │ └── tests.md ├── libopenmpt_release.md ├── libopenmpt_styleguide.md ├── module_formats.md ├── openmpt_release.md ├── openmpt_styleguide.md ├── release_branches.md ├── signing_releases.md ├── string_types.md └── year_changed.md ├── examples ├── .clang-format ├── libopenmpt_example_c.c ├── libopenmpt_example_c_mem.c ├── libopenmpt_example_c_pipe.c ├── libopenmpt_example_c_probe.c ├── libopenmpt_example_c_stdout.c ├── libopenmpt_example_c_unsafe.c └── libopenmpt_example_cxx.cpp ├── include ├── SignalsmithStretch │ ├── OpenMPT.txt │ ├── SignalsmithStretch │ │ ├── LICENSE.txt │ │ ├── README.md │ │ └── signalsmith-stretch.h │ └── signalsmith-linear │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── fft.h │ │ └── stft.h ├── ancient │ ├── LICENSE │ ├── LICENSE.bzip2 │ ├── OpenMPT.txt │ ├── api │ │ └── ancient │ │ │ └── ancient.hpp │ └── src │ │ ├── ACCADecompressor.cpp │ │ ├── ACCADecompressor.hpp │ │ ├── API.cpp │ │ ├── ARTMDecompressor.cpp │ │ ├── ARTMDecompressor.hpp │ │ ├── BLZWDecompressor.cpp │ │ ├── BLZWDecompressor.hpp │ │ ├── BZIP2Decompressor.cpp │ │ ├── BZIP2Decompressor.hpp │ │ ├── BZIP2Table.hpp │ │ ├── ByteKillerDecompressor.cpp │ │ ├── ByteKillerDecompressor.hpp │ │ ├── CBR0Decompressor.cpp │ │ ├── CBR0Decompressor.hpp │ │ ├── CRMDecompressor.cpp │ │ ├── CRMDecompressor.hpp │ │ ├── CYB2Decoder.cpp │ │ ├── CYB2Decoder.hpp │ │ ├── CompactDecompressor.cpp │ │ ├── CompactDecompressor.hpp │ │ ├── CompressDecompressor.cpp │ │ ├── CompressDecompressor.hpp │ │ ├── DEFLATEDecompressor.cpp │ │ ├── DEFLATEDecompressor.hpp │ │ ├── DLTADecode.cpp │ │ ├── DLTADecode.hpp │ │ ├── DMSDecompressor.cpp │ │ ├── DMSDecompressor.hpp │ │ ├── Decompressor.cpp │ │ ├── Decompressor.hpp │ │ ├── DynamicHuffmanDecoder.hpp │ │ ├── FASTDecompressor.cpp │ │ ├── FASTDecompressor.hpp │ │ ├── FBR2Decompressor.cpp │ │ ├── FBR2Decompressor.hpp │ │ ├── FRLEDecompressor.cpp │ │ ├── FRLEDecompressor.hpp │ │ ├── FreezeDecompressor.cpp │ │ ├── FreezeDecompressor.hpp │ │ ├── FrequencyTree.hpp │ │ ├── HFMNDecompressor.cpp │ │ ├── HFMNDecompressor.hpp │ │ ├── HUFFDecompressor.cpp │ │ ├── HUFFDecompressor.hpp │ │ ├── HuffmanDecoder.hpp │ │ ├── ILZRDecompressor.cpp │ │ ├── ILZRDecompressor.hpp │ │ ├── IMPDecompressor.cpp │ │ ├── IMPDecompressor.hpp │ │ ├── IceDecompressor.cpp │ │ ├── IceDecompressor.hpp │ │ ├── InputStream.cpp │ │ ├── InputStream.hpp │ │ ├── JAMPackerDecompressor.cpp │ │ ├── JAMPackerDecompressor.hpp │ │ ├── LHDecompressor.cpp │ │ ├── LHDecompressor.hpp │ │ ├── LIN1Decompressor.cpp │ │ ├── LIN1Decompressor.hpp │ │ ├── LIN2Decompressor.cpp │ │ ├── LIN2Decompressor.hpp │ │ ├── LOBDecompressor.cpp │ │ ├── LOBDecompressor.hpp │ │ ├── LZBSDecompressor.cpp │ │ ├── LZBSDecompressor.hpp │ │ ├── LZCBDecompressor.cpp │ │ ├── LZCBDecompressor.hpp │ │ ├── LZW2Decompressor.cpp │ │ ├── LZW2Decompressor.hpp │ │ ├── LZW4Decompressor.cpp │ │ ├── LZW4Decompressor.hpp │ │ ├── LZW5Decompressor.cpp │ │ ├── LZW5Decompressor.hpp │ │ ├── LZWDecoder.cpp │ │ ├── LZWDecoder.hpp │ │ ├── LZXDecompressor.cpp │ │ ├── LZXDecompressor.hpp │ │ ├── MASHDecompressor.cpp │ │ ├── MASHDecompressor.hpp │ │ ├── MMCMPDecompressor.cpp │ │ ├── MMCMPDecompressor.hpp │ │ ├── NONEDecompressor.cpp │ │ ├── NONEDecompressor.hpp │ │ ├── NUKEDecompressor.cpp │ │ ├── NUKEDecompressor.hpp │ │ ├── OutputStream.cpp │ │ ├── OutputStream.hpp │ │ ├── PMCDecompressor.cpp │ │ ├── PMCDecompressor.hpp │ │ ├── PPDecompressor.cpp │ │ ├── PPDecompressor.hpp │ │ ├── PPMQDecompressor.cpp │ │ ├── PPMQDecompressor.hpp │ │ ├── PackDecompressor.cpp │ │ ├── PackDecompressor.hpp │ │ ├── RAKEDecompressor.cpp │ │ ├── RAKEDecompressor.hpp │ │ ├── RDCNDecompressor.cpp │ │ ├── RDCNDecompressor.hpp │ │ ├── RLENDecompressor.cpp │ │ ├── RLENDecompressor.hpp │ │ ├── RNCDecompressor.cpp │ │ ├── RNCDecompressor.hpp │ │ ├── RangeDecoder.cpp │ │ ├── RangeDecoder.hpp │ │ ├── SCOCompressDecompressor.cpp │ │ ├── SCOCompressDecompressor.hpp │ │ ├── SDHCDecompressor.cpp │ │ ├── SDHCDecompressor.hpp │ │ ├── SHRXDecompressor.cpp │ │ ├── SHRXDecompressor.hpp │ │ ├── SLZ3Decompressor.cpp │ │ ├── SLZ3Decompressor.hpp │ │ ├── SMPLDecompressor.cpp │ │ ├── SMPLDecompressor.hpp │ │ ├── SQSHDecompressor.cpp │ │ ├── SQSHDecompressor.hpp │ │ ├── SXSCDecompressor.cpp │ │ ├── SXSCDecompressor.hpp │ │ ├── StoneCrackerDecompressor.cpp │ │ ├── StoneCrackerDecompressor.hpp │ │ ├── TDCSDecompressor.cpp │ │ ├── TDCSDecompressor.hpp │ │ ├── TPWMDecompressor.cpp │ │ ├── TPWMDecompressor.hpp │ │ ├── VariableLengthCodeDecoder.hpp │ │ ├── VicXDecompressor.cpp │ │ ├── VicXDecompressor.hpp │ │ ├── XPKDecompressor.cpp │ │ ├── XPKDecompressor.hpp │ │ ├── XPKMain.cpp │ │ ├── XPKMain.hpp │ │ ├── XPKUnimplemented.cpp │ │ ├── XPKUnimplemented.hpp │ │ ├── ZENODecompressor.cpp │ │ ├── ZENODecompressor.hpp │ │ └── common │ │ ├── Buffer.cpp │ │ ├── Buffer.hpp │ │ ├── CRC16.cpp │ │ ├── CRC16.hpp │ │ ├── CRC32.cpp │ │ ├── CRC32.hpp │ │ ├── Common.cpp │ │ ├── Common.hpp │ │ ├── MemoryBuffer.cpp │ │ ├── MemoryBuffer.hpp │ │ ├── OverflowCheck.hpp │ │ ├── StaticBuffer.cpp │ │ ├── StaticBuffer.hpp │ │ ├── SubBuffer.cpp │ │ ├── SubBuffer.hpp │ │ ├── WrappedVectorBuffer.cpp │ │ └── WrappedVectorBuffer.hpp ├── asiomodern │ ├── OpenMPT.txt │ └── include │ │ └── ASIOModern │ │ ├── .clang-format │ │ ├── ASIO.hpp │ │ ├── ASIOConfig.hpp │ │ ├── ASIOCore.hpp │ │ ├── ASIOModern.hpp │ │ ├── ASIOSampleConvert.hpp │ │ ├── ASIOSystemWindows.hpp │ │ ├── ASIOSystemWindowsSEH.hpp │ │ ├── ASIOVerifyABI.hpp │ │ ├── ASIOVersion.hpp │ │ └── ASIOstdcxx20bit.hpp ├── cryptopp │ ├── 3way.cpp │ ├── 3way.h │ ├── Doxyfile │ ├── Filelist.txt │ ├── GNUmakefile │ ├── GNUmakefile-cross │ ├── History.txt │ ├── Install.txt │ ├── License.txt │ ├── OpenMPT.txt │ ├── Readme.txt │ ├── adhoc.cpp.proto │ ├── adler32.cpp │ ├── adler32.h │ ├── adv_simd.h │ ├── aes.h │ ├── aes_armv4.S │ ├── aes_armv4.h │ ├── algebra.cpp │ ├── algebra.h │ ├── algparam.cpp │ ├── algparam.h │ ├── allocate.cpp │ ├── allocate.h │ ├── arc4.cpp │ ├── arc4.h │ ├── argnames.h │ ├── aria.cpp │ ├── aria.h │ ├── ariatab.cpp │ ├── arm_simd.h │ ├── asn.cpp │ ├── asn.h │ ├── authenc.cpp │ ├── authenc.h │ ├── base32.cpp │ ├── base32.h │ ├── base64.cpp │ ├── base64.h │ ├── basecode.cpp │ ├── basecode.h │ ├── bds10.zip │ ├── bench.h │ ├── bench1.cpp │ ├── bench2.cpp │ ├── bench3.cpp │ ├── bfinit.cpp │ ├── blake2.cpp │ ├── blake2.h │ ├── blake2b_simd.cpp │ ├── blake2s_simd.cpp │ ├── blowfish.cpp │ ├── blowfish.h │ ├── blumshub.cpp │ ├── blumshub.h │ ├── camellia.cpp │ ├── camellia.h │ ├── cast.cpp │ ├── cast.h │ ├── casts.cpp │ ├── cbcmac.cpp │ ├── cbcmac.h │ ├── ccm.cpp │ ├── ccm.h │ ├── chacha.cpp │ ├── chacha.h │ ├── chacha_avx.cpp │ ├── chacha_simd.cpp │ ├── chachapoly.cpp │ ├── chachapoly.h │ ├── cham.cpp │ ├── cham.h │ ├── cham_simd.cpp │ ├── channels.cpp │ ├── channels.h │ ├── cmac.cpp │ ├── cmac.h │ ├── config.h │ ├── config_align.h │ ├── config_asm.h │ ├── config_cpu.h │ ├── config_cxx.h │ ├── config_dll.h │ ├── config_int.h │ ├── config_misc.h │ ├── config_ns.h │ ├── config_os.h │ ├── config_ver.h │ ├── cpu.cpp │ ├── cpu.h │ ├── crc.cpp │ ├── crc.h │ ├── crc_simd.cpp │ ├── cryptdll.vcxproj │ ├── cryptdll.vcxproj.filters │ ├── cryptest.nmake │ ├── cryptest.sln │ ├── cryptest.vcxproj │ ├── cryptest.vcxproj.filters │ ├── cryptest.vcxproj.user │ ├── cryptlib.cpp │ ├── cryptlib.h │ ├── cryptlib.vcxproj │ ├── cryptlib.vcxproj.filters │ ├── cryptopp.rc │ ├── cryptopp.supp │ ├── darn.cpp │ ├── darn.h │ ├── datatest.cpp │ ├── default.cpp │ ├── default.h │ ├── des.cpp │ ├── des.h │ ├── dessp.cpp │ ├── dh.cpp │ ├── dh.h │ ├── dh2.cpp │ ├── dh2.h │ ├── dll.cpp │ ├── dll.h │ ├── dlltest.cpp │ ├── dlltest.vcxproj │ ├── dlltest.vcxproj.filters │ ├── dmac.h │ ├── donna.h │ ├── donna_32.cpp │ ├── donna_32.h │ ├── donna_64.cpp │ ├── donna_64.h │ ├── donna_sse.cpp │ ├── donna_sse.h │ ├── drbg.h │ ├── dsa.cpp │ ├── dsa.h │ ├── eax.cpp │ ├── eax.h │ ├── ec2n.cpp │ ├── ec2n.h │ ├── eccrypto.cpp │ ├── eccrypto.h │ ├── ecp.cpp │ ├── ecp.h │ ├── ecpoint.h │ ├── elgamal.cpp │ ├── elgamal.h │ ├── emsa2.cpp │ ├── emsa2.h │ ├── eprecomp.cpp │ ├── eprecomp.h │ ├── esign.cpp │ ├── esign.h │ ├── factory.h │ ├── fhmqv.h │ ├── files.cpp │ ├── files.h │ ├── filters.cpp │ ├── filters.h │ ├── fips140.cpp │ ├── fips140.h │ ├── fipsalgt.cpp │ ├── fipstest.cpp │ ├── fltrimpl.h │ ├── gcm.cpp │ ├── gcm.h │ ├── gcm_simd.cpp │ ├── gf256.cpp │ ├── gf256.h │ ├── gf2_32.cpp │ ├── gf2_32.h │ ├── gf2n.cpp │ ├── gf2n.h │ ├── gf2n_simd.cpp │ ├── gfpcrypt.cpp │ ├── gfpcrypt.h │ ├── gost.cpp │ ├── gost.h │ ├── gzip.cpp │ ├── gzip.h │ ├── hashfwd.h │ ├── hc128.cpp │ ├── hc128.h │ ├── hc256.cpp │ ├── hc256.h │ ├── hex.cpp │ ├── hex.h │ ├── hight.cpp │ ├── hight.h │ ├── hkdf.h │ ├── hmac.cpp │ ├── hmac.h │ ├── hmqv.h │ ├── hrtimer.cpp │ ├── hrtimer.h │ ├── ida.cpp │ ├── ida.h │ ├── idea.cpp │ ├── idea.h │ ├── integer.cpp │ ├── integer.h │ ├── iterhash.cpp │ ├── iterhash.h │ ├── kalyna.cpp │ ├── kalyna.h │ ├── kalynatab.cpp │ ├── keccak.cpp │ ├── keccak.h │ ├── keccak_core.cpp │ ├── keccak_simd.cpp │ ├── lea.cpp │ ├── lea.h │ ├── lea_simd.cpp │ ├── lsh.h │ ├── lsh256.cpp │ ├── lsh256_avx.cpp │ ├── lsh256_sse.cpp │ ├── lsh512.cpp │ ├── lsh512_avx.cpp │ ├── lsh512_sse.cpp │ ├── lubyrack.h │ ├── luc.cpp │ ├── luc.h │ ├── mars.cpp │ ├── mars.h │ ├── marss.cpp │ ├── md2.cpp │ ├── md2.h │ ├── md4.cpp │ ├── md4.h │ ├── md5.cpp │ ├── md5.h │ ├── mdc.h │ ├── mersenne.h │ ├── misc.cpp │ ├── misc.h │ ├── modarith.h │ ├── modes.cpp │ ├── modes.h │ ├── modexppc.h │ ├── mqueue.cpp │ ├── mqueue.h │ ├── mqv.cpp │ ├── mqv.h │ ├── naclite.h │ ├── nbtheory.cpp │ ├── nbtheory.h │ ├── neon_simd.cpp │ ├── nr.h │ ├── oaep.cpp │ ├── oaep.h │ ├── oids.h │ ├── osrng.cpp │ ├── osrng.h │ ├── ossig.h │ ├── padlkrng.cpp │ ├── padlkrng.h │ ├── panama.cpp │ ├── panama.h │ ├── pch.cpp │ ├── pch.h │ ├── pkcspad.cpp │ ├── pkcspad.h │ ├── poly1305.cpp │ ├── poly1305.h │ ├── polynomi.cpp │ ├── polynomi.h │ ├── power7_ppc.cpp │ ├── power8_ppc.cpp │ ├── power9_ppc.cpp │ ├── ppc_simd.cpp │ ├── ppc_simd.h │ ├── primetab.cpp │ ├── pssr.cpp │ ├── pssr.h │ ├── pubkey.cpp │ ├── pubkey.h │ ├── pwdbased.h │ ├── queue.cpp │ ├── queue.h │ ├── rabbit.cpp │ ├── rabbit.h │ ├── rabin.cpp │ ├── rabin.h │ ├── randpool.cpp │ ├── randpool.h │ ├── rc2.cpp │ ├── rc2.h │ ├── rc5.cpp │ ├── rc5.h │ ├── rc6.cpp │ ├── rc6.h │ ├── rdrand.asm │ ├── rdrand.cpp │ ├── rdrand.h │ ├── rdseed.asm │ ├── rdtables.cpp │ ├── regtest1.cpp │ ├── regtest2.cpp │ ├── regtest3.cpp │ ├── regtest4.cpp │ ├── resource.h │ ├── rijndael.cpp │ ├── rijndael.h │ ├── rijndael_simd.cpp │ ├── ripemd.cpp │ ├── ripemd.h │ ├── rng.cpp │ ├── rng.h │ ├── rsa.cpp │ ├── rsa.h │ ├── rw.cpp │ ├── rw.h │ ├── safer.cpp │ ├── safer.h │ ├── salsa.cpp │ ├── salsa.h │ ├── scrypt.cpp │ ├── scrypt.h │ ├── seal.cpp │ ├── seal.h │ ├── secblock.h │ ├── secblockfwd.h │ ├── seckey.h │ ├── seed.cpp │ ├── seed.h │ ├── serpent.cpp │ ├── serpent.h │ ├── serpentp.h │ ├── sha.cpp │ ├── sha.h │ ├── sha1_armv4.S │ ├── sha1_armv4.h │ ├── sha256_armv4.S │ ├── sha256_armv4.h │ ├── sha3.cpp │ ├── sha3.h │ ├── sha512_armv4.S │ ├── sha512_armv4.h │ ├── sha_simd.cpp │ ├── shacal2.cpp │ ├── shacal2.h │ ├── shacal2_simd.cpp │ ├── shake.cpp │ ├── shake.h │ ├── shark.cpp │ ├── shark.h │ ├── sharkbox.cpp │ ├── simeck.cpp │ ├── simeck.h │ ├── simon.cpp │ ├── simon.h │ ├── simon128_simd.cpp │ ├── simple.cpp │ ├── simple.h │ ├── siphash.h │ ├── skipjack.cpp │ ├── skipjack.h │ ├── sm3.cpp │ ├── sm3.h │ ├── sm4.cpp │ ├── sm4.h │ ├── sm4_simd.cpp │ ├── smartptr.h │ ├── sosemanuk.cpp │ ├── sosemanuk.h │ ├── speck.cpp │ ├── speck.h │ ├── speck128_simd.cpp │ ├── square.cpp │ ├── square.h │ ├── squaretb.cpp │ ├── sse_simd.cpp │ ├── stdcpp.h │ ├── strciphr.cpp │ ├── strciphr.h │ ├── tea.cpp │ ├── tea.h │ ├── test.cpp │ ├── tftables.cpp │ ├── threefish.cpp │ ├── threefish.h │ ├── tiger.cpp │ ├── tiger.h │ ├── tigertab.cpp │ ├── trap.h │ ├── trunhash.h │ ├── ttmac.cpp │ ├── ttmac.h │ ├── tweetnacl.cpp │ ├── tweetnacl.h │ ├── twofish.cpp │ ├── twofish.h │ ├── validat0.cpp │ ├── validat1.cpp │ ├── validat10.cpp │ ├── validat2.cpp │ ├── validat3.cpp │ ├── validat4.cpp │ ├── validat5.cpp │ ├── validat6.cpp │ ├── validat7.cpp │ ├── validat8.cpp │ ├── validat9.cpp │ ├── validate.h │ ├── vmac.cpp │ ├── vmac.h │ ├── vs2005.zip │ ├── wake.cpp │ ├── wake.h │ ├── whrlpool.cpp │ ├── whrlpool.h │ ├── words.h │ ├── x64dll.asm │ ├── x64masm.asm │ ├── xed25519.cpp │ ├── xed25519.h │ ├── xtr.cpp │ ├── xtr.h │ ├── xtrcrypt.cpp │ ├── xtrcrypt.h │ ├── xts.cpp │ ├── xts.h │ ├── zdeflate.cpp │ ├── zdeflate.h │ ├── zinflate.cpp │ ├── zinflate.h │ ├── zlib.cpp │ └── zlib.h ├── flac │ ├── AUTHORS │ ├── COPYING.Xiph │ ├── OpenMPT.txt │ ├── include │ │ ├── FLAC │ │ │ ├── all.h │ │ │ ├── assert.h │ │ │ ├── callback.h │ │ │ ├── export.h │ │ │ ├── format.h │ │ │ ├── metadata.h │ │ │ ├── ordinals.h │ │ │ ├── stream_decoder.h │ │ │ └── stream_encoder.h │ │ └── share │ │ │ ├── alloc.h │ │ │ ├── compat.h │ │ │ ├── compat_threads.h │ │ │ ├── endswap.h │ │ │ ├── macros.h │ │ │ ├── private.h │ │ │ ├── safe_str.h │ │ │ └── win_utf8_io.h │ └── src │ │ ├── libFLAC │ │ ├── bitmath.c │ │ ├── bitreader.c │ │ ├── bitwriter.c │ │ ├── cpu.c │ │ ├── crc.c │ │ ├── deduplication │ │ │ ├── bitreader_read_rice_signed_block.c │ │ │ ├── lpc_compute_autocorrelation_intrin.c │ │ │ ├── lpc_compute_autocorrelation_intrin_neon.c │ │ │ └── lpc_compute_autocorrelation_intrin_sse2.c │ │ ├── fixed.c │ │ ├── fixed_intrin_avx2.c │ │ ├── fixed_intrin_sse2.c │ │ ├── fixed_intrin_sse42.c │ │ ├── fixed_intrin_ssse3.c │ │ ├── float.c │ │ ├── format.c │ │ ├── include │ │ │ ├── private │ │ │ │ ├── all.h │ │ │ │ ├── bitmath.h │ │ │ │ ├── bitreader.h │ │ │ │ ├── bitwriter.h │ │ │ │ ├── cpu.h │ │ │ │ ├── crc.h │ │ │ │ ├── fixed.h │ │ │ │ ├── float.h │ │ │ │ ├── format.h │ │ │ │ ├── lpc.h │ │ │ │ ├── macros.h │ │ │ │ ├── md5.h │ │ │ │ ├── memory.h │ │ │ │ ├── metadata.h │ │ │ │ ├── ogg_decoder_aspect.h │ │ │ │ ├── ogg_encoder_aspect.h │ │ │ │ ├── ogg_helper.h │ │ │ │ ├── ogg_mapping.h │ │ │ │ ├── stream_encoder.h │ │ │ │ ├── stream_encoder_framing.h │ │ │ │ └── window.h │ │ │ └── protected │ │ │ │ ├── all.h │ │ │ │ ├── stream_decoder.h │ │ │ │ └── stream_encoder.h │ │ ├── lpc.c │ │ ├── lpc_intrin_avx2.c │ │ ├── lpc_intrin_fma.c │ │ ├── lpc_intrin_neon.c │ │ ├── lpc_intrin_sse2.c │ │ ├── lpc_intrin_sse41.c │ │ ├── md5.c │ │ ├── memory.c │ │ ├── metadata_iterators.c │ │ ├── metadata_object.c │ │ ├── ogg_decoder_aspect.c │ │ ├── ogg_encoder_aspect.c │ │ ├── ogg_helper.c │ │ ├── ogg_mapping.c │ │ ├── stream_decoder.c │ │ ├── stream_encoder.c │ │ ├── stream_encoder_framing.c │ │ ├── stream_encoder_intrin_avx2.c │ │ ├── stream_encoder_intrin_sse2.c │ │ ├── stream_encoder_intrin_ssse3.c │ │ ├── version.rc │ │ └── window.c │ │ └── share │ │ └── win_utf8_io │ │ └── win_utf8_io.c ├── lame │ ├── COPYING │ ├── OpenMPT.txt │ ├── configMS.h │ ├── include │ │ ├── lame.def │ │ └── lame.h │ ├── libmp3lame │ │ ├── VbrTag.c │ │ ├── VbrTag.h │ │ ├── bitstream.c │ │ ├── bitstream.h │ │ ├── encoder.c │ │ ├── encoder.h │ │ ├── fft.c │ │ ├── fft.h │ │ ├── gain_analysis.c │ │ ├── gain_analysis.h │ │ ├── id3tag.c │ │ ├── id3tag.h │ │ ├── l3side.h │ │ ├── lame-analysis.h │ │ ├── lame.c │ │ ├── lame.rc │ │ ├── lame_global_flags.h │ │ ├── lameerror.h │ │ ├── machine.h │ │ ├── mpglib_interface.c │ │ ├── newmdct.c │ │ ├── newmdct.h │ │ ├── presets.c │ │ ├── psymodel.c │ │ ├── psymodel.h │ │ ├── quantize.c │ │ ├── quantize.h │ │ ├── quantize_pvt.c │ │ ├── quantize_pvt.h │ │ ├── reservoir.c │ │ ├── reservoir.h │ │ ├── set_get.c │ │ ├── set_get.h │ │ ├── tables.c │ │ ├── tables.h │ │ ├── takehiro.c │ │ ├── util.c │ │ ├── util.h │ │ ├── vbrquantize.c │ │ ├── vbrquantize.h │ │ ├── vector │ │ │ ├── lame_intrin.h │ │ │ └── xmm_quantize_sub.c │ │ ├── version.c │ │ └── version.h │ └── mpglib │ │ ├── AUTHORS │ │ ├── common.c │ │ ├── common.h │ │ ├── dct64_i386.c │ │ ├── dct64_i386.h │ │ ├── decode_i386.c │ │ ├── decode_i386.h │ │ ├── huffman.h │ │ ├── interface.c │ │ ├── interface.h │ │ ├── l2tables.h │ │ ├── layer1.c │ │ ├── layer1.h │ │ ├── layer2.c │ │ ├── layer2.h │ │ ├── layer3.c │ │ ├── layer3.h │ │ ├── mpg123.h │ │ ├── mpglib.h │ │ ├── tabinit.c │ │ └── tabinit.h ├── lhasa │ ├── .gitignore │ ├── .travis.yml │ ├── AUTHORS │ ├── COPYING.md │ ├── Makefile.am │ ├── NEWS.md │ ├── OpenMPT.txt │ ├── README.md │ ├── SECURITY.md │ ├── TODO │ ├── autogen.sh │ ├── configure.ac │ ├── doc │ │ ├── .gitignore │ │ ├── Doxyfile │ │ ├── Makefile.am │ │ ├── intro.h │ │ └── lha.1 │ ├── gencov │ ├── lib │ │ ├── Makefile.am │ │ ├── bit_stream_reader.c │ │ ├── crc16.c │ │ ├── crc16.h │ │ ├── ext_header.c │ │ ├── ext_header.h │ │ ├── lh1_decoder.c │ │ ├── lh5_decoder.c │ │ ├── lh6_decoder.c │ │ ├── lh7_decoder.c │ │ ├── lh_new_decoder.c │ │ ├── lha_arch.h │ │ ├── lha_arch_unix.c │ │ ├── lha_arch_win32.c │ │ ├── lha_basic_reader.c │ │ ├── lha_basic_reader.h │ │ ├── lha_decoder.c │ │ ├── lha_decoder.h │ │ ├── lha_endian.c │ │ ├── lha_endian.h │ │ ├── lha_file_header.c │ │ ├── lha_file_header.h │ │ ├── lha_input_stream.c │ │ ├── lha_input_stream.h │ │ ├── lha_reader.c │ │ ├── lhx_decoder.c │ │ ├── lk7_decoder.c │ │ ├── lz5_decoder.c │ │ ├── lzs_decoder.c │ │ ├── macbinary.c │ │ ├── macbinary.h │ │ ├── null_decoder.c │ │ ├── pm1_decoder.c │ │ ├── pm2_decoder.c │ │ ├── pma_common.c │ │ ├── public │ │ │ ├── Makefile.am │ │ │ ├── lha_decoder.h │ │ │ ├── lha_file_header.h │ │ │ ├── lha_input_stream.h │ │ │ ├── lha_reader.h │ │ │ └── lhasa.h │ │ └── tree_decode.c │ ├── liblhasa.pc.in │ ├── pkg │ │ ├── .gitignore │ │ ├── Makefile.am │ │ ├── config.make.in │ │ └── win32 │ │ │ ├── .gitignore │ │ │ ├── GNUmakefile │ │ │ └── README │ ├── rpm.spec.in │ └── src │ │ ├── .gitignore │ │ ├── Makefile.am │ │ ├── args.txt │ │ ├── extract.c │ │ ├── extract.h │ │ ├── filter.c │ │ ├── filter.h │ │ ├── list.c │ │ ├── list.h │ │ ├── main.c │ │ ├── options.h │ │ ├── safe.c │ │ └── safe.h ├── minimp3 │ ├── LICENSE │ ├── OpenMPT.txt │ ├── minimp3.c │ └── minimp3.h ├── miniz │ ├── LICENSE │ ├── OpenMPT.txt │ ├── miniz.c │ └── miniz.h ├── mpg123 │ ├── AUTHORS │ ├── COPYING │ ├── OpenMPT.txt │ ├── ports │ │ └── generic │ │ │ └── config.h │ └── src │ │ ├── common │ │ ├── abi_align.h │ │ ├── debug.h │ │ ├── sample.h │ │ ├── swap_bytes_impl.h │ │ └── true.h │ │ ├── compat │ │ ├── compat.c │ │ ├── compat.h │ │ ├── compat_str.c │ │ └── wpathconv.h │ │ ├── include │ │ ├── fmt123.h │ │ ├── mpg123.h │ │ ├── out123.h │ │ └── syn123.h │ │ ├── libmpg123 │ │ ├── aarch64_defs.h │ │ ├── calctables.c │ │ ├── check_neon.S │ │ ├── costabs.h │ │ ├── dct36_3dnow.S │ │ ├── dct36_3dnowext.S │ │ ├── dct36_avx.S │ │ ├── dct36_neon.S │ │ ├── dct36_neon64.S │ │ ├── dct36_sse.S │ │ ├── dct36_x86_64.S │ │ ├── dct64.c │ │ ├── dct64_3dnow.S │ │ ├── dct64_3dnowext.S │ │ ├── dct64_altivec.c │ │ ├── dct64_avx.S │ │ ├── dct64_avx_float.S │ │ ├── dct64_i386.c │ │ ├── dct64_i486.c │ │ ├── dct64_mmx.S │ │ ├── dct64_neon.S │ │ ├── dct64_neon64.S │ │ ├── dct64_neon64_float.S │ │ ├── dct64_neon_float.S │ │ ├── dct64_sse.S │ │ ├── dct64_sse_float.S │ │ ├── dct64_x86_64.S │ │ ├── dct64_x86_64_float.S │ │ ├── decode.h │ │ ├── dither.c │ │ ├── dither.h │ │ ├── dither_impl.h │ │ ├── equalizer.c │ │ ├── equalizer_3dnow.S │ │ ├── feature.c │ │ ├── format.c │ │ ├── frame.c │ │ ├── frame.h │ │ ├── gapless.h │ │ ├── getbits.h │ │ ├── getcpuflags.S │ │ ├── getcpuflags.h │ │ ├── getcpuflags_arm.c │ │ ├── getcpuflags_x86_64.S │ │ ├── huffman.h │ │ ├── icy.c │ │ ├── icy.h │ │ ├── icy2utf8.c │ │ ├── icy2utf8.h │ │ ├── id3.c │ │ ├── id3.h │ │ ├── index.c │ │ ├── index.h │ │ ├── init_costabs.h │ │ ├── init_layer12.h │ │ ├── init_layer3.h │ │ ├── l12tabs.h │ │ ├── l2tables.h │ │ ├── l3bandgain.h │ │ ├── l3tabs.h │ │ ├── layer1.c │ │ ├── layer2.c │ │ ├── layer3.c │ │ ├── lfs_wrap.c │ │ ├── lfs_wrap.h │ │ ├── libmpg123.c │ │ ├── mangle.h │ │ ├── mpeghead.h │ │ ├── mpg123lib_intern.h │ │ ├── newhuffman.h │ │ ├── ntom.c │ │ ├── optimize.c │ │ ├── optimize.h │ │ ├── parse.c │ │ ├── parse.h │ │ ├── reader.h │ │ ├── readers.c │ │ ├── stringbuf.c │ │ ├── synth.c │ │ ├── synth.h │ │ ├── synth_3dnow.S │ │ ├── synth_3dnowext.S │ │ ├── synth_8bit.c │ │ ├── synth_8bit.h │ │ ├── synth_altivec.c │ │ ├── synth_arm.S │ │ ├── synth_arm_accurate.S │ │ ├── synth_i486.c │ │ ├── synth_i586.S │ │ ├── synth_i586_dither.S │ │ ├── synth_mmx.S │ │ ├── synth_mono.h │ │ ├── synth_neon.S │ │ ├── synth_neon64.S │ │ ├── synth_neon64_accurate.S │ │ ├── synth_neon64_float.S │ │ ├── synth_neon64_s32.S │ │ ├── synth_neon_accurate.S │ │ ├── synth_neon_float.S │ │ ├── synth_neon_s32.S │ │ ├── synth_ntom.h │ │ ├── synth_real.c │ │ ├── synth_s32.c │ │ ├── synth_sse.S │ │ ├── synth_sse3d.h │ │ ├── synth_sse_accurate.S │ │ ├── synth_sse_float.S │ │ ├── synth_sse_s32.S │ │ ├── synth_stereo_avx.S │ │ ├── synth_stereo_avx_accurate.S │ │ ├── synth_stereo_avx_float.S │ │ ├── synth_stereo_avx_s32.S │ │ ├── synth_stereo_neon.S │ │ ├── synth_stereo_neon64.S │ │ ├── synth_stereo_neon64_accurate.S │ │ ├── synth_stereo_neon64_float.S │ │ ├── synth_stereo_neon64_s32.S │ │ ├── synth_stereo_neon_accurate.S │ │ ├── synth_stereo_neon_float.S │ │ ├── synth_stereo_neon_s32.S │ │ ├── synth_stereo_sse_accurate.S │ │ ├── synth_stereo_sse_float.S │ │ ├── synth_stereo_sse_s32.S │ │ ├── synth_stereo_x86_64.S │ │ ├── synth_stereo_x86_64_accurate.S │ │ ├── synth_stereo_x86_64_float.S │ │ ├── synth_stereo_x86_64_s32.S │ │ ├── synth_x86_64.S │ │ ├── synth_x86_64_accurate.S │ │ ├── synth_x86_64_float.S │ │ ├── synth_x86_64_s32.S │ │ ├── synths.h │ │ ├── tabinit.c │ │ ├── tabinit_mmx.S │ │ └── testcpu.c │ │ └── version.h ├── nlohmann-json │ ├── LICENSE.MIT │ ├── OpenMPT.txt │ └── include │ │ └── nlohmann │ │ ├── adl_serializer.hpp │ │ ├── byte_container_with_subtype.hpp │ │ ├── detail │ │ ├── abi_macros.hpp │ │ ├── conversions │ │ │ ├── from_json.hpp │ │ │ ├── to_chars.hpp │ │ │ └── to_json.hpp │ │ ├── exceptions.hpp │ │ ├── hash.hpp │ │ ├── input │ │ │ ├── binary_reader.hpp │ │ │ ├── input_adapters.hpp │ │ │ ├── json_sax.hpp │ │ │ ├── lexer.hpp │ │ │ ├── parser.hpp │ │ │ └── position_t.hpp │ │ ├── iterators │ │ │ ├── internal_iterator.hpp │ │ │ ├── iter_impl.hpp │ │ │ ├── iteration_proxy.hpp │ │ │ ├── iterator_traits.hpp │ │ │ ├── json_reverse_iterator.hpp │ │ │ └── primitive_iterator.hpp │ │ ├── json_custom_base_class.hpp │ │ ├── json_pointer.hpp │ │ ├── json_ref.hpp │ │ ├── macro_scope.hpp │ │ ├── macro_unscope.hpp │ │ ├── meta │ │ │ ├── call_std │ │ │ │ ├── begin.hpp │ │ │ │ └── end.hpp │ │ │ ├── cpp_future.hpp │ │ │ ├── detected.hpp │ │ │ ├── identity_tag.hpp │ │ │ ├── is_sax.hpp │ │ │ ├── std_fs.hpp │ │ │ ├── type_traits.hpp │ │ │ └── void_t.hpp │ │ ├── output │ │ │ ├── binary_writer.hpp │ │ │ ├── output_adapters.hpp │ │ │ └── serializer.hpp │ │ ├── string_concat.hpp │ │ ├── string_escape.hpp │ │ ├── string_utils.hpp │ │ └── value_t.hpp │ │ ├── json.hpp │ │ ├── json_fwd.hpp │ │ ├── ordered_map.hpp │ │ └── thirdparty │ │ └── hedley │ │ ├── hedley.hpp │ │ └── hedley_undef.hpp ├── ogg │ ├── AUTHORS │ ├── CHANGES │ ├── COPYING │ ├── OpenMPT.txt │ ├── README.md │ ├── include │ │ └── ogg │ │ │ ├── ogg.h │ │ │ └── os_types.h │ ├── ports │ │ └── makefile │ │ │ └── ogg │ │ │ └── config_types.h │ ├── src │ │ ├── bitwise.c │ │ ├── crctable.h │ │ └── framing.c │ └── win32 │ │ └── ogg.def ├── opus │ ├── AUTHORS │ ├── COPYING │ ├── OpenMPT.txt │ ├── README │ ├── celt │ │ ├── _kiss_fft_guts.h │ │ ├── arch.h │ │ ├── arm │ │ │ ├── arm2gnu.pl │ │ │ ├── arm_celt_map.c │ │ │ ├── armcpu.c │ │ │ ├── armcpu.h │ │ │ ├── armopts.s.in │ │ │ ├── celt_fft_ne10.c │ │ │ ├── celt_mdct_ne10.c │ │ │ ├── celt_neon_intr.c │ │ │ ├── celt_pitch_xcorr_arm-gnu.S │ │ │ ├── celt_pitch_xcorr_arm.s │ │ │ ├── fft_arm.h │ │ │ ├── fixed_arm64.h │ │ │ ├── fixed_armv4.h │ │ │ ├── fixed_armv5e.h │ │ │ ├── kiss_fft_armv4.h │ │ │ ├── kiss_fft_armv5e.h │ │ │ ├── mdct_arm.h │ │ │ ├── pitch_arm.h │ │ │ └── pitch_neon_intr.c │ │ ├── bands.c │ │ ├── bands.h │ │ ├── celt.c │ │ ├── celt.h │ │ ├── celt_decoder.c │ │ ├── celt_encoder.c │ │ ├── celt_lpc.c │ │ ├── celt_lpc.h │ │ ├── cpu_support.h │ │ ├── cwrs.c │ │ ├── cwrs.h │ │ ├── ecintrin.h │ │ ├── entcode.c │ │ ├── entcode.h │ │ ├── entdec.c │ │ ├── entdec.h │ │ ├── entenc.c │ │ ├── entenc.h │ │ ├── fixed_debug.h │ │ ├── fixed_generic.h │ │ ├── float_cast.h │ │ ├── kiss_fft.c │ │ ├── kiss_fft.h │ │ ├── laplace.c │ │ ├── laplace.h │ │ ├── mathops.c │ │ ├── mathops.h │ │ ├── mdct.c │ │ ├── mdct.h │ │ ├── mfrngcod.h │ │ ├── mips │ │ │ ├── celt_mipsr1.h │ │ │ ├── fixed_generic_mipsr1.h │ │ │ ├── kiss_fft_mipsr1.h │ │ │ ├── mdct_mipsr1.h │ │ │ ├── pitch_mipsr1.h │ │ │ └── vq_mipsr1.h │ │ ├── modes.c │ │ ├── modes.h │ │ ├── opus_custom_demo.c │ │ ├── os_support.h │ │ ├── pitch.c │ │ ├── pitch.h │ │ ├── quant_bands.c │ │ ├── quant_bands.h │ │ ├── rate.c │ │ ├── rate.h │ │ ├── stack_alloc.h │ │ ├── static_modes_fixed.h │ │ ├── static_modes_fixed_arm_ne10.h │ │ ├── static_modes_float.h │ │ ├── static_modes_float_arm_ne10.h │ │ ├── vq.c │ │ ├── vq.h │ │ └── x86 │ │ │ ├── celt_lpc_sse.h │ │ │ ├── celt_lpc_sse4_1.c │ │ │ ├── pitch_avx.c │ │ │ ├── pitch_sse.c │ │ │ ├── pitch_sse.h │ │ │ ├── pitch_sse2.c │ │ │ ├── pitch_sse4_1.c │ │ │ ├── vq_sse.h │ │ │ ├── vq_sse2.c │ │ │ ├── x86_arch_macros.h │ │ │ ├── x86_celt_map.c │ │ │ ├── x86cpu.c │ │ │ └── x86cpu.h │ ├── dnn │ │ ├── arm │ │ │ ├── arm_dnn_map.c │ │ │ ├── dnn_arm.h │ │ │ ├── nnet_dotprod.c │ │ │ └── nnet_neon.c │ │ ├── burg.c │ │ ├── burg.h │ │ ├── common.h │ │ ├── dred_coding.c │ │ ├── dred_coding.h │ │ ├── dred_config.h │ │ ├── dred_decoder.c │ │ ├── dred_decoder.h │ │ ├── dred_encoder.c │ │ ├── dred_encoder.h │ │ ├── dred_rdovae.h │ │ ├── dred_rdovae_constants.h │ │ ├── dred_rdovae_dec.c │ │ ├── dred_rdovae_dec.h │ │ ├── dred_rdovae_dec_data.c │ │ ├── dred_rdovae_dec_data.h │ │ ├── dred_rdovae_enc.c │ │ ├── dred_rdovae_enc.h │ │ ├── dred_rdovae_enc_data.c │ │ ├── dred_rdovae_enc_data.h │ │ ├── dred_rdovae_stats_data.c │ │ ├── dred_rdovae_stats_data.h │ │ ├── dump_data.c │ │ ├── fargan.c │ │ ├── fargan.h │ │ ├── fargan_data.c │ │ ├── fargan_data.h │ │ ├── fargan_demo.c │ │ ├── freq.c │ │ ├── freq.h │ │ ├── lace_data.c │ │ ├── lace_data.h │ │ ├── lossgen.c │ │ ├── lossgen.h │ │ ├── lossgen_data.c │ │ ├── lossgen_data.h │ │ ├── lossgen_demo.c │ │ ├── lpcnet.h │ │ ├── lpcnet_enc.c │ │ ├── lpcnet_plc.c │ │ ├── lpcnet_private.h │ │ ├── lpcnet_tables.c │ │ ├── nndsp.c │ │ ├── nndsp.h │ │ ├── nnet.c │ │ ├── nnet.h │ │ ├── nnet_arch.h │ │ ├── nnet_default.c │ │ ├── nolace_data.c │ │ ├── nolace_data.h │ │ ├── osce.c │ │ ├── osce.h │ │ ├── osce_config.h │ │ ├── osce_features.c │ │ ├── osce_features.h │ │ ├── osce_structs.h │ │ ├── parse_lpcnet_weights.c │ │ ├── pitchdnn.c │ │ ├── pitchdnn.h │ │ ├── pitchdnn_data.c │ │ ├── pitchdnn_data.h │ │ ├── plc_data.c │ │ ├── plc_data.h │ │ ├── vec.h │ │ ├── vec_avx.h │ │ ├── vec_neon.h │ │ ├── write_lpcnet_weights.c │ │ └── x86 │ │ │ ├── dnn_x86.h │ │ │ ├── nnet_avx2.c │ │ │ ├── nnet_sse2.c │ │ │ ├── nnet_sse4_1.c │ │ │ └── x86_dnn_map.c │ ├── include │ │ ├── opus.h │ │ ├── opus_custom.h │ │ ├── opus_defines.h │ │ ├── opus_multistream.h │ │ ├── opus_projection.h │ │ └── opus_types.h │ ├── package_version │ ├── silk │ │ ├── A2NLSF.c │ │ ├── API.h │ │ ├── CNG.c │ │ ├── HP_variable_cutoff.c │ │ ├── Inlines.h │ │ ├── LPC_analysis_filter.c │ │ ├── LPC_fit.c │ │ ├── LPC_inv_pred_gain.c │ │ ├── LP_variable_cutoff.c │ │ ├── MacroCount.h │ │ ├── MacroDebug.h │ │ ├── NLSF2A.c │ │ ├── NLSF_VQ.c │ │ ├── NLSF_VQ_weights_laroia.c │ │ ├── NLSF_decode.c │ │ ├── NLSF_del_dec_quant.c │ │ ├── NLSF_encode.c │ │ ├── NLSF_stabilize.c │ │ ├── NLSF_unpack.c │ │ ├── NSQ.c │ │ ├── NSQ.h │ │ ├── NSQ_del_dec.c │ │ ├── PLC.c │ │ ├── PLC.h │ │ ├── SigProc_FIX.h │ │ ├── VAD.c │ │ ├── VQ_WMat_EC.c │ │ ├── ana_filt_bank_1.c │ │ ├── arm │ │ │ ├── LPC_inv_pred_gain_arm.h │ │ │ ├── LPC_inv_pred_gain_neon_intr.c │ │ │ ├── NSQ_del_dec_arm.h │ │ │ ├── NSQ_del_dec_neon_intr.c │ │ │ ├── NSQ_neon.c │ │ │ ├── NSQ_neon.h │ │ │ ├── SigProc_FIX_armv4.h │ │ │ ├── SigProc_FIX_armv5e.h │ │ │ ├── arm_silk_map.c │ │ │ ├── biquad_alt_arm.h │ │ │ ├── biquad_alt_neon_intr.c │ │ │ ├── macros_arm64.h │ │ │ ├── macros_armv4.h │ │ │ └── macros_armv5e.h │ │ ├── biquad_alt.c │ │ ├── bwexpander.c │ │ ├── bwexpander_32.c │ │ ├── check_control_input.c │ │ ├── code_signs.c │ │ ├── control.h │ │ ├── control_SNR.c │ │ ├── control_audio_bandwidth.c │ │ ├── control_codec.c │ │ ├── debug.c │ │ ├── debug.h │ │ ├── dec_API.c │ │ ├── decode_core.c │ │ ├── decode_frame.c │ │ ├── decode_indices.c │ │ ├── decode_parameters.c │ │ ├── decode_pitch.c │ │ ├── decode_pulses.c │ │ ├── decoder_set_fs.c │ │ ├── define.h │ │ ├── enc_API.c │ │ ├── encode_indices.c │ │ ├── encode_pulses.c │ │ ├── errors.h │ │ ├── fixed │ │ │ ├── LTP_analysis_filter_FIX.c │ │ │ ├── LTP_scale_ctrl_FIX.c │ │ │ ├── apply_sine_window_FIX.c │ │ │ ├── arm │ │ │ │ ├── warped_autocorrelation_FIX_arm.h │ │ │ │ └── warped_autocorrelation_FIX_neon_intr.c │ │ │ ├── autocorr_FIX.c │ │ │ ├── burg_modified_FIX.c │ │ │ ├── corrMatrix_FIX.c │ │ │ ├── encode_frame_FIX.c │ │ │ ├── find_LPC_FIX.c │ │ │ ├── find_LTP_FIX.c │ │ │ ├── find_pitch_lags_FIX.c │ │ │ ├── find_pred_coefs_FIX.c │ │ │ ├── k2a_FIX.c │ │ │ ├── k2a_Q16_FIX.c │ │ │ ├── main_FIX.h │ │ │ ├── mips │ │ │ │ ├── noise_shape_analysis_FIX_mipsr1.h │ │ │ │ └── warped_autocorrelation_FIX_mipsr1.h │ │ │ ├── noise_shape_analysis_FIX.c │ │ │ ├── pitch_analysis_core_FIX.c │ │ │ ├── process_gains_FIX.c │ │ │ ├── regularize_correlations_FIX.c │ │ │ ├── residual_energy16_FIX.c │ │ │ ├── residual_energy_FIX.c │ │ │ ├── schur64_FIX.c │ │ │ ├── schur_FIX.c │ │ │ ├── structs_FIX.h │ │ │ ├── vector_ops_FIX.c │ │ │ ├── warped_autocorrelation_FIX.c │ │ │ └── x86 │ │ │ │ ├── burg_modified_FIX_sse4_1.c │ │ │ │ └── vector_ops_FIX_sse4_1.c │ │ ├── float │ │ │ ├── LPC_analysis_filter_FLP.c │ │ │ ├── LPC_inv_pred_gain_FLP.c │ │ │ ├── LTP_analysis_filter_FLP.c │ │ │ ├── LTP_scale_ctrl_FLP.c │ │ │ ├── SigProc_FLP.h │ │ │ ├── apply_sine_window_FLP.c │ │ │ ├── autocorrelation_FLP.c │ │ │ ├── burg_modified_FLP.c │ │ │ ├── bwexpander_FLP.c │ │ │ ├── corrMatrix_FLP.c │ │ │ ├── encode_frame_FLP.c │ │ │ ├── energy_FLP.c │ │ │ ├── find_LPC_FLP.c │ │ │ ├── find_LTP_FLP.c │ │ │ ├── find_pitch_lags_FLP.c │ │ │ ├── find_pred_coefs_FLP.c │ │ │ ├── inner_product_FLP.c │ │ │ ├── k2a_FLP.c │ │ │ ├── main_FLP.h │ │ │ ├── noise_shape_analysis_FLP.c │ │ │ ├── pitch_analysis_core_FLP.c │ │ │ ├── process_gains_FLP.c │ │ │ ├── regularize_correlations_FLP.c │ │ │ ├── residual_energy_FLP.c │ │ │ ├── scale_copy_vector_FLP.c │ │ │ ├── scale_vector_FLP.c │ │ │ ├── schur_FLP.c │ │ │ ├── sort_FLP.c │ │ │ ├── structs_FLP.h │ │ │ ├── warped_autocorrelation_FLP.c │ │ │ ├── wrappers_FLP.c │ │ │ └── x86 │ │ │ │ └── inner_product_FLP_avx2.c │ │ ├── gain_quant.c │ │ ├── init_decoder.c │ │ ├── init_encoder.c │ │ ├── inner_prod_aligned.c │ │ ├── interpolate.c │ │ ├── lin2log.c │ │ ├── log2lin.c │ │ ├── macros.h │ │ ├── main.h │ │ ├── mips │ │ │ ├── NSQ_del_dec_mipsr1.h │ │ │ ├── macros_mipsr1.h │ │ │ └── sigproc_fix_mipsr1.h │ │ ├── pitch_est_defines.h │ │ ├── pitch_est_tables.c │ │ ├── process_NLSFs.c │ │ ├── quant_LTP_gains.c │ │ ├── resampler.c │ │ ├── resampler_down2.c │ │ ├── resampler_down2_3.c │ │ ├── resampler_private.h │ │ ├── resampler_private_AR2.c │ │ ├── resampler_private_IIR_FIR.c │ │ ├── resampler_private_down_FIR.c │ │ ├── resampler_private_up2_HQ.c │ │ ├── resampler_rom.c │ │ ├── resampler_rom.h │ │ ├── resampler_structs.h │ │ ├── shell_coder.c │ │ ├── sigm_Q15.c │ │ ├── sort.c │ │ ├── stereo_LR_to_MS.c │ │ ├── stereo_MS_to_LR.c │ │ ├── stereo_decode_pred.c │ │ ├── stereo_encode_pred.c │ │ ├── stereo_find_predictor.c │ │ ├── stereo_quant_pred.c │ │ ├── structs.h │ │ ├── sum_sqr_shift.c │ │ ├── table_LSF_cos.c │ │ ├── tables.h │ │ ├── tables_LTP.c │ │ ├── tables_NLSF_CB_NB_MB.c │ │ ├── tables_NLSF_CB_WB.c │ │ ├── tables_gain.c │ │ ├── tables_other.c │ │ ├── tables_pitch_lag.c │ │ ├── tables_pulses_per_block.c │ │ ├── tuning_parameters.h │ │ ├── typedef.h │ │ └── x86 │ │ │ ├── NSQ_del_dec_avx2.c │ │ │ ├── NSQ_del_dec_sse4_1.c │ │ │ ├── NSQ_sse4_1.c │ │ │ ├── SigProc_FIX_sse.h │ │ │ ├── VAD_sse4_1.c │ │ │ ├── VQ_WMat_EC_sse4_1.c │ │ │ ├── main_sse.h │ │ │ └── x86_silk_map.c │ └── src │ │ ├── analysis.c │ │ ├── analysis.h │ │ ├── extensions.c │ │ ├── mapping_matrix.c │ │ ├── mapping_matrix.h │ │ ├── mlp.c │ │ ├── mlp.h │ │ ├── mlp_data.c │ │ ├── opus.c │ │ ├── opus_compare.c │ │ ├── opus_decoder.c │ │ ├── opus_demo.c │ │ ├── opus_encoder.c │ │ ├── opus_multistream.c │ │ ├── opus_multistream_decoder.c │ │ ├── opus_multistream_encoder.c │ │ ├── opus_private.h │ │ ├── opus_projection_decoder.c │ │ ├── opus_projection_encoder.c │ │ ├── repacketizer.c │ │ └── repacketizer_demo.c ├── opusenc │ ├── AUTHORS │ ├── COPYING │ ├── OpenMPT.txt │ ├── include │ │ └── opusenc.h │ ├── package_version │ ├── src │ │ ├── arch.h │ │ ├── ogg_packer.c │ │ ├── ogg_packer.h │ │ ├── opus_header.c │ │ ├── opus_header.h │ │ ├── opusenc.c │ │ ├── picture.c │ │ ├── picture.h │ │ ├── resample.c │ │ ├── resample_sse.h │ │ ├── speex_resampler.h │ │ ├── unicode_support.c │ │ └── unicode_support.h │ └── win32 │ │ ├── config.h │ │ ├── genversion.bat │ │ └── version.h ├── opusfile │ ├── AUTHORS │ ├── COPYING │ ├── OpenMPT.txt │ ├── include │ │ └── opusfile.h │ ├── package_version │ └── src │ │ ├── http.c │ │ ├── info.c │ │ ├── internal.c │ │ ├── internal.h │ │ ├── opusfile.c │ │ ├── stream.c │ │ ├── wincerts.c │ │ └── winerrno.h ├── portaudio │ ├── LICENSE.txt │ ├── OpenMPT.txt │ ├── README.md │ ├── bindings │ │ └── cpp │ │ │ ├── AUTHORS │ │ │ ├── COPYING │ │ │ ├── ChangeLog │ │ │ ├── NEWS │ │ │ ├── README │ │ │ ├── include │ │ │ └── portaudiocpp │ │ │ │ ├── AsioDeviceAdapter.hxx │ │ │ │ ├── AutoSystem.hxx │ │ │ │ ├── BlockingStream.hxx │ │ │ │ ├── CFunCallbackStream.hxx │ │ │ │ ├── CallbackInterface.hxx │ │ │ │ ├── CallbackStream.hxx │ │ │ │ ├── CppFunCallbackStream.hxx │ │ │ │ ├── Device.hxx │ │ │ │ ├── DirectionSpecificStreamParameters.hxx │ │ │ │ ├── Exception.hxx │ │ │ │ ├── HostApi.hxx │ │ │ │ ├── InterfaceCallbackStream.hxx │ │ │ │ ├── MemFunCallbackStream.hxx │ │ │ │ ├── PortAudioCpp.hxx │ │ │ │ ├── SampleDataFormat.hxx │ │ │ │ ├── Stream.hxx │ │ │ │ ├── StreamParameters.hxx │ │ │ │ ├── System.hxx │ │ │ │ ├── SystemDeviceIterator.hxx │ │ │ │ └── SystemHostApiIterator.hxx │ │ │ └── source │ │ │ └── portaudiocpp │ │ │ ├── AsioDeviceAdapter.cxx │ │ │ ├── BlockingStream.cxx │ │ │ ├── CFunCallbackStream.cxx │ │ │ ├── CallbackInterface.cxx │ │ │ ├── CallbackStream.cxx │ │ │ ├── CppFunCallbackStream.cxx │ │ │ ├── Device.cxx │ │ │ ├── DirectionSpecificStreamParameters.cxx │ │ │ ├── Exception.cxx │ │ │ ├── HostApi.cxx │ │ │ ├── InterfaceCallbackStream.cxx │ │ │ ├── MemFunCallbackStream.cxx │ │ │ ├── Stream.cxx │ │ │ ├── StreamParameters.cxx │ │ │ ├── System.cxx │ │ │ ├── SystemDeviceIterator.cxx │ │ │ └── SystemHostApiIterator.cxx │ ├── build │ │ └── msvc │ │ │ └── portaudio.def │ ├── include │ │ ├── pa_asio.h │ │ ├── pa_jack.h │ │ ├── pa_linux_alsa.h │ │ ├── pa_mac_core.h │ │ ├── pa_win_ds.h │ │ ├── pa_win_wasapi.h │ │ ├── pa_win_waveformat.h │ │ ├── pa_win_wdmks.h │ │ ├── pa_win_wmme.h │ │ └── portaudio.h │ └── src │ │ ├── common │ │ ├── pa_allocation.c │ │ ├── pa_allocation.h │ │ ├── pa_converters.c │ │ ├── pa_converters.h │ │ ├── pa_cpuload.c │ │ ├── pa_cpuload.h │ │ ├── pa_debugprint.c │ │ ├── pa_debugprint.h │ │ ├── pa_dither.c │ │ ├── pa_dither.h │ │ ├── pa_endianness.h │ │ ├── pa_front.c │ │ ├── pa_gitrevision.h │ │ ├── pa_hostapi.h │ │ ├── pa_memorybarrier.h │ │ ├── pa_process.c │ │ ├── pa_process.h │ │ ├── pa_ringbuffer.c │ │ ├── pa_ringbuffer.h │ │ ├── pa_stream.c │ │ ├── pa_stream.h │ │ ├── pa_trace.c │ │ ├── pa_trace.h │ │ ├── pa_types.h │ │ └── pa_util.h │ │ ├── hostapi │ │ ├── alsa │ │ │ └── pa_linux_alsa.c │ │ ├── asihpi │ │ │ └── pa_linux_asihpi.c │ │ ├── asio │ │ │ ├── ASIO-README.txt │ │ │ ├── Callback_adaptation_.pdf │ │ │ ├── Pa_ASIO.pdf │ │ │ ├── iasiothiscallresolver.cpp │ │ │ ├── iasiothiscallresolver.h │ │ │ └── pa_asio.cpp │ │ ├── coreaudio │ │ │ ├── notes.txt │ │ │ ├── pa_mac_core.c │ │ │ ├── pa_mac_core_blocking.c │ │ │ ├── pa_mac_core_blocking.h │ │ │ ├── pa_mac_core_internal.h │ │ │ ├── pa_mac_core_utilities.c │ │ │ └── pa_mac_core_utilities.h │ │ ├── dsound │ │ │ ├── pa_win_ds.c │ │ │ ├── pa_win_ds_dynlink.c │ │ │ └── pa_win_ds_dynlink.h │ │ ├── jack │ │ │ └── pa_jack.c │ │ ├── oss │ │ │ ├── low_latency_tip.txt │ │ │ ├── pa_unix_oss.c │ │ │ └── recplay.c │ │ ├── skeleton │ │ │ ├── README.txt │ │ │ └── pa_hostapi_skeleton.c │ │ ├── wasapi │ │ │ ├── mingw-include │ │ │ │ ├── AudioSessionTypes.h │ │ │ │ ├── PropIdl.h │ │ │ │ ├── ShTypes.h │ │ │ │ ├── audioclient.h │ │ │ │ ├── devicetopology.h │ │ │ │ ├── endpointvolume.h │ │ │ │ ├── functiondiscoverykeys.h │ │ │ │ ├── functiondiscoverykeys_devpkey.h │ │ │ │ ├── ks.h │ │ │ │ ├── ksguid.h │ │ │ │ ├── ksmedia.h │ │ │ │ ├── ksproxy.h │ │ │ │ ├── ksuuids.h │ │ │ │ ├── mmdeviceapi.h │ │ │ │ ├── propkey.h │ │ │ │ ├── propkeydef.h │ │ │ │ ├── propsys.h │ │ │ │ ├── rpcsal.h │ │ │ │ ├── sal.h │ │ │ │ ├── sdkddkver.h │ │ │ │ ├── structuredquery.h │ │ │ │ └── winapifamily.h │ │ │ ├── pa_win_wasapi.c │ │ │ └── readme.txt │ │ ├── wdmks │ │ │ ├── pa_win_wdmks.c │ │ │ └── readme.txt │ │ └── wmme │ │ │ └── pa_win_wmme.c │ │ └── os │ │ ├── unix │ │ ├── pa_unix_hostapis.c │ │ ├── pa_unix_util.c │ │ └── pa_unix_util.h │ │ └── win │ │ ├── pa_win_coinitialize.c │ │ ├── pa_win_coinitialize.h │ │ ├── pa_win_hostapis.c │ │ ├── pa_win_util.c │ │ ├── pa_win_waveformat.c │ │ ├── pa_win_wdmks_utils.c │ │ ├── pa_win_wdmks_utils.h │ │ ├── pa_x86_plain_converters.c │ │ └── pa_x86_plain_converters.h ├── premake │ ├── .editorconfig │ ├── .gitattributes │ ├── .github │ │ ├── ISSUE_TEMPLATE │ │ │ ├── ask-a-question.md │ │ │ ├── get-help.md │ │ │ ├── report-a-bug.md │ │ │ └── request-a-feature.md │ │ ├── dependabot.yml │ │ ├── pull_request_template.md │ │ └── workflows │ │ │ ├── ci-workflow.yml │ │ │ └── website.yml │ ├── .gitignore │ ├── BUILD.txt │ ├── Bootstrap.bat │ ├── Bootstrap.mak │ ├── Bootstrap.sh │ ├── CHANGES.txt │ ├── CONTRIBUTING.md │ ├── CONTRIBUTORS.txt │ ├── FUNDING.yml │ ├── LICENSE.txt │ ├── OpenMPT.txt │ ├── README.md │ ├── binmodules │ │ ├── example │ │ │ ├── main.c │ │ │ └── premake5.lua │ │ └── luasocket │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── FIX │ │ │ ├── LICENSE │ │ │ ├── Lua51.props │ │ │ ├── Lua52.props │ │ │ ├── NEW │ │ │ ├── README │ │ │ ├── TODO │ │ │ ├── WISH │ │ │ ├── doc │ │ │ ├── dns.html │ │ │ ├── ftp.html │ │ │ ├── http.html │ │ │ ├── index.html │ │ │ ├── installation.html │ │ │ ├── introduction.html │ │ │ ├── ltn12.html │ │ │ ├── lua05.ppt │ │ │ ├── luasocket.png │ │ │ ├── mime.html │ │ │ ├── reference.css │ │ │ ├── reference.html │ │ │ ├── smtp.html │ │ │ ├── socket.html │ │ │ ├── tcp.html │ │ │ ├── udp.html │ │ │ └── url.html │ │ │ ├── etc │ │ │ ├── README │ │ │ ├── b64.lua │ │ │ ├── check-links.lua │ │ │ ├── check-memory.lua │ │ │ ├── cookie.lua │ │ │ ├── dict.lua │ │ │ ├── dispatch.lua │ │ │ ├── eol.lua │ │ │ ├── forward.lua │ │ │ ├── get.lua │ │ │ ├── links │ │ │ ├── lp.lua │ │ │ ├── qp.lua │ │ │ └── tftp.lua │ │ │ ├── gem │ │ │ ├── ex1.lua │ │ │ ├── ex10.lua │ │ │ ├── ex11.lua │ │ │ ├── ex12.lua │ │ │ ├── ex2.lua │ │ │ ├── ex3.lua │ │ │ ├── ex4.lua │ │ │ ├── ex5.lua │ │ │ ├── ex6.lua │ │ │ ├── ex7.lua │ │ │ ├── ex8.lua │ │ │ ├── ex9.lua │ │ │ ├── gem.c │ │ │ ├── gt.b64 │ │ │ ├── input.bin │ │ │ ├── ltn012.tex │ │ │ ├── luasocket.png │ │ │ ├── myps2pdf │ │ │ ├── t1.lua │ │ │ ├── t1lf.txt │ │ │ ├── t2.lua │ │ │ ├── t2.txt │ │ │ ├── t2gt.qp │ │ │ ├── t3.lua │ │ │ ├── t4.lua │ │ │ ├── t5.lua │ │ │ └── test.lua │ │ │ ├── linux.cmd │ │ │ ├── logo.ps │ │ │ ├── ltn012.wiki │ │ │ ├── ltn013.wiki │ │ │ ├── luasocket-scm-0.rockspec │ │ │ ├── macosx.cmd │ │ │ ├── main.c │ │ │ ├── makefile.dist │ │ │ ├── mingw.cmd │ │ │ ├── premake5.lua │ │ │ ├── rockspec │ │ │ └── luasocket-3.0rc2-1.rockspec │ │ │ ├── samples │ │ │ ├── README │ │ │ ├── cddb.lua │ │ │ ├── daytimeclnt.lua │ │ │ ├── echoclnt.lua │ │ │ ├── echosrvr.lua │ │ │ ├── listener.lua │ │ │ ├── lpr.lua │ │ │ ├── mclisten.lua │ │ │ ├── mcsend.lua │ │ │ ├── talker.lua │ │ │ └── tinyirc.lua │ │ │ ├── src │ │ │ ├── auxiliar.c │ │ │ ├── auxiliar.h │ │ │ ├── buffer.c │ │ │ ├── buffer.h │ │ │ ├── compat.c │ │ │ ├── compat.h │ │ │ ├── except.c │ │ │ ├── except.h │ │ │ ├── ftp.lua │ │ │ ├── headers.lua │ │ │ ├── http.lua │ │ │ ├── inet.c │ │ │ ├── inet.h │ │ │ ├── io.c │ │ │ ├── io.h │ │ │ ├── ltn12.lua │ │ │ ├── luasocket.c │ │ │ ├── luasocket.h │ │ │ ├── mbox.lua │ │ │ ├── mime.c │ │ │ ├── mime.h │ │ │ ├── mime.lua │ │ │ ├── options.c │ │ │ ├── options.h │ │ │ ├── pierror.h │ │ │ ├── select.c │ │ │ ├── select.h │ │ │ ├── serial.c │ │ │ ├── smtp.lua │ │ │ ├── socket.h │ │ │ ├── socket.lua │ │ │ ├── tcp.c │ │ │ ├── tcp.h │ │ │ ├── timeout.c │ │ │ ├── timeout.h │ │ │ ├── tp.lua │ │ │ ├── udp.c │ │ │ ├── udp.h │ │ │ ├── unix.c │ │ │ ├── unix.h │ │ │ ├── unixdgram.c │ │ │ ├── unixdgram.h │ │ │ ├── unixstream.c │ │ │ ├── unixstream.h │ │ │ ├── url.lua │ │ │ ├── usocket.c │ │ │ ├── usocket.h │ │ │ ├── wsocket.c │ │ │ └── wsocket.h │ │ │ ├── test │ │ │ ├── README │ │ │ ├── auth │ │ │ │ ├── .htaccess │ │ │ │ ├── .htpasswd │ │ │ │ └── index.html │ │ │ ├── cgi │ │ │ │ ├── cat │ │ │ │ ├── cat-index-html │ │ │ │ ├── env │ │ │ │ ├── query-string │ │ │ │ ├── redirect-loop │ │ │ │ └── request-uri │ │ │ ├── dicttest.lua │ │ │ ├── excepttest.lua │ │ │ ├── find-connect-limit │ │ │ ├── ftptest.lua │ │ │ ├── hello.lua │ │ │ ├── httptest.lua │ │ │ ├── index.html │ │ │ ├── ltn12test.lua │ │ │ ├── luasocket.png │ │ │ ├── mimetest.lua │ │ │ ├── smtptest.lua │ │ │ ├── stufftest.lua │ │ │ ├── tcp-getoptions │ │ │ ├── test_bind.lua │ │ │ ├── test_getaddrinfo.lua │ │ │ ├── test_socket_error.lua │ │ │ ├── testclnt.lua │ │ │ ├── testmesg.lua │ │ │ ├── testsrvr.lua │ │ │ ├── testsupport.lua │ │ │ ├── tftptest.lua │ │ │ ├── udp-zero-length-send │ │ │ ├── udp-zero-length-send-recv │ │ │ ├── udpconnectclnt.lua │ │ │ ├── udpconnectsrvr.lua │ │ │ ├── unixdgramclnt.lua │ │ │ ├── unixdgramsrvr.lua │ │ │ ├── unixstreamclnt.lua │ │ │ ├── unixstreamsrvr.lua │ │ │ ├── upload.html │ │ │ ├── urltest.lua │ │ │ ├── utestclnt.lua │ │ │ └── utestsrvr.lua │ │ │ └── win32.cmd │ ├── build │ │ ├── codelite.bsd │ │ │ ├── Github.project │ │ │ ├── Premake5.project │ │ │ ├── Premake5.workspace │ │ │ ├── Web.project │ │ │ ├── curl-lib.project │ │ │ ├── example.project │ │ │ ├── lua-lib.project │ │ │ ├── luashim-lib.project │ │ │ ├── luasocket.project │ │ │ ├── mbedtls-lib.project │ │ │ ├── zip-lib.project │ │ │ └── zlib-lib.project │ │ ├── codelite.macosx │ │ │ ├── Github.project │ │ │ ├── Premake5.project │ │ │ ├── Premake5.workspace │ │ │ ├── Web.project │ │ │ ├── curl-lib.project │ │ │ ├── example.project │ │ │ ├── lua-lib.project │ │ │ ├── luashim-lib.project │ │ │ ├── luasocket.project │ │ │ ├── mbedtls-lib.project │ │ │ ├── zip-lib.project │ │ │ └── zlib-lib.project │ │ ├── codelite.unix │ │ │ ├── Github.project │ │ │ ├── Premake5.project │ │ │ ├── Premake5.workspace │ │ │ ├── Web.project │ │ │ ├── curl-lib.project │ │ │ ├── example.project │ │ │ ├── lua-lib.project │ │ │ ├── luashim-lib.project │ │ │ ├── luasocket.project │ │ │ ├── mbedtls-lib.project │ │ │ ├── zip-lib.project │ │ │ └── zlib-lib.project │ │ ├── codelite.windows │ │ │ ├── Github.project │ │ │ ├── Premake5.project │ │ │ ├── Premake5.workspace │ │ │ ├── Web.project │ │ │ ├── curl-lib.project │ │ │ ├── example.project │ │ │ ├── lua-lib.project │ │ │ ├── luashim-lib.project │ │ │ ├── luasocket.project │ │ │ ├── mbedtls-lib.project │ │ │ ├── zip-lib.project │ │ │ └── zlib-lib.project │ │ ├── gmake.bsd │ │ │ ├── Makefile │ │ │ ├── Premake5.make │ │ │ ├── curl-lib.make │ │ │ ├── example.make │ │ │ ├── lua-lib.make │ │ │ ├── luashim-lib.make │ │ │ ├── luasocket.make │ │ │ ├── mbedtls-lib.make │ │ │ ├── zip-lib.make │ │ │ └── zlib-lib.make │ │ ├── gmake.macosx │ │ │ ├── Makefile │ │ │ ├── Premake5.make │ │ │ ├── curl-lib.make │ │ │ ├── example.make │ │ │ ├── lua-lib.make │ │ │ ├── luashim-lib.make │ │ │ ├── luasocket.make │ │ │ ├── mbedtls-lib.make │ │ │ ├── zip-lib.make │ │ │ └── zlib-lib.make │ │ ├── gmake.unix │ │ │ ├── Makefile │ │ │ ├── Premake5.make │ │ │ ├── curl-lib.make │ │ │ ├── example.make │ │ │ ├── lua-lib.make │ │ │ ├── luashim-lib.make │ │ │ ├── luasocket.make │ │ │ ├── mbedtls-lib.make │ │ │ ├── zip-lib.make │ │ │ └── zlib-lib.make │ │ ├── gmake.windows │ │ │ ├── Makefile │ │ │ ├── Premake5.make │ │ │ ├── curl-lib.make │ │ │ ├── example.make │ │ │ ├── lua-lib.make │ │ │ ├── luashim-lib.make │ │ │ ├── luasocket.make │ │ │ ├── mbedtls-lib.make │ │ │ ├── zip-lib.make │ │ │ └── zlib-lib.make │ │ ├── vs2005 │ │ │ ├── Github.vcproj │ │ │ ├── Premake5.sln │ │ │ ├── Premake5.vcproj │ │ │ ├── Premake5.vcproj.user │ │ │ ├── Web.vcproj │ │ │ ├── curl-lib.vcproj │ │ │ ├── example.vcproj │ │ │ ├── lua-lib.vcproj │ │ │ ├── luashim-lib.vcproj │ │ │ ├── luasocket.vcproj │ │ │ ├── mbedtls-lib.vcproj │ │ │ ├── zip-lib.vcproj │ │ │ └── zlib-lib.vcproj │ │ ├── vs2008 │ │ │ ├── Github.vcproj │ │ │ ├── Premake5.sln │ │ │ ├── Premake5.vcproj │ │ │ ├── Premake5.vcproj.user │ │ │ ├── Web.vcproj │ │ │ ├── curl-lib.vcproj │ │ │ ├── example.vcproj │ │ │ ├── lua-lib.vcproj │ │ │ ├── luashim-lib.vcproj │ │ │ ├── luasocket.vcproj │ │ │ ├── mbedtls-lib.vcproj │ │ │ ├── zip-lib.vcproj │ │ │ └── zlib-lib.vcproj │ │ ├── vs2010 │ │ │ ├── Github.vcxproj │ │ │ ├── Github.vcxproj.filters │ │ │ ├── Premake5.sln │ │ │ ├── Premake5.vcxproj │ │ │ ├── Premake5.vcxproj.filters │ │ │ ├── Premake5.vcxproj.user │ │ │ ├── Web.vcxproj │ │ │ ├── Web.vcxproj.filters │ │ │ ├── curl-lib.vcxproj │ │ │ ├── curl-lib.vcxproj.filters │ │ │ ├── example.vcxproj │ │ │ ├── lua-lib.vcxproj │ │ │ ├── luashim-lib.vcxproj │ │ │ ├── luasocket.vcxproj │ │ │ ├── luasocket.vcxproj.filters │ │ │ ├── mbedtls-lib.vcxproj │ │ │ ├── mbedtls-lib.vcxproj.filters │ │ │ ├── zip-lib.vcxproj │ │ │ ├── zip-lib.vcxproj.filters │ │ │ └── zlib-lib.vcxproj │ │ ├── vs2012 │ │ │ ├── Github.vcxproj │ │ │ ├── Github.vcxproj.filters │ │ │ ├── Premake5.sln │ │ │ ├── Premake5.vcxproj │ │ │ ├── Premake5.vcxproj.filters │ │ │ ├── Premake5.vcxproj.user │ │ │ ├── Web.vcxproj │ │ │ ├── Web.vcxproj.filters │ │ │ ├── curl-lib.vcxproj │ │ │ ├── curl-lib.vcxproj.filters │ │ │ ├── example.vcxproj │ │ │ ├── lua-lib.vcxproj │ │ │ ├── luashim-lib.vcxproj │ │ │ ├── luasocket.vcxproj │ │ │ ├── luasocket.vcxproj.filters │ │ │ ├── mbedtls-lib.vcxproj │ │ │ ├── mbedtls-lib.vcxproj.filters │ │ │ ├── zip-lib.vcxproj │ │ │ ├── zip-lib.vcxproj.filters │ │ │ └── zlib-lib.vcxproj │ │ ├── vs2013 │ │ │ ├── Github.vcxproj │ │ │ ├── Github.vcxproj.filters │ │ │ ├── Premake5.sln │ │ │ ├── Premake5.vcxproj │ │ │ ├── Premake5.vcxproj.filters │ │ │ ├── Premake5.vcxproj.user │ │ │ ├── Web.vcxproj │ │ │ ├── Web.vcxproj.filters │ │ │ ├── curl-lib.vcxproj │ │ │ ├── curl-lib.vcxproj.filters │ │ │ ├── example.vcxproj │ │ │ ├── lua-lib.vcxproj │ │ │ ├── luashim-lib.vcxproj │ │ │ ├── luasocket.vcxproj │ │ │ ├── luasocket.vcxproj.filters │ │ │ ├── mbedtls-lib.vcxproj │ │ │ ├── mbedtls-lib.vcxproj.filters │ │ │ ├── zip-lib.vcxproj │ │ │ ├── zip-lib.vcxproj.filters │ │ │ └── zlib-lib.vcxproj │ │ ├── vs2015 │ │ │ ├── Github.vcxproj │ │ │ ├── Github.vcxproj.filters │ │ │ ├── Premake5.sln │ │ │ ├── Premake5.vcxproj │ │ │ ├── Premake5.vcxproj.filters │ │ │ ├── Premake5.vcxproj.user │ │ │ ├── Web.vcxproj │ │ │ ├── Web.vcxproj.filters │ │ │ ├── curl-lib.vcxproj │ │ │ ├── curl-lib.vcxproj.filters │ │ │ ├── example.vcxproj │ │ │ ├── lua-lib.vcxproj │ │ │ ├── luashim-lib.vcxproj │ │ │ ├── luasocket.vcxproj │ │ │ ├── luasocket.vcxproj.filters │ │ │ ├── mbedtls-lib.vcxproj │ │ │ ├── mbedtls-lib.vcxproj.filters │ │ │ ├── zip-lib.vcxproj │ │ │ ├── zip-lib.vcxproj.filters │ │ │ └── zlib-lib.vcxproj │ │ ├── vs2017 │ │ │ ├── Github.vcxproj │ │ │ ├── Github.vcxproj.filters │ │ │ ├── Premake5.sln │ │ │ ├── Premake5.vcxproj │ │ │ ├── Premake5.vcxproj.filters │ │ │ ├── Premake5.vcxproj.user │ │ │ ├── Web.vcxproj │ │ │ ├── Web.vcxproj.filters │ │ │ ├── curl-lib.vcxproj │ │ │ ├── curl-lib.vcxproj.filters │ │ │ ├── example.vcxproj │ │ │ ├── lua-lib.vcxproj │ │ │ ├── luashim-lib.vcxproj │ │ │ ├── luasocket.vcxproj │ │ │ ├── luasocket.vcxproj.filters │ │ │ ├── mbedtls-lib.vcxproj │ │ │ ├── mbedtls-lib.vcxproj.filters │ │ │ ├── zip-lib.vcxproj │ │ │ ├── zip-lib.vcxproj.filters │ │ │ └── zlib-lib.vcxproj │ │ ├── vs2019 │ │ │ ├── Github.vcxproj │ │ │ ├── Github.vcxproj.filters │ │ │ ├── Premake5.sln │ │ │ ├── Premake5.vcxproj │ │ │ ├── Premake5.vcxproj.filters │ │ │ ├── Premake5.vcxproj.user │ │ │ ├── Web.vcxproj │ │ │ ├── Web.vcxproj.filters │ │ │ ├── curl-lib.vcxproj │ │ │ ├── curl-lib.vcxproj.filters │ │ │ ├── example.vcxproj │ │ │ ├── lua-lib.vcxproj │ │ │ ├── luashim-lib.vcxproj │ │ │ ├── luasocket.vcxproj │ │ │ ├── luasocket.vcxproj.filters │ │ │ ├── mbedtls-lib.vcxproj │ │ │ ├── mbedtls-lib.vcxproj.filters │ │ │ ├── zip-lib.vcxproj │ │ │ ├── zip-lib.vcxproj.filters │ │ │ └── zlib-lib.vcxproj │ │ ├── vs2022 │ │ │ ├── Github.vcxproj │ │ │ ├── Github.vcxproj.filters │ │ │ ├── Premake5.sln │ │ │ ├── Premake5.vcxproj │ │ │ ├── Premake5.vcxproj.filters │ │ │ ├── Premake5.vcxproj.user │ │ │ ├── Web.vcxproj │ │ │ ├── Web.vcxproj.filters │ │ │ ├── curl-lib.vcxproj │ │ │ ├── curl-lib.vcxproj.filters │ │ │ ├── example.vcxproj │ │ │ ├── lua-lib.vcxproj │ │ │ ├── luashim-lib.vcxproj │ │ │ ├── luasocket.vcxproj │ │ │ ├── luasocket.vcxproj.filters │ │ │ ├── mbedtls-lib.vcxproj │ │ │ ├── mbedtls-lib.vcxproj.filters │ │ │ ├── zip-lib.vcxproj │ │ │ ├── zip-lib.vcxproj.filters │ │ │ └── zlib-lib.vcxproj │ │ ├── vs2026 │ │ │ ├── Github.vcxproj │ │ │ ├── Github.vcxproj.filters │ │ │ ├── Premake5.slnx │ │ │ ├── Premake5.vcxproj │ │ │ ├── Premake5.vcxproj.filters │ │ │ ├── Premake5.vcxproj.user │ │ │ ├── Web.vcxproj │ │ │ ├── Web.vcxproj.filters │ │ │ ├── curl-lib.vcxproj │ │ │ ├── curl-lib.vcxproj.filters │ │ │ ├── example.vcxproj │ │ │ ├── lua-lib.vcxproj │ │ │ ├── luashim-lib.vcxproj │ │ │ ├── luasocket.vcxproj │ │ │ ├── luasocket.vcxproj.filters │ │ │ ├── mbedtls-lib.vcxproj │ │ │ ├── mbedtls-lib.vcxproj.filters │ │ │ ├── zip-lib.vcxproj │ │ │ ├── zip-lib.vcxproj.filters │ │ │ └── zlib-lib.vcxproj │ │ └── xcode4 │ │ │ ├── Github.xcodeproj │ │ │ └── project.pbxproj │ │ │ ├── Premake5.xcodeproj │ │ │ └── project.pbxproj │ │ │ ├── Premake5.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ │ ├── Web.xcodeproj │ │ │ └── project.pbxproj │ │ │ ├── curl-lib.xcodeproj │ │ │ └── project.pbxproj │ │ │ ├── example.xcodeproj │ │ │ └── project.pbxproj │ │ │ ├── lua-lib.xcodeproj │ │ │ └── project.pbxproj │ │ │ ├── luashim-lib.xcodeproj │ │ │ └── project.pbxproj │ │ │ ├── luasocket.xcodeproj │ │ │ └── project.pbxproj │ │ │ ├── mbedtls-lib.xcodeproj │ │ │ └── project.pbxproj │ │ │ ├── zip-lib.xcodeproj │ │ │ └── project.pbxproj │ │ │ └── zlib-lib.xcodeproj │ │ │ └── project.pbxproj │ ├── contrib │ │ ├── curl │ │ │ ├── include │ │ │ │ ├── Makefile.am │ │ │ │ ├── README.md │ │ │ │ └── curl │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── curl.h │ │ │ │ │ ├── curlver.h │ │ │ │ │ ├── easy.h │ │ │ │ │ ├── header.h │ │ │ │ │ ├── mprintf.h │ │ │ │ │ ├── multi.h │ │ │ │ │ ├── options.h │ │ │ │ │ ├── stdcheaders.h │ │ │ │ │ ├── system.h │ │ │ │ │ ├── typecheck-gcc.h │ │ │ │ │ ├── urlapi.h │ │ │ │ │ └── websockets.h │ │ │ ├── lib │ │ │ │ ├── altsvc.c │ │ │ │ ├── altsvc.h │ │ │ │ ├── amigaos.c │ │ │ │ ├── amigaos.h │ │ │ │ ├── arpa_telnet.h │ │ │ │ ├── asyn-ares.c │ │ │ │ ├── asyn-thread.c │ │ │ │ ├── asyn.h │ │ │ │ ├── base64.c │ │ │ │ ├── bufq.c │ │ │ │ ├── bufq.h │ │ │ │ ├── bufref.c │ │ │ │ ├── bufref.h │ │ │ │ ├── c-hyper.c │ │ │ │ ├── c-hyper.h │ │ │ │ ├── cf-h1-proxy.c │ │ │ │ ├── cf-h1-proxy.h │ │ │ │ ├── cf-h2-proxy.c │ │ │ │ ├── cf-h2-proxy.h │ │ │ │ ├── cf-haproxy.c │ │ │ │ ├── cf-haproxy.h │ │ │ │ ├── cf-https-connect.c │ │ │ │ ├── cf-https-connect.h │ │ │ │ ├── cf-socket.c │ │ │ │ ├── cf-socket.h │ │ │ │ ├── cfilters.c │ │ │ │ ├── cfilters.h │ │ │ │ ├── config-cosmo.h │ │ │ │ ├── config-linux.h │ │ │ │ ├── config-osx.h │ │ │ │ ├── config-win32.h │ │ │ │ ├── conncache.c │ │ │ │ ├── conncache.h │ │ │ │ ├── connect.c │ │ │ │ ├── connect.h │ │ │ │ ├── content_encoding.c │ │ │ │ ├── content_encoding.h │ │ │ │ ├── cookie.c │ │ │ │ ├── cookie.h │ │ │ │ ├── curl_addrinfo.c │ │ │ │ ├── curl_addrinfo.h │ │ │ │ ├── curl_base64.h │ │ │ │ ├── curl_config.h.cmake │ │ │ │ ├── curl_ctype.h │ │ │ │ ├── curl_des.c │ │ │ │ ├── curl_des.h │ │ │ │ ├── curl_endian.c │ │ │ │ ├── curl_endian.h │ │ │ │ ├── curl_fnmatch.c │ │ │ │ ├── curl_fnmatch.h │ │ │ │ ├── curl_get_line.c │ │ │ │ ├── curl_get_line.h │ │ │ │ ├── curl_gethostname.c │ │ │ │ ├── curl_gethostname.h │ │ │ │ ├── curl_gssapi.c │ │ │ │ ├── curl_gssapi.h │ │ │ │ ├── curl_hmac.h │ │ │ │ ├── curl_krb5.h │ │ │ │ ├── curl_ldap.h │ │ │ │ ├── curl_md4.h │ │ │ │ ├── curl_md5.h │ │ │ │ ├── curl_memory.h │ │ │ │ ├── curl_memrchr.c │ │ │ │ ├── curl_memrchr.h │ │ │ │ ├── curl_multibyte.c │ │ │ │ ├── curl_multibyte.h │ │ │ │ ├── curl_ntlm_core.c │ │ │ │ ├── curl_ntlm_core.h │ │ │ │ ├── curl_path.c │ │ │ │ ├── curl_path.h │ │ │ │ ├── curl_printf.h │ │ │ │ ├── curl_range.c │ │ │ │ ├── curl_range.h │ │ │ │ ├── curl_rtmp.c │ │ │ │ ├── curl_rtmp.h │ │ │ │ ├── curl_sasl.c │ │ │ │ ├── curl_sasl.h │ │ │ │ ├── curl_setup.h │ │ │ │ ├── curl_setup_once.h │ │ │ │ ├── curl_sha256.h │ │ │ │ ├── curl_sha512_256.c │ │ │ │ ├── curl_sha512_256.h │ │ │ │ ├── curl_sspi.c │ │ │ │ ├── curl_sspi.h │ │ │ │ ├── curl_threads.c │ │ │ │ ├── curl_threads.h │ │ │ │ ├── curl_trc.c │ │ │ │ ├── curl_trc.h │ │ │ │ ├── curlx.h │ │ │ │ ├── cw-out.c │ │ │ │ ├── cw-out.h │ │ │ │ ├── dict.c │ │ │ │ ├── dict.h │ │ │ │ ├── dllmain.c │ │ │ │ ├── doh.c │ │ │ │ ├── doh.h │ │ │ │ ├── dynbuf.c │ │ │ │ ├── dynbuf.h │ │ │ │ ├── dynhds.c │ │ │ │ ├── dynhds.h │ │ │ │ ├── easy.c │ │ │ │ ├── easy_lock.h │ │ │ │ ├── easygetopt.c │ │ │ │ ├── easyif.h │ │ │ │ ├── easyoptions.c │ │ │ │ ├── easyoptions.h │ │ │ │ ├── escape.c │ │ │ │ ├── escape.h │ │ │ │ ├── file.c │ │ │ │ ├── file.h │ │ │ │ ├── fileinfo.c │ │ │ │ ├── fileinfo.h │ │ │ │ ├── fopen.c │ │ │ │ ├── fopen.h │ │ │ │ ├── formdata.c │ │ │ │ ├── formdata.h │ │ │ │ ├── ftp.c │ │ │ │ ├── ftp.h │ │ │ │ ├── ftplistparser.c │ │ │ │ ├── ftplistparser.h │ │ │ │ ├── functypes.h │ │ │ │ ├── getenv.c │ │ │ │ ├── getinfo.c │ │ │ │ ├── getinfo.h │ │ │ │ ├── gopher.c │ │ │ │ ├── gopher.h │ │ │ │ ├── hash.c │ │ │ │ ├── hash.h │ │ │ │ ├── headers.c │ │ │ │ ├── headers.h │ │ │ │ ├── hmac.c │ │ │ │ ├── hostasyn.c │ │ │ │ ├── hostip.c │ │ │ │ ├── hostip.h │ │ │ │ ├── hostip4.c │ │ │ │ ├── hostip6.c │ │ │ │ ├── hostsyn.c │ │ │ │ ├── hsts.c │ │ │ │ ├── hsts.h │ │ │ │ ├── http.c │ │ │ │ ├── http.h │ │ │ │ ├── http1.c │ │ │ │ ├── http1.h │ │ │ │ ├── http2.c │ │ │ │ ├── http2.h │ │ │ │ ├── http_aws_sigv4.c │ │ │ │ ├── http_aws_sigv4.h │ │ │ │ ├── http_chunks.c │ │ │ │ ├── http_chunks.h │ │ │ │ ├── http_digest.c │ │ │ │ ├── http_digest.h │ │ │ │ ├── http_negotiate.c │ │ │ │ ├── http_negotiate.h │ │ │ │ ├── http_ntlm.c │ │ │ │ ├── http_ntlm.h │ │ │ │ ├── http_proxy.c │ │ │ │ ├── http_proxy.h │ │ │ │ ├── idn.c │ │ │ │ ├── idn.h │ │ │ │ ├── if2ip.c │ │ │ │ ├── if2ip.h │ │ │ │ ├── imap.c │ │ │ │ ├── imap.h │ │ │ │ ├── inet_ntop.c │ │ │ │ ├── inet_ntop.h │ │ │ │ ├── inet_pton.c │ │ │ │ ├── inet_pton.h │ │ │ │ ├── krb5.c │ │ │ │ ├── ldap.c │ │ │ │ ├── libcurl.def │ │ │ │ ├── libcurl.rc │ │ │ │ ├── libcurl.vers.in │ │ │ │ ├── llist.c │ │ │ │ ├── llist.h │ │ │ │ ├── macos.c │ │ │ │ ├── macos.h │ │ │ │ ├── md4.c │ │ │ │ ├── md5.c │ │ │ │ ├── memdebug.c │ │ │ │ ├── memdebug.h │ │ │ │ ├── mime.c │ │ │ │ ├── mime.h │ │ │ │ ├── mprintf.c │ │ │ │ ├── mqtt.c │ │ │ │ ├── mqtt.h │ │ │ │ ├── multi.c │ │ │ │ ├── multihandle.h │ │ │ │ ├── multiif.h │ │ │ │ ├── netrc.c │ │ │ │ ├── netrc.h │ │ │ │ ├── nonblock.c │ │ │ │ ├── nonblock.h │ │ │ │ ├── noproxy.c │ │ │ │ ├── noproxy.h │ │ │ │ ├── openldap.c │ │ │ │ ├── optiontable.pl │ │ │ │ ├── parsedate.c │ │ │ │ ├── parsedate.h │ │ │ │ ├── pingpong.c │ │ │ │ ├── pingpong.h │ │ │ │ ├── pop3.c │ │ │ │ ├── pop3.h │ │ │ │ ├── progress.c │ │ │ │ ├── progress.h │ │ │ │ ├── psl.c │ │ │ │ ├── psl.h │ │ │ │ ├── rand.c │ │ │ │ ├── rand.h │ │ │ │ ├── rename.c │ │ │ │ ├── rename.h │ │ │ │ ├── request.c │ │ │ │ ├── request.h │ │ │ │ ├── rtsp.c │ │ │ │ ├── rtsp.h │ │ │ │ ├── select.c │ │ │ │ ├── select.h │ │ │ │ ├── sendf.c │ │ │ │ ├── sendf.h │ │ │ │ ├── setopt.c │ │ │ │ ├── setopt.h │ │ │ │ ├── setup-os400.h │ │ │ │ ├── setup-vms.h │ │ │ │ ├── setup-win32.h │ │ │ │ ├── sha256.c │ │ │ │ ├── share.c │ │ │ │ ├── share.h │ │ │ │ ├── sigpipe.h │ │ │ │ ├── slist.c │ │ │ │ ├── slist.h │ │ │ │ ├── smb.c │ │ │ │ ├── smb.h │ │ │ │ ├── smtp.c │ │ │ │ ├── smtp.h │ │ │ │ ├── sockaddr.h │ │ │ │ ├── socketpair.c │ │ │ │ ├── socketpair.h │ │ │ │ ├── socks.c │ │ │ │ ├── socks.h │ │ │ │ ├── socks_gssapi.c │ │ │ │ ├── socks_sspi.c │ │ │ │ ├── speedcheck.c │ │ │ │ ├── speedcheck.h │ │ │ │ ├── splay.c │ │ │ │ ├── splay.h │ │ │ │ ├── strcase.c │ │ │ │ ├── strcase.h │ │ │ │ ├── strdup.c │ │ │ │ ├── strdup.h │ │ │ │ ├── strerror.c │ │ │ │ ├── strerror.h │ │ │ │ ├── strtok.c │ │ │ │ ├── strtok.h │ │ │ │ ├── strtoofft.c │ │ │ │ ├── strtoofft.h │ │ │ │ ├── system_win32.c │ │ │ │ ├── system_win32.h │ │ │ │ ├── telnet.c │ │ │ │ ├── telnet.h │ │ │ │ ├── tftp.c │ │ │ │ ├── tftp.h │ │ │ │ ├── timediff.c │ │ │ │ ├── timediff.h │ │ │ │ ├── timeval.c │ │ │ │ ├── timeval.h │ │ │ │ ├── transfer.c │ │ │ │ ├── transfer.h │ │ │ │ ├── url.c │ │ │ │ ├── url.h │ │ │ │ ├── urlapi-int.h │ │ │ │ ├── urlapi.c │ │ │ │ ├── urldata.h │ │ │ │ ├── vauth │ │ │ │ │ ├── .checksrc │ │ │ │ │ ├── cleartext.c │ │ │ │ │ ├── cram.c │ │ │ │ │ ├── digest.c │ │ │ │ │ ├── digest.h │ │ │ │ │ ├── digest_sspi.c │ │ │ │ │ ├── gsasl.c │ │ │ │ │ ├── krb5_gssapi.c │ │ │ │ │ ├── krb5_sspi.c │ │ │ │ │ ├── ntlm.c │ │ │ │ │ ├── ntlm.h │ │ │ │ │ ├── ntlm_sspi.c │ │ │ │ │ ├── oauth2.c │ │ │ │ │ ├── spnego_gssapi.c │ │ │ │ │ ├── spnego_sspi.c │ │ │ │ │ ├── vauth.c │ │ │ │ │ └── vauth.h │ │ │ │ ├── version.c │ │ │ │ ├── version_win32.c │ │ │ │ ├── version_win32.h │ │ │ │ ├── vquic │ │ │ │ │ ├── .checksrc │ │ │ │ │ ├── curl_msh3.c │ │ │ │ │ ├── curl_msh3.h │ │ │ │ │ ├── curl_ngtcp2.c │ │ │ │ │ ├── curl_ngtcp2.h │ │ │ │ │ ├── curl_osslq.c │ │ │ │ │ ├── curl_osslq.h │ │ │ │ │ ├── curl_quiche.c │ │ │ │ │ ├── curl_quiche.h │ │ │ │ │ ├── vquic-tls.c │ │ │ │ │ ├── vquic-tls.h │ │ │ │ │ ├── vquic.c │ │ │ │ │ ├── vquic.h │ │ │ │ │ └── vquic_int.h │ │ │ │ ├── vssh │ │ │ │ │ ├── .checksrc │ │ │ │ │ ├── libssh.c │ │ │ │ │ ├── libssh2.c │ │ │ │ │ ├── ssh.h │ │ │ │ │ └── wolfssh.c │ │ │ │ ├── vtls │ │ │ │ │ ├── .checksrc │ │ │ │ │ ├── bearssl.c │ │ │ │ │ ├── bearssl.h │ │ │ │ │ ├── cipher_suite.c │ │ │ │ │ ├── cipher_suite.h │ │ │ │ │ ├── gtls.c │ │ │ │ │ ├── gtls.h │ │ │ │ │ ├── hostcheck.c │ │ │ │ │ ├── hostcheck.h │ │ │ │ │ ├── keylog.c │ │ │ │ │ ├── keylog.h │ │ │ │ │ ├── mbedtls.c │ │ │ │ │ ├── mbedtls.h │ │ │ │ │ ├── mbedtls_threadlock.c │ │ │ │ │ ├── mbedtls_threadlock.h │ │ │ │ │ ├── openssl.c │ │ │ │ │ ├── openssl.h │ │ │ │ │ ├── rustls.c │ │ │ │ │ ├── rustls.h │ │ │ │ │ ├── schannel.c │ │ │ │ │ ├── schannel.h │ │ │ │ │ ├── schannel_int.h │ │ │ │ │ ├── schannel_verify.c │ │ │ │ │ ├── sectransp.c │ │ │ │ │ ├── sectransp.h │ │ │ │ │ ├── vtls.c │ │ │ │ │ ├── vtls.h │ │ │ │ │ ├── vtls_int.h │ │ │ │ │ ├── wolfssl.c │ │ │ │ │ ├── wolfssl.h │ │ │ │ │ ├── x509asn1.c │ │ │ │ │ └── x509asn1.h │ │ │ │ ├── warnless.c │ │ │ │ ├── warnless.h │ │ │ │ ├── ws.c │ │ │ │ └── ws.h │ │ │ └── premake5.lua │ │ ├── libzip │ │ │ ├── config.h │ │ │ ├── include │ │ │ │ ├── zconf.h │ │ │ │ ├── zipconf.h │ │ │ │ └── zlib.h │ │ │ ├── mkstemp.c │ │ │ ├── premake5.lua │ │ │ ├── zconf.h │ │ │ ├── zip.h │ │ │ ├── zip_add.c │ │ │ ├── zip_add_dir.c │ │ │ ├── zip_add_entry.c │ │ │ ├── zip_close.c │ │ │ ├── zip_delete.c │ │ │ ├── zip_dir_add.c │ │ │ ├── zip_dirent.c │ │ │ ├── zip_discard.c │ │ │ ├── zip_entry.c │ │ │ ├── zip_err_str.c │ │ │ ├── zip_error.c │ │ │ ├── zip_error_clear.c │ │ │ ├── zip_error_get.c │ │ │ ├── zip_error_get_sys_type.c │ │ │ ├── zip_error_strerror.c │ │ │ ├── zip_error_to_str.c │ │ │ ├── zip_extra_field.c │ │ │ ├── zip_extra_field_api.c │ │ │ ├── zip_fclose.c │ │ │ ├── zip_fdopen.c │ │ │ ├── zip_file_add.c │ │ │ ├── zip_file_error_clear.c │ │ │ ├── zip_file_error_get.c │ │ │ ├── zip_file_get_comment.c │ │ │ ├── zip_file_get_external_attributes.c │ │ │ ├── zip_file_get_offset.c │ │ │ ├── zip_file_rename.c │ │ │ ├── zip_file_replace.c │ │ │ ├── zip_file_set_comment.c │ │ │ ├── zip_file_set_external_attributes.c │ │ │ ├── zip_file_strerror.c │ │ │ ├── zip_filerange_crc.c │ │ │ ├── zip_fopen.c │ │ │ ├── zip_fopen_encrypted.c │ │ │ ├── zip_fopen_index.c │ │ │ ├── zip_fopen_index_encrypted.c │ │ │ ├── zip_fread.c │ │ │ ├── zip_get_archive_comment.c │ │ │ ├── zip_get_archive_flag.c │ │ │ ├── zip_get_compression_implementation.c │ │ │ ├── zip_get_encryption_implementation.c │ │ │ ├── zip_get_file_comment.c │ │ │ ├── zip_get_name.c │ │ │ ├── zip_get_num_entries.c │ │ │ ├── zip_get_num_files.c │ │ │ ├── zip_memdup.c │ │ │ ├── zip_name_locate.c │ │ │ ├── zip_new.c │ │ │ ├── zip_open.c │ │ │ ├── zip_rename.c │ │ │ ├── zip_replace.c │ │ │ ├── zip_set_archive_comment.c │ │ │ ├── zip_set_archive_flag.c │ │ │ ├── zip_set_default_password.c │ │ │ ├── zip_set_file_comment.c │ │ │ ├── zip_set_file_compression.c │ │ │ ├── zip_set_name.c │ │ │ ├── zip_source_buffer.c │ │ │ ├── zip_source_close.c │ │ │ ├── zip_source_crc.c │ │ │ ├── zip_source_deflate.c │ │ │ ├── zip_source_error.c │ │ │ ├── zip_source_file.c │ │ │ ├── zip_source_filep.c │ │ │ ├── zip_source_free.c │ │ │ ├── zip_source_function.c │ │ │ ├── zip_source_layered.c │ │ │ ├── zip_source_open.c │ │ │ ├── zip_source_pkware.c │ │ │ ├── zip_source_pop.c │ │ │ ├── zip_source_read.c │ │ │ ├── zip_source_stat.c │ │ │ ├── zip_source_window.c │ │ │ ├── zip_source_zip.c │ │ │ ├── zip_source_zip_new.c │ │ │ ├── zip_stat.c │ │ │ ├── zip_stat_index.c │ │ │ ├── zip_stat_init.c │ │ │ ├── zip_strerror.c │ │ │ ├── zip_string.c │ │ │ ├── zip_unchange.c │ │ │ ├── zip_unchange_all.c │ │ │ ├── zip_unchange_archive.c │ │ │ ├── zip_unchange_data.c │ │ │ ├── zip_utf-8.c │ │ │ ├── zipconf.h │ │ │ ├── zipint.h │ │ │ └── zlib.h │ │ ├── lua │ │ │ ├── README │ │ │ ├── doc │ │ │ │ ├── contents.html │ │ │ │ ├── index.css │ │ │ │ ├── logo.gif │ │ │ │ ├── lua.1 │ │ │ │ ├── lua.css │ │ │ │ ├── luac.1 │ │ │ │ ├── manual.css │ │ │ │ ├── manual.html │ │ │ │ ├── osi-certified-72x60.png │ │ │ │ └── readme.html │ │ │ ├── premake5.lua │ │ │ └── src │ │ │ │ ├── lapi.c │ │ │ │ ├── lapi.h │ │ │ │ ├── lauxlib.c │ │ │ │ ├── lauxlib.h │ │ │ │ ├── lbaselib.c │ │ │ │ ├── lbitlib.c │ │ │ │ ├── lcode.c │ │ │ │ ├── lcode.h │ │ │ │ ├── lcorolib.c │ │ │ │ ├── lctype.c │ │ │ │ ├── lctype.h │ │ │ │ ├── ldblib.c │ │ │ │ ├── ldebug.c │ │ │ │ ├── ldebug.h │ │ │ │ ├── ldo.c │ │ │ │ ├── ldo.h │ │ │ │ ├── ldump.c │ │ │ │ ├── lfunc.c │ │ │ │ ├── lfunc.h │ │ │ │ ├── lgc.c │ │ │ │ ├── lgc.h │ │ │ │ ├── linit.c │ │ │ │ ├── liolib.c │ │ │ │ ├── llex.c │ │ │ │ ├── llex.h │ │ │ │ ├── llimits.h │ │ │ │ ├── lmathlib.c │ │ │ │ ├── lmem.c │ │ │ │ ├── lmem.h │ │ │ │ ├── loadlib.c │ │ │ │ ├── lobject.c │ │ │ │ ├── lobject.h │ │ │ │ ├── lopcodes.c │ │ │ │ ├── lopcodes.h │ │ │ │ ├── loslib.c │ │ │ │ ├── lparser.c │ │ │ │ ├── lparser.h │ │ │ │ ├── lprefix.h │ │ │ │ ├── lstate.c │ │ │ │ ├── lstate.h │ │ │ │ ├── lstring.c │ │ │ │ ├── lstring.h │ │ │ │ ├── lstrlib.c │ │ │ │ ├── ltable.c │ │ │ │ ├── ltable.h │ │ │ │ ├── ltablib.c │ │ │ │ ├── ltm.c │ │ │ │ ├── ltm.h │ │ │ │ ├── lua.c │ │ │ │ ├── lua.h │ │ │ │ ├── lua.hpp │ │ │ │ ├── luac.c │ │ │ │ ├── luaconf.h │ │ │ │ ├── lualib.h │ │ │ │ ├── lundump.c │ │ │ │ ├── lundump.h │ │ │ │ ├── lutf8lib.c │ │ │ │ ├── lvm.c │ │ │ │ ├── lvm.h │ │ │ │ ├── lzio.c │ │ │ │ └── lzio.h │ │ ├── luashim │ │ │ ├── lua.txt │ │ │ ├── luashim.c │ │ │ ├── luashim.h │ │ │ └── premake5.lua │ │ ├── mbedtls │ │ │ ├── .gitattributes │ │ │ ├── .gitignore │ │ │ ├── .gitmodules │ │ │ ├── .globalrc │ │ │ ├── .mypy.ini │ │ │ ├── .pylintrc │ │ │ ├── .readthedocs.yaml │ │ │ ├── .travis.yml │ │ │ ├── .uncrustify.cfg │ │ │ ├── 3rdparty │ │ │ │ ├── .gitignore │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Makefile.inc │ │ │ │ ├── everest │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── Makefile.inc │ │ │ │ │ ├── README.md │ │ │ │ │ ├── include │ │ │ │ │ │ └── everest │ │ │ │ │ │ │ ├── Hacl_Curve25519.h │ │ │ │ │ │ │ ├── everest.h │ │ │ │ │ │ │ ├── kremlib.h │ │ │ │ │ │ │ ├── kremlib │ │ │ │ │ │ │ ├── FStar_UInt128.h │ │ │ │ │ │ │ └── FStar_UInt64_FStar_UInt32_FStar_UInt16_FStar_UInt8.h │ │ │ │ │ │ │ ├── kremlin │ │ │ │ │ │ │ ├── c_endianness.h │ │ │ │ │ │ │ └── internal │ │ │ │ │ │ │ │ ├── builtin.h │ │ │ │ │ │ │ │ ├── callconv.h │ │ │ │ │ │ │ │ ├── compat.h │ │ │ │ │ │ │ │ ├── debug.h │ │ │ │ │ │ │ │ ├── target.h │ │ │ │ │ │ │ │ ├── types.h │ │ │ │ │ │ │ │ └── wasmsupport.h │ │ │ │ │ │ │ ├── vs2013 │ │ │ │ │ │ │ ├── Hacl_Curve25519.h │ │ │ │ │ │ │ ├── inttypes.h │ │ │ │ │ │ │ └── stdbool.h │ │ │ │ │ │ │ └── x25519.h │ │ │ │ │ └── library │ │ │ │ │ │ ├── Hacl_Curve25519.c │ │ │ │ │ │ ├── Hacl_Curve25519_joined.c │ │ │ │ │ │ ├── everest.c │ │ │ │ │ │ ├── kremlib │ │ │ │ │ │ ├── FStar_UInt128_extracted.c │ │ │ │ │ │ └── FStar_UInt64_FStar_UInt32_FStar_UInt16_FStar_UInt8.c │ │ │ │ │ │ ├── legacy │ │ │ │ │ │ └── Hacl_Curve25519.c │ │ │ │ │ │ └── x25519.c │ │ │ │ └── p256-m │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── Makefile.inc │ │ │ │ │ ├── README.md │ │ │ │ │ ├── p256-m │ │ │ │ │ ├── README.md │ │ │ │ │ ├── p256-m.c │ │ │ │ │ └── p256-m.h │ │ │ │ │ ├── p256-m_driver_entrypoints.c │ │ │ │ │ └── p256-m_driver_entrypoints.h │ │ │ ├── BRANCHES.md │ │ │ ├── BUGS.md │ │ │ ├── CMakeLists.txt │ │ │ ├── CONTRIBUTING.md │ │ │ ├── ChangeLog │ │ │ ├── ChangeLog.d │ │ │ │ └── 00README.md │ │ │ ├── DartConfiguration.tcl │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── SECURITY.md │ │ │ ├── SUPPORT.md │ │ │ ├── cmake │ │ │ │ └── MbedTLSConfig.cmake.in │ │ │ ├── configs │ │ │ │ ├── README.txt │ │ │ │ ├── config-ccm-psk-dtls1_2.h │ │ │ │ ├── config-ccm-psk-tls1_2.h │ │ │ │ ├── config-no-entropy.h │ │ │ │ ├── config-suite-b.h │ │ │ │ ├── config-symmetric-only.h │ │ │ │ ├── config-tfm.h │ │ │ │ ├── config-thread.h │ │ │ │ ├── crypto-config-ccm-aes-sha256.h │ │ │ │ └── ext │ │ │ │ │ ├── README.md │ │ │ │ │ ├── config_tfm.h │ │ │ │ │ ├── crypto_config_profile_medium.h │ │ │ │ │ ├── mbedtls_entropy_nv_seed_config.h │ │ │ │ │ └── tfm_mbedcrypto_config_profile_medium.h │ │ │ ├── dco.txt │ │ │ ├── docs │ │ │ │ ├── .gitignore │ │ │ │ ├── 3.0-migration-guide.md │ │ │ │ ├── Makefile │ │ │ │ ├── architecture │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── alternative-implementations.md │ │ │ │ │ ├── mbed-crypto-storage-specification.md │ │ │ │ │ ├── psa-crypto-implementation-structure.md │ │ │ │ │ ├── psa-keystore-design.md │ │ │ │ │ ├── psa-migration │ │ │ │ │ │ ├── md-cipher-dispatch.md │ │ │ │ │ │ ├── outcome-analysis.sh │ │ │ │ │ │ ├── psa-legacy-bridges.md │ │ │ │ │ │ ├── psa-limitations.md │ │ │ │ │ │ ├── strategy.md │ │ │ │ │ │ ├── syms.sh │ │ │ │ │ │ └── testing.md │ │ │ │ │ ├── psa-shared-memory.md │ │ │ │ │ ├── psa-storage-resilience.md │ │ │ │ │ ├── psa-thread-safety │ │ │ │ │ │ ├── key-slot-state-transitions.png │ │ │ │ │ │ └── psa-thread-safety.md │ │ │ │ │ ├── testing │ │ │ │ │ │ ├── driver-interface-test-strategy.md │ │ │ │ │ │ ├── invasive-testing.md │ │ │ │ │ │ ├── psa-storage-format-testing.md │ │ │ │ │ │ └── test-framework.md │ │ │ │ │ └── tls13-support.md │ │ │ │ ├── conf.py │ │ │ │ ├── driver-only-builds.md │ │ │ │ ├── index.rst │ │ │ │ ├── proposed │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README │ │ │ │ │ ├── psa-conditional-inclusion-c.md │ │ │ │ │ ├── psa-driver-developer-guide.md │ │ │ │ │ ├── psa-driver-integration-guide.md │ │ │ │ │ ├── psa-driver-interface.md │ │ │ │ │ └── psa-driver-wrappers-codegen-migration-guide.md │ │ │ │ ├── psa-driver-example-and-guide.md │ │ │ │ ├── psa-transition.md │ │ │ │ ├── redirects.yaml │ │ │ │ ├── requirements.in │ │ │ │ ├── requirements.txt │ │ │ │ ├── tls13-early-data.md │ │ │ │ └── use-psa-crypto.md │ │ │ ├── doxygen │ │ │ │ ├── input │ │ │ │ │ ├── doc_encdec.h │ │ │ │ │ ├── doc_hashing.h │ │ │ │ │ ├── doc_mainpage.h │ │ │ │ │ ├── doc_rng.h │ │ │ │ │ ├── doc_ssltls.h │ │ │ │ │ ├── doc_tcpip.h │ │ │ │ │ └── doc_x509.h │ │ │ │ └── mbedtls.doxyfile │ │ │ ├── include │ │ │ │ ├── .gitignore │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── mbedtls │ │ │ │ │ ├── aes.h │ │ │ │ │ ├── aria.h │ │ │ │ │ ├── asn1.h │ │ │ │ │ ├── asn1write.h │ │ │ │ │ ├── base64.h │ │ │ │ │ ├── bignum.h │ │ │ │ │ ├── block_cipher.h │ │ │ │ │ ├── build_info.h │ │ │ │ │ ├── camellia.h │ │ │ │ │ ├── ccm.h │ │ │ │ │ ├── chacha20.h │ │ │ │ │ ├── chachapoly.h │ │ │ │ │ ├── check_config.h │ │ │ │ │ ├── cipher.h │ │ │ │ │ ├── cmac.h │ │ │ │ │ ├── compat-2.x.h │ │ │ │ │ ├── config_adjust_legacy_crypto.h │ │ │ │ │ ├── config_adjust_legacy_from_psa.h │ │ │ │ │ ├── config_adjust_psa_from_legacy.h │ │ │ │ │ ├── config_adjust_psa_superset_legacy.h │ │ │ │ │ ├── config_adjust_ssl.h │ │ │ │ │ ├── config_adjust_x509.h │ │ │ │ │ ├── config_psa.h │ │ │ │ │ ├── constant_time.h │ │ │ │ │ ├── ctr_drbg.h │ │ │ │ │ ├── debug.h │ │ │ │ │ ├── des.h │ │ │ │ │ ├── dhm.h │ │ │ │ │ ├── ecdh.h │ │ │ │ │ ├── ecdsa.h │ │ │ │ │ ├── ecjpake.h │ │ │ │ │ ├── ecp.h │ │ │ │ │ ├── entropy.h │ │ │ │ │ ├── error.h │ │ │ │ │ ├── gcm.h │ │ │ │ │ ├── hkdf.h │ │ │ │ │ ├── hmac_drbg.h │ │ │ │ │ ├── lms.h │ │ │ │ │ ├── mbedtls_config.h │ │ │ │ │ ├── md.h │ │ │ │ │ ├── md5.h │ │ │ │ │ ├── memory_buffer_alloc.h │ │ │ │ │ ├── net_sockets.h │ │ │ │ │ ├── nist_kw.h │ │ │ │ │ ├── oid.h │ │ │ │ │ ├── pem.h │ │ │ │ │ ├── pk.h │ │ │ │ │ ├── pkcs12.h │ │ │ │ │ ├── pkcs5.h │ │ │ │ │ ├── pkcs7.h │ │ │ │ │ ├── platform.h │ │ │ │ │ ├── platform_time.h │ │ │ │ │ ├── platform_util.h │ │ │ │ │ ├── poly1305.h │ │ │ │ │ ├── private_access.h │ │ │ │ │ ├── psa_util.h │ │ │ │ │ ├── ripemd160.h │ │ │ │ │ ├── rsa.h │ │ │ │ │ ├── sha1.h │ │ │ │ │ ├── sha256.h │ │ │ │ │ ├── sha3.h │ │ │ │ │ ├── sha512.h │ │ │ │ │ ├── ssl.h │ │ │ │ │ ├── ssl_cache.h │ │ │ │ │ ├── ssl_ciphersuites.h │ │ │ │ │ ├── ssl_cookie.h │ │ │ │ │ ├── ssl_ticket.h │ │ │ │ │ ├── threading.h │ │ │ │ │ ├── timing.h │ │ │ │ │ ├── version.h │ │ │ │ │ ├── x509.h │ │ │ │ │ ├── x509_crl.h │ │ │ │ │ ├── x509_crt.h │ │ │ │ │ └── x509_csr.h │ │ │ │ └── psa │ │ │ │ │ ├── build_info.h │ │ │ │ │ ├── crypto.h │ │ │ │ │ ├── crypto_adjust_auto_enabled.h │ │ │ │ │ ├── crypto_adjust_config_dependencies.h │ │ │ │ │ ├── crypto_adjust_config_key_pair_types.h │ │ │ │ │ ├── crypto_adjust_config_synonyms.h │ │ │ │ │ ├── crypto_builtin_composites.h │ │ │ │ │ ├── crypto_builtin_key_derivation.h │ │ │ │ │ ├── crypto_builtin_primitives.h │ │ │ │ │ ├── crypto_compat.h │ │ │ │ │ ├── crypto_config.h │ │ │ │ │ ├── crypto_driver_common.h │ │ │ │ │ ├── crypto_driver_contexts_composites.h │ │ │ │ │ ├── crypto_driver_contexts_key_derivation.h │ │ │ │ │ ├── crypto_driver_contexts_primitives.h │ │ │ │ │ ├── crypto_extra.h │ │ │ │ │ ├── crypto_legacy.h │ │ │ │ │ ├── crypto_platform.h │ │ │ │ │ ├── crypto_se_driver.h │ │ │ │ │ ├── crypto_sizes.h │ │ │ │ │ ├── crypto_struct.h │ │ │ │ │ ├── crypto_types.h │ │ │ │ │ └── crypto_values.h │ │ │ ├── library │ │ │ │ ├── .gitignore │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Makefile │ │ │ │ ├── aes.c │ │ │ │ ├── aesce.c │ │ │ │ ├── aesce.h │ │ │ │ ├── aesni.c │ │ │ │ ├── aesni.h │ │ │ │ ├── alignment.h │ │ │ │ ├── aria.c │ │ │ │ ├── asn1parse.c │ │ │ │ ├── asn1write.c │ │ │ │ ├── base64.c │ │ │ │ ├── base64_internal.h │ │ │ │ ├── bignum.c │ │ │ │ ├── bignum_core.c │ │ │ │ ├── bignum_core.h │ │ │ │ ├── bignum_internal.h │ │ │ │ ├── bignum_mod.c │ │ │ │ ├── bignum_mod.h │ │ │ │ ├── bignum_mod_raw.c │ │ │ │ ├── bignum_mod_raw.h │ │ │ │ ├── bignum_mod_raw_invasive.h │ │ │ │ ├── block_cipher.c │ │ │ │ ├── block_cipher_internal.h │ │ │ │ ├── bn_mul.h │ │ │ │ ├── camellia.c │ │ │ │ ├── ccm.c │ │ │ │ ├── chacha20.c │ │ │ │ ├── chachapoly.c │ │ │ │ ├── check_crypto_config.h │ │ │ │ ├── cipher.c │ │ │ │ ├── cipher_wrap.c │ │ │ │ ├── cipher_wrap.h │ │ │ │ ├── cmac.c │ │ │ │ ├── common.h │ │ │ │ ├── constant_time.c │ │ │ │ ├── constant_time_impl.h │ │ │ │ ├── constant_time_internal.h │ │ │ │ ├── ctr.h │ │ │ │ ├── ctr_drbg.c │ │ │ │ ├── debug.c │ │ │ │ ├── debug_internal.h │ │ │ │ ├── des.c │ │ │ │ ├── dhm.c │ │ │ │ ├── ecdh.c │ │ │ │ ├── ecdsa.c │ │ │ │ ├── ecjpake.c │ │ │ │ ├── ecp.c │ │ │ │ ├── ecp_curves.c │ │ │ │ ├── ecp_curves_new.c │ │ │ │ ├── ecp_internal_alt.h │ │ │ │ ├── ecp_invasive.h │ │ │ │ ├── entropy.c │ │ │ │ ├── entropy_poll.c │ │ │ │ ├── entropy_poll.h │ │ │ │ ├── error.c │ │ │ │ ├── gcm.c │ │ │ │ ├── hkdf.c │ │ │ │ ├── hmac_drbg.c │ │ │ │ ├── lmots.c │ │ │ │ ├── lmots.h │ │ │ │ ├── lms.c │ │ │ │ ├── md.c │ │ │ │ ├── md5.c │ │ │ │ ├── md_psa.h │ │ │ │ ├── md_wrap.h │ │ │ │ ├── memory_buffer_alloc.c │ │ │ │ ├── mps_common.h │ │ │ │ ├── mps_error.h │ │ │ │ ├── mps_reader.c │ │ │ │ ├── mps_reader.h │ │ │ │ ├── mps_trace.c │ │ │ │ ├── mps_trace.h │ │ │ │ ├── net_sockets.c │ │ │ │ ├── nist_kw.c │ │ │ │ ├── oid.c │ │ │ │ ├── padlock.c │ │ │ │ ├── padlock.h │ │ │ │ ├── pem.c │ │ │ │ ├── pk.c │ │ │ │ ├── pk_ecc.c │ │ │ │ ├── pk_internal.h │ │ │ │ ├── pk_wrap.c │ │ │ │ ├── pk_wrap.h │ │ │ │ ├── pkcs12.c │ │ │ │ ├── pkcs5.c │ │ │ │ ├── pkcs7.c │ │ │ │ ├── pkparse.c │ │ │ │ ├── pkwrite.c │ │ │ │ ├── pkwrite.h │ │ │ │ ├── platform.c │ │ │ │ ├── platform_util.c │ │ │ │ ├── poly1305.c │ │ │ │ ├── psa_crypto.c │ │ │ │ ├── psa_crypto_aead.c │ │ │ │ ├── psa_crypto_aead.h │ │ │ │ ├── psa_crypto_cipher.c │ │ │ │ ├── psa_crypto_cipher.h │ │ │ │ ├── psa_crypto_client.c │ │ │ │ ├── psa_crypto_core.h │ │ │ │ ├── psa_crypto_core_common.h │ │ │ │ ├── psa_crypto_driver_wrappers.h │ │ │ │ ├── psa_crypto_driver_wrappers_no_static.c │ │ │ │ ├── psa_crypto_driver_wrappers_no_static.h │ │ │ │ ├── psa_crypto_ecp.c │ │ │ │ ├── psa_crypto_ecp.h │ │ │ │ ├── psa_crypto_ffdh.c │ │ │ │ ├── psa_crypto_ffdh.h │ │ │ │ ├── psa_crypto_hash.c │ │ │ │ ├── psa_crypto_hash.h │ │ │ │ ├── psa_crypto_invasive.h │ │ │ │ ├── psa_crypto_its.h │ │ │ │ ├── psa_crypto_mac.c │ │ │ │ ├── psa_crypto_mac.h │ │ │ │ ├── psa_crypto_pake.c │ │ │ │ ├── psa_crypto_pake.h │ │ │ │ ├── psa_crypto_random_impl.h │ │ │ │ ├── psa_crypto_rsa.c │ │ │ │ ├── psa_crypto_rsa.h │ │ │ │ ├── psa_crypto_se.c │ │ │ │ ├── psa_crypto_se.h │ │ │ │ ├── psa_crypto_slot_management.c │ │ │ │ ├── psa_crypto_slot_management.h │ │ │ │ ├── psa_crypto_storage.c │ │ │ │ ├── psa_crypto_storage.h │ │ │ │ ├── psa_its_file.c │ │ │ │ ├── psa_util.c │ │ │ │ ├── psa_util_internal.h │ │ │ │ ├── ripemd160.c │ │ │ │ ├── rsa.c │ │ │ │ ├── rsa_alt_helpers.c │ │ │ │ ├── rsa_alt_helpers.h │ │ │ │ ├── rsa_internal.h │ │ │ │ ├── sha1.c │ │ │ │ ├── sha256.c │ │ │ │ ├── sha3.c │ │ │ │ ├── sha512.c │ │ │ │ ├── ssl_cache.c │ │ │ │ ├── ssl_ciphersuites.c │ │ │ │ ├── ssl_ciphersuites_internal.h │ │ │ │ ├── ssl_client.c │ │ │ │ ├── ssl_client.h │ │ │ │ ├── ssl_cookie.c │ │ │ │ ├── ssl_debug_helpers.h │ │ │ │ ├── ssl_debug_helpers_generated.c │ │ │ │ ├── ssl_misc.h │ │ │ │ ├── ssl_msg.c │ │ │ │ ├── ssl_ticket.c │ │ │ │ ├── ssl_tls.c │ │ │ │ ├── ssl_tls12_client.c │ │ │ │ ├── ssl_tls12_server.c │ │ │ │ ├── ssl_tls13_client.c │ │ │ │ ├── ssl_tls13_generic.c │ │ │ │ ├── ssl_tls13_invasive.h │ │ │ │ ├── ssl_tls13_keys.c │ │ │ │ ├── ssl_tls13_keys.h │ │ │ │ ├── ssl_tls13_server.c │ │ │ │ ├── threading.c │ │ │ │ ├── timing.c │ │ │ │ ├── version.c │ │ │ │ ├── version_features.c │ │ │ │ ├── x509.c │ │ │ │ ├── x509_create.c │ │ │ │ ├── x509_crl.c │ │ │ │ ├── x509_crt.c │ │ │ │ ├── x509_csr.c │ │ │ │ ├── x509_internal.h │ │ │ │ ├── x509write.c │ │ │ │ ├── x509write_crt.c │ │ │ │ └── x509write_csr.c │ │ │ ├── pkgconfig │ │ │ │ ├── .gitignore │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── JoinPaths.cmake │ │ │ │ ├── mbedcrypto.pc.in │ │ │ │ ├── mbedtls.pc.in │ │ │ │ └── mbedx509.pc.in │ │ │ ├── premake5.lua │ │ │ ├── programs │ │ │ │ ├── .gitignore │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── aes │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── crypt_and_hash.c │ │ │ │ ├── cipher │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── cipher_aead_demo.c │ │ │ │ ├── demo_common.sh │ │ │ │ ├── fuzz │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README.md │ │ │ │ │ ├── common.c │ │ │ │ │ ├── common.h │ │ │ │ │ ├── corpuses │ │ │ │ │ │ ├── client │ │ │ │ │ │ ├── dtlsclient │ │ │ │ │ │ ├── dtlsserver │ │ │ │ │ │ └── server │ │ │ │ │ ├── fuzz_client.c │ │ │ │ │ ├── fuzz_client.options │ │ │ │ │ ├── fuzz_dtlsclient.c │ │ │ │ │ ├── fuzz_dtlsclient.options │ │ │ │ │ ├── fuzz_dtlsserver.c │ │ │ │ │ ├── fuzz_dtlsserver.options │ │ │ │ │ ├── fuzz_pkcs7.c │ │ │ │ │ ├── fuzz_pkcs7.options │ │ │ │ │ ├── fuzz_privkey.c │ │ │ │ │ ├── fuzz_privkey.options │ │ │ │ │ ├── fuzz_pubkey.c │ │ │ │ │ ├── fuzz_pubkey.options │ │ │ │ │ ├── fuzz_server.c │ │ │ │ │ ├── fuzz_server.options │ │ │ │ │ ├── fuzz_x509crl.c │ │ │ │ │ ├── fuzz_x509crl.options │ │ │ │ │ ├── fuzz_x509crt.c │ │ │ │ │ ├── fuzz_x509crt.options │ │ │ │ │ ├── fuzz_x509csr.c │ │ │ │ │ ├── fuzz_x509csr.options │ │ │ │ │ └── onefile.c │ │ │ │ ├── hash │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── generic_sum.c │ │ │ │ │ ├── hello.c │ │ │ │ │ └── md_hmac_demo.c │ │ │ │ ├── pkey │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── dh_client.c │ │ │ │ │ ├── dh_genprime.c │ │ │ │ │ ├── dh_prime.txt │ │ │ │ │ ├── dh_server.c │ │ │ │ │ ├── ecdh_curve25519.c │ │ │ │ │ ├── ecdsa.c │ │ │ │ │ ├── gen_key.c │ │ │ │ │ ├── key_app.c │ │ │ │ │ ├── key_app_writer.c │ │ │ │ │ ├── mpi_demo.c │ │ │ │ │ ├── pk_decrypt.c │ │ │ │ │ ├── pk_encrypt.c │ │ │ │ │ ├── pk_sign.c │ │ │ │ │ ├── pk_verify.c │ │ │ │ │ ├── rsa_decrypt.c │ │ │ │ │ ├── rsa_encrypt.c │ │ │ │ │ ├── rsa_genkey.c │ │ │ │ │ ├── rsa_priv.txt │ │ │ │ │ ├── rsa_pub.txt │ │ │ │ │ ├── rsa_sign.c │ │ │ │ │ ├── rsa_sign_pss.c │ │ │ │ │ ├── rsa_verify.c │ │ │ │ │ └── rsa_verify_pss.c │ │ │ │ ├── psa │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── aead_demo.c │ │ │ │ │ ├── crypto_examples.c │ │ │ │ │ ├── hmac_demo.c │ │ │ │ │ ├── key_ladder_demo.c │ │ │ │ │ ├── key_ladder_demo.sh │ │ │ │ │ ├── psa_constant_names.c │ │ │ │ │ ├── psa_constant_names_generated.c │ │ │ │ │ ├── psa_hash.c │ │ │ │ │ └── psa_hash_demo.sh │ │ │ │ ├── random │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── gen_entropy.c │ │ │ │ │ └── gen_random_ctr_drbg.c │ │ │ │ ├── ssl │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── dtls_client.c │ │ │ │ │ ├── dtls_server.c │ │ │ │ │ ├── mini_client.c │ │ │ │ │ ├── ssl_client1.c │ │ │ │ │ ├── ssl_client2.c │ │ │ │ │ ├── ssl_context_info.c │ │ │ │ │ ├── ssl_fork_server.c │ │ │ │ │ ├── ssl_mail_client.c │ │ │ │ │ ├── ssl_pthread_server.c │ │ │ │ │ ├── ssl_server.c │ │ │ │ │ ├── ssl_server2.c │ │ │ │ │ ├── ssl_test_common_source.c │ │ │ │ │ ├── ssl_test_lib.c │ │ │ │ │ └── ssl_test_lib.h │ │ │ │ ├── test │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── benchmark.c │ │ │ │ │ ├── cmake_package │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ └── cmake_package.c │ │ │ │ │ ├── cmake_package_install │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ └── cmake_package_install.c │ │ │ │ │ ├── cmake_subproject │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ └── cmake_subproject.c │ │ │ │ │ ├── dlopen.c │ │ │ │ │ ├── dlopen_demo.sh │ │ │ │ │ ├── generate_cpp_dummy_build.sh │ │ │ │ │ ├── metatest.c │ │ │ │ │ ├── query_compile_time_config.c │ │ │ │ │ ├── query_config.c │ │ │ │ │ ├── query_config.h │ │ │ │ │ ├── query_included_headers.c │ │ │ │ │ ├── selftest.c │ │ │ │ │ ├── udp_proxy.c │ │ │ │ │ ├── udp_proxy_wrapper.sh │ │ │ │ │ └── zeroize.c │ │ │ │ ├── util │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── pem2der.c │ │ │ │ │ └── strerror.c │ │ │ │ ├── wince_main.c │ │ │ │ └── x509 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── cert_app.c │ │ │ │ │ ├── cert_req.c │ │ │ │ │ ├── cert_write.c │ │ │ │ │ ├── crl_app.c │ │ │ │ │ ├── load_roots.c │ │ │ │ │ └── req_app.c │ │ │ ├── scripts │ │ │ │ ├── abi_check.py │ │ │ │ ├── apidoc_full.sh │ │ │ │ ├── assemble_changelog.py │ │ │ │ ├── basic.requirements.txt │ │ │ │ ├── bump_version.sh │ │ │ │ ├── ci.requirements.txt │ │ │ │ ├── code_size_compare.py │ │ │ │ ├── code_style.py │ │ │ │ ├── common.make │ │ │ │ ├── config.pl │ │ │ │ ├── config.py │ │ │ │ ├── data_files │ │ │ │ │ ├── driver_jsons │ │ │ │ │ │ ├── driver_opaque_schema.json │ │ │ │ │ │ ├── driver_transparent_schema.json │ │ │ │ │ │ ├── driverlist.json │ │ │ │ │ │ ├── mbedtls_test_opaque_driver.json │ │ │ │ │ │ ├── mbedtls_test_transparent_driver.json │ │ │ │ │ │ └── p256_transparent_driver.json │ │ │ │ │ ├── driver_templates │ │ │ │ │ │ ├── OS-template-opaque.jinja │ │ │ │ │ │ ├── OS-template-transparent.jinja │ │ │ │ │ │ ├── psa_crypto_driver_wrappers.h.jinja │ │ │ │ │ │ └── psa_crypto_driver_wrappers_no_static.c.jinja │ │ │ │ │ ├── error.fmt │ │ │ │ │ ├── query_config.fmt │ │ │ │ │ ├── version_features.fmt │ │ │ │ │ ├── vs2017-app-template.vcxproj │ │ │ │ │ ├── vs2017-main-template.vcxproj │ │ │ │ │ └── vs2017-sln-template.sln │ │ │ │ ├── driver.requirements.txt │ │ │ │ ├── ecc-heap.sh │ │ │ │ ├── ecp_comb_table.py │ │ │ │ ├── footprint.sh │ │ │ │ ├── framework_scripts_path.py │ │ │ │ ├── generate_driver_wrappers.py │ │ │ │ ├── generate_errors.pl │ │ │ │ ├── generate_features.pl │ │ │ │ ├── generate_psa_constants.py │ │ │ │ ├── generate_query_config.pl │ │ │ │ ├── generate_ssl_debug_helpers.py │ │ │ │ ├── generate_visualc_files.pl │ │ │ │ ├── lcov.sh │ │ │ │ ├── maintainer.requirements.txt │ │ │ │ ├── make_generated_files.bat │ │ │ │ ├── massif_max.pl │ │ │ │ ├── memory.sh │ │ │ │ ├── min_requirements.py │ │ │ │ ├── output_env.sh │ │ │ │ ├── prepare_release.sh │ │ │ │ ├── project_name.txt │ │ │ │ ├── tmp_ignore_makefiles.sh │ │ │ │ └── windows_msbuild.bat │ │ │ ├── tests │ │ │ │ ├── .gitignore │ │ │ │ ├── .jenkins │ │ │ │ │ └── Jenkinsfile │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Descriptions.txt │ │ │ │ ├── Makefile │ │ │ │ ├── compat-in-docker.sh │ │ │ │ ├── compat.sh │ │ │ │ ├── configs │ │ │ │ │ ├── tls13-only.h │ │ │ │ │ ├── user-config-for-test.h │ │ │ │ │ ├── user-config-malloc-0-null.h │ │ │ │ │ └── user-config-zeroize-memset.h │ │ │ │ ├── context-info.sh │ │ │ │ ├── docker │ │ │ │ │ └── bionic │ │ │ │ │ │ └── Dockerfile │ │ │ │ ├── git-scripts │ │ │ │ │ ├── README.md │ │ │ │ │ └── pre-push.sh │ │ │ │ ├── include │ │ │ │ │ ├── alt-dummy │ │ │ │ │ │ ├── aes_alt.h │ │ │ │ │ │ ├── aria_alt.h │ │ │ │ │ │ ├── camellia_alt.h │ │ │ │ │ │ ├── ccm_alt.h │ │ │ │ │ │ ├── chacha20_alt.h │ │ │ │ │ │ ├── chachapoly_alt.h │ │ │ │ │ │ ├── cmac_alt.h │ │ │ │ │ │ ├── des_alt.h │ │ │ │ │ │ ├── dhm_alt.h │ │ │ │ │ │ ├── ecjpake_alt.h │ │ │ │ │ │ ├── ecp_alt.h │ │ │ │ │ │ ├── gcm_alt.h │ │ │ │ │ │ ├── md5_alt.h │ │ │ │ │ │ ├── nist_kw_alt.h │ │ │ │ │ │ ├── platform_alt.h │ │ │ │ │ │ ├── poly1305_alt.h │ │ │ │ │ │ ├── ripemd160_alt.h │ │ │ │ │ │ ├── rsa_alt.h │ │ │ │ │ │ ├── sha1_alt.h │ │ │ │ │ │ ├── sha256_alt.h │ │ │ │ │ │ ├── sha512_alt.h │ │ │ │ │ │ ├── threading_alt.h │ │ │ │ │ │ └── timing_alt.h │ │ │ │ │ ├── alt-extra │ │ │ │ │ │ └── psa │ │ │ │ │ │ │ └── crypto.h │ │ │ │ │ ├── baremetal-override │ │ │ │ │ │ └── time.h │ │ │ │ │ ├── spe │ │ │ │ │ │ └── crypto_spe.h │ │ │ │ │ └── test │ │ │ │ │ │ ├── arguments.h │ │ │ │ │ │ ├── asn1_helpers.h │ │ │ │ │ │ ├── bignum_helpers.h │ │ │ │ │ │ ├── certs.h │ │ │ │ │ │ ├── constant_flow.h │ │ │ │ │ │ ├── drivers │ │ │ │ │ │ ├── aead.h │ │ │ │ │ │ ├── asymmetric_encryption.h │ │ │ │ │ │ ├── cipher.h │ │ │ │ │ │ ├── config_test_driver.h │ │ │ │ │ │ ├── crypto_config_test_driver_extension.h │ │ │ │ │ │ ├── hash.h │ │ │ │ │ │ ├── key_agreement.h │ │ │ │ │ │ ├── key_management.h │ │ │ │ │ │ ├── mac.h │ │ │ │ │ │ ├── pake.h │ │ │ │ │ │ ├── signature.h │ │ │ │ │ │ └── test_driver.h │ │ │ │ │ │ ├── fake_external_rng_for_test.h │ │ │ │ │ │ ├── helpers.h │ │ │ │ │ │ ├── macros.h │ │ │ │ │ │ ├── memory.h │ │ │ │ │ │ ├── psa_crypto_helpers.h │ │ │ │ │ │ ├── psa_exercise_key.h │ │ │ │ │ │ ├── psa_helpers.h │ │ │ │ │ │ ├── psa_memory_poisoning_wrappers.h │ │ │ │ │ │ ├── psa_test_wrappers.h │ │ │ │ │ │ ├── random.h │ │ │ │ │ │ ├── ssl_helpers.h │ │ │ │ │ │ └── threading_helpers.h │ │ │ │ ├── make-in-docker.sh │ │ │ │ ├── opt-testcases │ │ │ │ │ ├── tls13-compat.sh │ │ │ │ │ ├── tls13-kex-modes.sh │ │ │ │ │ └── tls13-misc.sh │ │ │ │ ├── scripts │ │ │ │ │ ├── all-in-docker.sh │ │ │ │ │ ├── all.sh │ │ │ │ │ ├── analyze_outcomes.py │ │ │ │ │ ├── audit-validity-dates.py │ │ │ │ │ ├── basic-build-test.sh │ │ │ │ │ ├── basic-in-docker.sh │ │ │ │ │ ├── check-doxy-blocks.pl │ │ │ │ │ ├── check-generated-files.sh │ │ │ │ │ ├── check-python-files.sh │ │ │ │ │ ├── check_files.py │ │ │ │ │ ├── check_names.py │ │ │ │ │ ├── check_test_cases.py │ │ │ │ │ ├── components-basic-checks.sh │ │ │ │ │ ├── components-build-system.sh │ │ │ │ │ ├── components-compiler.sh │ │ │ │ │ ├── components-compliance.sh │ │ │ │ │ ├── components-configuration-crypto.sh │ │ │ │ │ ├── components-configuration-platform.sh │ │ │ │ │ ├── components-configuration-tls.sh │ │ │ │ │ ├── components-configuration-x509.sh │ │ │ │ │ ├── components-configuration.sh │ │ │ │ │ ├── components-platform.sh │ │ │ │ │ ├── components-sanitizers.sh │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── docker_env.sh │ │ │ │ │ ├── doxygen.sh │ │ │ │ │ ├── gen_ctr_drbg.pl │ │ │ │ │ ├── gen_gcm_decrypt.pl │ │ │ │ │ ├── gen_gcm_encrypt.pl │ │ │ │ │ ├── gen_pkcs1_v21_sign_verify.pl │ │ │ │ │ ├── generate-afl-tests.sh │ │ │ │ │ ├── generate_server9_bad_saltlen.py │ │ │ │ │ ├── generate_tls13_compat_tests.py │ │ │ │ │ ├── list-identifiers.sh │ │ │ │ │ ├── list_internal_identifiers.py │ │ │ │ │ ├── psa_collect_statuses.py │ │ │ │ │ ├── quiet │ │ │ │ │ │ ├── cmake │ │ │ │ │ │ ├── make │ │ │ │ │ │ └── quiet.sh │ │ │ │ │ ├── recursion.pl │ │ │ │ │ ├── run-metatests.sh │ │ │ │ │ ├── run-test-suites.pl │ │ │ │ │ ├── run_demos.py │ │ │ │ │ ├── scripts_path.py │ │ │ │ │ ├── set_psa_test_dependencies.py │ │ │ │ │ ├── tcp_client.pl │ │ │ │ │ ├── test-ref-configs.pl │ │ │ │ │ ├── test_config_script.py │ │ │ │ │ ├── test_psa_compliance.py │ │ │ │ │ ├── test_psa_constant_names.py │ │ │ │ │ ├── test_zeroize.gdb │ │ │ │ │ ├── translate_ciphers.py │ │ │ │ │ └── travis-log-failure.sh │ │ │ │ ├── src │ │ │ │ │ ├── asn1_helpers.c │ │ │ │ │ ├── bignum_helpers.c │ │ │ │ │ ├── certs.c │ │ │ │ │ ├── drivers │ │ │ │ │ │ ├── hash.c │ │ │ │ │ │ ├── platform_builtin_keys.c │ │ │ │ │ │ ├── test_driver_aead.c │ │ │ │ │ │ ├── test_driver_asymmetric_encryption.c │ │ │ │ │ │ ├── test_driver_cipher.c │ │ │ │ │ │ ├── test_driver_key_agreement.c │ │ │ │ │ │ ├── test_driver_key_management.c │ │ │ │ │ │ ├── test_driver_mac.c │ │ │ │ │ │ ├── test_driver_pake.c │ │ │ │ │ │ └── test_driver_signature.c │ │ │ │ │ ├── fake_external_rng_for_test.c │ │ │ │ │ ├── helpers.c │ │ │ │ │ ├── psa_crypto_helpers.c │ │ │ │ │ ├── psa_crypto_stubs.c │ │ │ │ │ ├── psa_exercise_key.c │ │ │ │ │ ├── psa_memory_poisoning_wrappers.c │ │ │ │ │ ├── psa_test_wrappers.c │ │ │ │ │ ├── random.c │ │ │ │ │ ├── test_certs.h │ │ │ │ │ ├── test_helpers │ │ │ │ │ │ └── ssl_helpers.c │ │ │ │ │ ├── test_keys.h │ │ │ │ │ ├── test_memory.c │ │ │ │ │ └── threading_helpers.c │ │ │ │ ├── ssl-opt-in-docker.sh │ │ │ │ ├── ssl-opt.sh │ │ │ │ └── suites │ │ │ │ │ ├── helpers.function │ │ │ │ │ ├── host_test.function │ │ │ │ │ ├── main_test.function │ │ │ │ │ ├── test_suite_aes.cbc.data │ │ │ │ │ ├── test_suite_aes.cfb.data │ │ │ │ │ ├── test_suite_aes.ctr.data │ │ │ │ │ ├── test_suite_aes.ecb.data │ │ │ │ │ ├── test_suite_aes.function │ │ │ │ │ ├── test_suite_aes.ofb.data │ │ │ │ │ ├── test_suite_aes.rest.data │ │ │ │ │ ├── test_suite_aes.xts.data │ │ │ │ │ ├── test_suite_alignment.data │ │ │ │ │ ├── test_suite_alignment.function │ │ │ │ │ ├── test_suite_aria.data │ │ │ │ │ ├── test_suite_aria.function │ │ │ │ │ ├── test_suite_asn1parse.data │ │ │ │ │ ├── test_suite_asn1parse.function │ │ │ │ │ ├── test_suite_asn1write.data │ │ │ │ │ ├── test_suite_asn1write.function │ │ │ │ │ ├── test_suite_base64.data │ │ │ │ │ ├── test_suite_base64.function │ │ │ │ │ ├── test_suite_bignum.function │ │ │ │ │ ├── test_suite_bignum.generated.data │ │ │ │ │ ├── test_suite_bignum.misc.data │ │ │ │ │ ├── test_suite_bignum_core.function │ │ │ │ │ ├── test_suite_bignum_core.generated.data │ │ │ │ │ ├── test_suite_bignum_core.misc.data │ │ │ │ │ ├── test_suite_bignum_mod.function │ │ │ │ │ ├── test_suite_bignum_mod.generated.data │ │ │ │ │ ├── test_suite_bignum_mod.misc.data │ │ │ │ │ ├── test_suite_bignum_mod_raw.data │ │ │ │ │ ├── test_suite_bignum_mod_raw.function │ │ │ │ │ ├── test_suite_bignum_mod_raw.generated.data │ │ │ │ │ ├── test_suite_bignum_random.data │ │ │ │ │ ├── test_suite_bignum_random.function │ │ │ │ │ ├── test_suite_block_cipher.data │ │ │ │ │ ├── test_suite_block_cipher.function │ │ │ │ │ ├── test_suite_block_cipher.psa.data │ │ │ │ │ ├── test_suite_camellia.data │ │ │ │ │ ├── test_suite_camellia.function │ │ │ │ │ ├── test_suite_ccm.data │ │ │ │ │ ├── test_suite_ccm.function │ │ │ │ │ ├── test_suite_chacha20.data │ │ │ │ │ ├── test_suite_chacha20.function │ │ │ │ │ ├── test_suite_chachapoly.data │ │ │ │ │ ├── test_suite_chachapoly.function │ │ │ │ │ ├── test_suite_cipher.aes.data │ │ │ │ │ ├── test_suite_cipher.aria.data │ │ │ │ │ ├── test_suite_cipher.camellia.data │ │ │ │ │ ├── test_suite_cipher.ccm.data │ │ │ │ │ ├── test_suite_cipher.chacha20.data │ │ │ │ │ ├── test_suite_cipher.chachapoly.data │ │ │ │ │ ├── test_suite_cipher.des.data │ │ │ │ │ ├── test_suite_cipher.function │ │ │ │ │ ├── test_suite_cipher.gcm.data │ │ │ │ │ ├── test_suite_cipher.misc.data │ │ │ │ │ ├── test_suite_cipher.nist_kw.data │ │ │ │ │ ├── test_suite_cipher.null.data │ │ │ │ │ ├── test_suite_cipher.padding.data │ │ │ │ │ ├── test_suite_cmac.data │ │ │ │ │ ├── test_suite_cmac.function │ │ │ │ │ ├── test_suite_common.data │ │ │ │ │ ├── test_suite_common.function │ │ │ │ │ ├── test_suite_config.crypto_combinations.data │ │ │ │ │ ├── test_suite_config.function │ │ │ │ │ ├── test_suite_config.mbedtls_boolean.data │ │ │ │ │ ├── test_suite_config.psa_boolean.data │ │ │ │ │ ├── test_suite_config.psa_combinations.data │ │ │ │ │ ├── test_suite_config.tls_combinations.data │ │ │ │ │ ├── test_suite_constant_time.data │ │ │ │ │ ├── test_suite_constant_time.function │ │ │ │ │ ├── test_suite_constant_time_hmac.data │ │ │ │ │ ├── test_suite_constant_time_hmac.function │ │ │ │ │ ├── test_suite_ctr_drbg.data │ │ │ │ │ ├── test_suite_ctr_drbg.function │ │ │ │ │ ├── test_suite_debug.data │ │ │ │ │ ├── test_suite_debug.function │ │ │ │ │ ├── test_suite_des.data │ │ │ │ │ ├── test_suite_des.function │ │ │ │ │ ├── test_suite_dhm.data │ │ │ │ │ ├── test_suite_dhm.function │ │ │ │ │ ├── test_suite_ecdh.data │ │ │ │ │ ├── test_suite_ecdh.function │ │ │ │ │ ├── test_suite_ecdsa.data │ │ │ │ │ ├── test_suite_ecdsa.function │ │ │ │ │ ├── test_suite_ecjpake.data │ │ │ │ │ ├── test_suite_ecjpake.function │ │ │ │ │ ├── test_suite_ecp.data │ │ │ │ │ ├── test_suite_ecp.function │ │ │ │ │ ├── test_suite_ecp.generated.data │ │ │ │ │ ├── test_suite_entropy.data │ │ │ │ │ ├── test_suite_entropy.function │ │ │ │ │ ├── test_suite_error.data │ │ │ │ │ ├── test_suite_error.function │ │ │ │ │ ├── test_suite_gcm.aes128_de.data │ │ │ │ │ ├── test_suite_gcm.aes128_en.data │ │ │ │ │ ├── test_suite_gcm.aes192_de.data │ │ │ │ │ ├── test_suite_gcm.aes192_en.data │ │ │ │ │ ├── test_suite_gcm.aes256_de.data │ │ │ │ │ ├── test_suite_gcm.aes256_en.data │ │ │ │ │ ├── test_suite_gcm.camellia.data │ │ │ │ │ ├── test_suite_gcm.function │ │ │ │ │ ├── test_suite_gcm.misc.data │ │ │ │ │ ├── test_suite_hkdf.data │ │ │ │ │ ├── test_suite_hkdf.function │ │ │ │ │ ├── test_suite_hmac_drbg.function │ │ │ │ │ ├── test_suite_hmac_drbg.misc.data │ │ │ │ │ ├── test_suite_hmac_drbg.no_reseed.data │ │ │ │ │ ├── test_suite_hmac_drbg.nopr.data │ │ │ │ │ ├── test_suite_hmac_drbg.pr.data │ │ │ │ │ ├── test_suite_lmots.data │ │ │ │ │ ├── test_suite_lmots.function │ │ │ │ │ ├── test_suite_lms.data │ │ │ │ │ ├── test_suite_lms.function │ │ │ │ │ ├── test_suite_md.data │ │ │ │ │ ├── test_suite_md.function │ │ │ │ │ ├── test_suite_md.psa.data │ │ │ │ │ ├── test_suite_mdx.data │ │ │ │ │ ├── test_suite_mdx.function │ │ │ │ │ ├── test_suite_memory_buffer_alloc.data │ │ │ │ │ ├── test_suite_memory_buffer_alloc.function │ │ │ │ │ ├── test_suite_mps.data │ │ │ │ │ ├── test_suite_mps.function │ │ │ │ │ ├── test_suite_net.data │ │ │ │ │ ├── test_suite_net.function │ │ │ │ │ ├── test_suite_nist_kw.data │ │ │ │ │ ├── test_suite_nist_kw.function │ │ │ │ │ ├── test_suite_oid.data │ │ │ │ │ ├── test_suite_oid.function │ │ │ │ │ ├── test_suite_pem.data │ │ │ │ │ ├── test_suite_pem.function │ │ │ │ │ ├── test_suite_pk.data │ │ │ │ │ ├── test_suite_pk.function │ │ │ │ │ ├── test_suite_pkcs12.data │ │ │ │ │ ├── test_suite_pkcs12.function │ │ │ │ │ ├── test_suite_pkcs1_v15.data │ │ │ │ │ ├── test_suite_pkcs1_v15.function │ │ │ │ │ ├── test_suite_pkcs1_v21.data │ │ │ │ │ ├── test_suite_pkcs1_v21.function │ │ │ │ │ ├── test_suite_pkcs5.data │ │ │ │ │ ├── test_suite_pkcs5.function │ │ │ │ │ ├── test_suite_pkcs7.data │ │ │ │ │ ├── test_suite_pkcs7.function │ │ │ │ │ ├── test_suite_pkparse.data │ │ │ │ │ ├── test_suite_pkparse.function │ │ │ │ │ ├── test_suite_pkwrite.data │ │ │ │ │ ├── test_suite_pkwrite.function │ │ │ │ │ ├── test_suite_platform.data │ │ │ │ │ ├── test_suite_platform.function │ │ │ │ │ ├── test_suite_platform_printf.data │ │ │ │ │ ├── test_suite_platform_printf.function │ │ │ │ │ ├── test_suite_platform_util.data │ │ │ │ │ ├── test_suite_platform_util.function │ │ │ │ │ ├── test_suite_poly1305.data │ │ │ │ │ ├── test_suite_poly1305.function │ │ │ │ │ ├── test_suite_psa_crypto.data │ │ │ │ │ ├── test_suite_psa_crypto.function │ │ │ │ │ ├── test_suite_psa_crypto.pbkdf2.data │ │ │ │ │ ├── test_suite_psa_crypto_attributes.data │ │ │ │ │ ├── test_suite_psa_crypto_attributes.function │ │ │ │ │ ├── test_suite_psa_crypto_driver_wrappers.data │ │ │ │ │ ├── test_suite_psa_crypto_driver_wrappers.function │ │ │ │ │ ├── test_suite_psa_crypto_entropy.data │ │ │ │ │ ├── test_suite_psa_crypto_entropy.function │ │ │ │ │ ├── test_suite_psa_crypto_generate_key.function │ │ │ │ │ ├── test_suite_psa_crypto_generate_key.generated.data │ │ │ │ │ ├── test_suite_psa_crypto_hash.data │ │ │ │ │ ├── test_suite_psa_crypto_hash.function │ │ │ │ │ ├── test_suite_psa_crypto_init.data │ │ │ │ │ ├── test_suite_psa_crypto_init.function │ │ │ │ │ ├── test_suite_psa_crypto_low_hash.function │ │ │ │ │ ├── test_suite_psa_crypto_low_hash.generated.data │ │ │ │ │ ├── test_suite_psa_crypto_memory.data │ │ │ │ │ ├── test_suite_psa_crypto_memory.function │ │ │ │ │ ├── test_suite_psa_crypto_metadata.data │ │ │ │ │ ├── test_suite_psa_crypto_metadata.function │ │ │ │ │ ├── test_suite_psa_crypto_not_supported.function │ │ │ │ │ ├── test_suite_psa_crypto_not_supported.generated.data │ │ │ │ │ ├── test_suite_psa_crypto_not_supported.misc.data │ │ │ │ │ ├── test_suite_psa_crypto_op_fail.function │ │ │ │ │ ├── test_suite_psa_crypto_op_fail.generated.data │ │ │ │ │ ├── test_suite_psa_crypto_op_fail.misc.data │ │ │ │ │ ├── test_suite_psa_crypto_pake.data │ │ │ │ │ ├── test_suite_psa_crypto_pake.function │ │ │ │ │ ├── test_suite_psa_crypto_persistent_key.data │ │ │ │ │ ├── test_suite_psa_crypto_persistent_key.function │ │ │ │ │ ├── test_suite_psa_crypto_se_driver_hal.data │ │ │ │ │ ├── test_suite_psa_crypto_se_driver_hal.function │ │ │ │ │ ├── test_suite_psa_crypto_se_driver_hal_mocks.data │ │ │ │ │ ├── test_suite_psa_crypto_se_driver_hal_mocks.function │ │ │ │ │ ├── test_suite_psa_crypto_slot_management.data │ │ │ │ │ ├── test_suite_psa_crypto_slot_management.function │ │ │ │ │ ├── test_suite_psa_crypto_storage_format.current.data │ │ │ │ │ ├── test_suite_psa_crypto_storage_format.function │ │ │ │ │ ├── test_suite_psa_crypto_storage_format.misc.data │ │ │ │ │ ├── test_suite_psa_crypto_storage_format.v0.data │ │ │ │ │ ├── test_suite_psa_crypto_util.data │ │ │ │ │ ├── test_suite_psa_crypto_util.function │ │ │ │ │ ├── test_suite_psa_its.data │ │ │ │ │ ├── test_suite_psa_its.function │ │ │ │ │ ├── test_suite_random.data │ │ │ │ │ ├── test_suite_random.function │ │ │ │ │ ├── test_suite_rsa.data │ │ │ │ │ ├── test_suite_rsa.function │ │ │ │ │ ├── test_suite_shax.data │ │ │ │ │ ├── test_suite_shax.function │ │ │ │ │ ├── test_suite_ssl.data │ │ │ │ │ ├── test_suite_ssl.function │ │ │ │ │ ├── test_suite_ssl_decrypt.function │ │ │ │ │ ├── test_suite_ssl_decrypt.misc.data │ │ │ │ │ ├── test_suite_test_helpers.data │ │ │ │ │ ├── test_suite_test_helpers.function │ │ │ │ │ ├── test_suite_timing.data │ │ │ │ │ ├── test_suite_timing.function │ │ │ │ │ ├── test_suite_version.data │ │ │ │ │ ├── test_suite_version.function │ │ │ │ │ ├── test_suite_x509parse.data │ │ │ │ │ ├── test_suite_x509parse.function │ │ │ │ │ ├── test_suite_x509write.data │ │ │ │ │ └── test_suite_x509write.function │ │ │ └── visualc │ │ │ │ └── VS2017 │ │ │ │ ├── .gitignore │ │ │ │ ├── aead_demo.vcxproj │ │ │ │ ├── benchmark.vcxproj │ │ │ │ ├── cert_app.vcxproj │ │ │ │ ├── cert_req.vcxproj │ │ │ │ ├── cert_write.vcxproj │ │ │ │ ├── cipher_aead_demo.vcxproj │ │ │ │ ├── crl_app.vcxproj │ │ │ │ ├── crypt_and_hash.vcxproj │ │ │ │ ├── crypto_examples.vcxproj │ │ │ │ ├── dh_client.vcxproj │ │ │ │ ├── dh_genprime.vcxproj │ │ │ │ ├── dh_server.vcxproj │ │ │ │ ├── dtls_client.vcxproj │ │ │ │ ├── dtls_server.vcxproj │ │ │ │ ├── ecdh_curve25519.vcxproj │ │ │ │ ├── ecdsa.vcxproj │ │ │ │ ├── gen_entropy.vcxproj │ │ │ │ ├── gen_key.vcxproj │ │ │ │ ├── gen_random_ctr_drbg.vcxproj │ │ │ │ ├── generic_sum.vcxproj │ │ │ │ ├── hello.vcxproj │ │ │ │ ├── hmac_demo.vcxproj │ │ │ │ ├── key_app.vcxproj │ │ │ │ ├── key_app_writer.vcxproj │ │ │ │ ├── key_ladder_demo.vcxproj │ │ │ │ ├── load_roots.vcxproj │ │ │ │ ├── mbedTLS.sln │ │ │ │ ├── mbedTLS.vcxproj │ │ │ │ ├── md_hmac_demo.vcxproj │ │ │ │ ├── metatest.vcxproj │ │ │ │ ├── mini_client.vcxproj │ │ │ │ ├── mpi_demo.vcxproj │ │ │ │ ├── pem2der.vcxproj │ │ │ │ ├── pk_decrypt.vcxproj │ │ │ │ ├── pk_encrypt.vcxproj │ │ │ │ ├── pk_sign.vcxproj │ │ │ │ ├── pk_verify.vcxproj │ │ │ │ ├── psa_constant_names.vcxproj │ │ │ │ ├── psa_hash.vcxproj │ │ │ │ ├── query_compile_time_config.vcxproj │ │ │ │ ├── query_included_headers.vcxproj │ │ │ │ ├── req_app.vcxproj │ │ │ │ ├── rsa_decrypt.vcxproj │ │ │ │ ├── rsa_encrypt.vcxproj │ │ │ │ ├── rsa_genkey.vcxproj │ │ │ │ ├── rsa_sign.vcxproj │ │ │ │ ├── rsa_sign_pss.vcxproj │ │ │ │ ├── rsa_verify.vcxproj │ │ │ │ ├── rsa_verify_pss.vcxproj │ │ │ │ ├── selftest.vcxproj │ │ │ │ ├── ssl_client1.vcxproj │ │ │ │ ├── ssl_client2.vcxproj │ │ │ │ ├── ssl_context_info.vcxproj │ │ │ │ ├── ssl_fork_server.vcxproj │ │ │ │ ├── ssl_mail_client.vcxproj │ │ │ │ ├── ssl_server.vcxproj │ │ │ │ ├── ssl_server2.vcxproj │ │ │ │ ├── strerror.vcxproj │ │ │ │ ├── udp_proxy.vcxproj │ │ │ │ └── zeroize.vcxproj │ │ └── zlib │ │ │ ├── LICENSE │ │ │ ├── adler32.c │ │ │ ├── compress.c │ │ │ ├── crc32.c │ │ │ ├── crc32.h │ │ │ ├── deflate.c │ │ │ ├── deflate.h │ │ │ ├── gzclose.c │ │ │ ├── gzguts.h │ │ │ ├── gzlib.c │ │ │ ├── gzread.c │ │ │ ├── gzwrite.c │ │ │ ├── infback.c │ │ │ ├── inffast.c │ │ │ ├── inffast.h │ │ │ ├── inffixed.h │ │ │ ├── inflate.c │ │ │ ├── inflate.h │ │ │ ├── inftrees.c │ │ │ ├── inftrees.h │ │ │ ├── premake5.lua │ │ │ ├── trees.c │ │ │ ├── trees.h │ │ │ ├── uncompr.c │ │ │ ├── zconf.h │ │ │ ├── zlib.h │ │ │ ├── zutil.c │ │ │ └── zutil.h │ ├── doxyfile │ ├── git-tags.txt │ ├── mobdebug.lua │ ├── modules │ │ ├── codelite │ │ │ ├── README.md │ │ │ ├── _manifest.lua │ │ │ ├── _preload.lua │ │ │ ├── codelite.lua │ │ │ ├── codelite_project.lua │ │ │ ├── codelite_workspace.lua │ │ │ └── tests │ │ │ │ ├── _tests.lua │ │ │ │ ├── test_codelite_additional_rules.lua │ │ │ │ ├── test_codelite_config.lua │ │ │ │ ├── test_codelite_project.lua │ │ │ │ └── test_codelite_workspace.lua │ │ ├── gmake │ │ │ ├── _manifest.lua │ │ │ ├── _preload.lua │ │ │ ├── gmake.lua │ │ │ ├── gmake_cpp.lua │ │ │ ├── gmake_csharp.lua │ │ │ ├── gmake_makefile.lua │ │ │ ├── gmake_utility.lua │ │ │ ├── gmake_workspace.lua │ │ │ └── tests │ │ │ │ ├── _tests.lua │ │ │ │ ├── test_gmake_buildcmds.lua │ │ │ │ ├── test_gmake_clang.lua │ │ │ │ ├── test_gmake_file_rules.lua │ │ │ │ ├── test_gmake_flags.lua │ │ │ │ ├── test_gmake_includes.lua │ │ │ │ ├── test_gmake_ldflags.lua │ │ │ │ ├── test_gmake_linking.lua │ │ │ │ ├── test_gmake_makefile.lua │ │ │ │ ├── test_gmake_objects.lua │ │ │ │ ├── test_gmake_pch.lua │ │ │ │ ├── test_gmake_perfile_flags.lua │ │ │ │ ├── test_gmake_target_rules.lua │ │ │ │ ├── test_gmake_tools.lua │ │ │ │ └── test_gmake_wks.lua │ │ ├── gmakelegacy │ │ │ ├── _manifest.lua │ │ │ ├── _preload.lua │ │ │ ├── gmakelegacy.lua │ │ │ ├── gmakelegacy_cpp.lua │ │ │ ├── gmakelegacy_csharp.lua │ │ │ ├── gmakelegacy_makefile.lua │ │ │ ├── gmakelegacy_utility.lua │ │ │ ├── gmakelegacy_workspace.lua │ │ │ └── tests │ │ │ │ ├── _tests.lua │ │ │ │ ├── cpp │ │ │ │ ├── test_clang.lua │ │ │ │ ├── test_file_rules.lua │ │ │ │ ├── test_flags.lua │ │ │ │ ├── test_ldflags.lua │ │ │ │ ├── test_make_linking.lua │ │ │ │ ├── test_make_pch.lua │ │ │ │ ├── test_objects.lua │ │ │ │ ├── test_target_rules.lua │ │ │ │ ├── test_tools.lua │ │ │ │ └── test_wiidev.lua │ │ │ │ ├── cs │ │ │ │ ├── test_embed_files.lua │ │ │ │ ├── test_flags.lua │ │ │ │ ├── test_links.lua │ │ │ │ ├── test_response.lua │ │ │ │ └── test_sources.lua │ │ │ │ ├── test_make_escaping.lua │ │ │ │ ├── test_make_tovar.lua │ │ │ │ └── workspace │ │ │ │ ├── test_config_maps.lua │ │ │ │ ├── test_default_config.lua │ │ │ │ ├── test_group_rule.lua │ │ │ │ ├── test_help_rule.lua │ │ │ │ └── test_project_rule.lua │ │ ├── raw │ │ │ ├── README.md │ │ │ ├── _manifest.lua │ │ │ ├── _preload.lua │ │ │ ├── raw.lua │ │ │ └── raw_action.lua │ │ ├── self-test │ │ │ ├── _manifest.lua │ │ │ ├── self-test.lua │ │ │ ├── test_assertions.lua │ │ │ ├── test_declare.lua │ │ │ ├── test_helpers.lua │ │ │ └── test_runner.lua │ │ ├── vstudio │ │ │ ├── _manifest.lua │ │ │ ├── _preload.lua │ │ │ ├── tests │ │ │ │ ├── _tests.lua │ │ │ │ ├── android │ │ │ │ │ ├── test_android_files.lua │ │ │ │ │ └── test_android_project.lua │ │ │ │ ├── cs2005 │ │ │ │ │ ├── projectsettings.lua │ │ │ │ │ ├── test_additional_props.lua │ │ │ │ │ ├── test_assembly_refs.lua │ │ │ │ │ ├── test_build_events.lua │ │ │ │ │ ├── test_common_props.lua │ │ │ │ │ ├── test_compiler_props.lua │ │ │ │ │ ├── test_debug_props.lua │ │ │ │ │ ├── test_debug_props_2019.lua │ │ │ │ │ ├── test_documentation_file.lua │ │ │ │ │ ├── test_dotnetsdk.lua │ │ │ │ │ ├── test_files.lua │ │ │ │ │ ├── test_icon.lua │ │ │ │ │ ├── test_netcore.lua │ │ │ │ │ ├── test_no_warn.lua │ │ │ │ │ ├── test_nuget_config.lua │ │ │ │ │ ├── test_nuget_packages_config.lua │ │ │ │ │ ├── test_nuget_references.lua │ │ │ │ │ ├── test_output_props.lua │ │ │ │ │ ├── test_platform_groups.lua │ │ │ │ │ ├── test_project_refs.lua │ │ │ │ │ ├── test_targets.lua │ │ │ │ │ └── test_user_file.lua │ │ │ │ ├── dotnet2005 │ │ │ │ │ ├── projectelement.lua │ │ │ │ │ └── test_nuget_framework_folders.lua │ │ │ │ ├── fs2005 │ │ │ │ │ └── projectsettings.lua │ │ │ │ ├── linux │ │ │ │ │ └── test_linux_files.lua │ │ │ │ ├── sln2005 │ │ │ │ │ ├── test_dependencies.lua │ │ │ │ │ ├── test_header.lua │ │ │ │ │ ├── test_nested_projects.lua │ │ │ │ │ ├── test_platforms.lua │ │ │ │ │ ├── test_projects.lua │ │ │ │ │ ├── test_sections.lua │ │ │ │ │ └── test_shared_projects.lua │ │ │ │ ├── sln2026 │ │ │ │ │ ├── test_configurations.lua │ │ │ │ │ └── test_projects.lua │ │ │ │ ├── vc200x │ │ │ │ │ ├── test_assembly_refs.lua │ │ │ │ │ ├── test_build_steps.lua │ │ │ │ │ ├── test_compiler_block.lua │ │ │ │ │ ├── test_configuration.lua │ │ │ │ │ ├── test_debug_settings.lua │ │ │ │ │ ├── test_excluded_configs.lua │ │ │ │ │ ├── test_files.lua │ │ │ │ │ ├── test_linker_block.lua │ │ │ │ │ ├── test_manifest_block.lua │ │ │ │ │ ├── test_nmake_settings.lua │ │ │ │ │ ├── test_platforms.lua │ │ │ │ │ ├── test_project.lua │ │ │ │ │ ├── test_project_refs.lua │ │ │ │ │ ├── test_resource_compiler.lua │ │ │ │ │ └── test_user_file.lua │ │ │ │ ├── vc2010 │ │ │ │ │ ├── test_assembly_refs.lua │ │ │ │ │ ├── test_build_events.lua │ │ │ │ │ ├── test_build_log.lua │ │ │ │ │ ├── test_build_steps.lua │ │ │ │ │ ├── test_character_set.lua │ │ │ │ │ ├── test_compile_settings.lua │ │ │ │ │ ├── test_config_props.lua │ │ │ │ │ ├── test_debug_settings.lua │ │ │ │ │ ├── test_ensure_nuget_imports.lua │ │ │ │ │ ├── test_excluded_configs.lua │ │ │ │ │ ├── test_extension_settings.lua │ │ │ │ │ ├── test_extension_targets.lua │ │ │ │ │ ├── test_files.lua │ │ │ │ │ ├── test_filter_ids.lua │ │ │ │ │ ├── test_filters.lua │ │ │ │ │ ├── test_floatingpoint.lua │ │ │ │ │ ├── test_fxcompile_settings.lua │ │ │ │ │ ├── test_globals.lua │ │ │ │ │ ├── test_header.lua │ │ │ │ │ ├── test_item_def_group.lua │ │ │ │ │ ├── test_language_settings.lua │ │ │ │ │ ├── test_language_targets.lua │ │ │ │ │ ├── test_link.lua │ │ │ │ │ ├── test_manifest.lua │ │ │ │ │ ├── test_nmake_props.lua │ │ │ │ │ ├── test_nuget_package_references.lua │ │ │ │ │ ├── test_nuget_packages_config.lua │ │ │ │ │ ├── test_output_props.lua │ │ │ │ │ ├── test_platform_toolset.lua │ │ │ │ │ ├── test_project_configs.lua │ │ │ │ │ ├── test_project_refs.lua │ │ │ │ │ ├── test_prop_sheet.lua │ │ │ │ │ ├── test_resource_compile.lua │ │ │ │ │ ├── test_rule_props.lua │ │ │ │ │ ├── test_rule_targets.lua │ │ │ │ │ ├── test_rule_vars.lua │ │ │ │ │ ├── test_rule_xml.lua │ │ │ │ │ ├── test_target_machine.lua │ │ │ │ │ ├── test_tokens.lua │ │ │ │ │ ├── test_user_file.lua │ │ │ │ │ └── test_vectorextensions.lua │ │ │ │ ├── vc2013 │ │ │ │ │ └── test_vcxitems.lua │ │ │ │ ├── vc2019 │ │ │ │ │ ├── test_compile_settings.lua │ │ │ │ │ ├── test_link.lua │ │ │ │ │ ├── test_output_props.lua │ │ │ │ │ └── test_toolset_settings.lua │ │ │ │ └── vc2022 │ │ │ │ │ ├── test_compile_settings.lua │ │ │ │ │ ├── test_link.lua │ │ │ │ │ ├── test_output_props.lua │ │ │ │ │ └── test_toolset_settings.lua │ │ │ ├── vs2005.lua │ │ │ ├── vs2005_csproj.lua │ │ │ ├── vs2005_csproj_user.lua │ │ │ ├── vs2005_dotnetbase.lua │ │ │ ├── vs2005_fsproj.lua │ │ │ ├── vs2005_fsproj_user.lua │ │ │ ├── vs2005_solution.lua │ │ │ ├── vs2008.lua │ │ │ ├── vs200x_vcproj.lua │ │ │ ├── vs200x_vcproj_user.lua │ │ │ ├── vs2010.lua │ │ │ ├── vs2010_nuget.lua │ │ │ ├── vs2010_rules_props.lua │ │ │ ├── vs2010_rules_targets.lua │ │ │ ├── vs2010_rules_xml.lua │ │ │ ├── vs2010_vcxproj.lua │ │ │ ├── vs2010_vcxproj_filters.lua │ │ │ ├── vs2010_vcxproj_user.lua │ │ │ ├── vs2012.lua │ │ │ ├── vs2013.lua │ │ │ ├── vs2013_vcxitems.lua │ │ │ ├── vs2015.lua │ │ │ ├── vs2015_androidproj.lua │ │ │ ├── vs2017.lua │ │ │ ├── vs2019.lua │ │ │ ├── vs2022.lua │ │ │ ├── vs2026.lua │ │ │ ├── vs2026_solution.lua │ │ │ └── vstudio.lua │ │ └── xcode │ │ │ ├── LICENSE.TXT │ │ │ ├── _manifest.lua │ │ │ ├── _preload.lua │ │ │ ├── tests │ │ │ ├── _tests.lua │ │ │ ├── test_header_footer.lua │ │ │ ├── test_xcode4_project.lua │ │ │ ├── test_xcode4_workspace.lua │ │ │ ├── test_xcode_dependencies.lua │ │ │ └── test_xcode_project.lua │ │ │ ├── xcode.lua │ │ │ ├── xcode4_workspace.lua │ │ │ ├── xcode_common.lua │ │ │ └── xcode_project.lua │ ├── packages │ │ └── debian │ │ │ ├── changelog │ │ │ ├── compat │ │ │ ├── control │ │ │ ├── copyright │ │ │ ├── dirs │ │ │ ├── premake.1 │ │ │ └── rules │ ├── premake4.lua │ ├── premake5.lua │ ├── scripts │ │ ├── RELEASE.md │ │ ├── changes.lua │ │ ├── docscheck.lua │ │ ├── embed.lua │ │ └── package.lua │ ├── src │ │ ├── _manifest.lua │ │ ├── _modules.lua │ │ ├── _premake_init.lua │ │ ├── _premake_main.lua │ │ ├── actions │ │ │ └── clean │ │ │ │ └── _clean.lua │ │ ├── base │ │ │ ├── _foundation.lua │ │ │ ├── action.lua │ │ │ ├── api.lua │ │ │ ├── config.lua │ │ │ ├── configset.lua │ │ │ ├── container.lua │ │ │ ├── context.lua │ │ │ ├── criteria.lua │ │ │ ├── detoken.lua │ │ │ ├── field.lua │ │ │ ├── fileconfig.lua │ │ │ ├── git_integration.lua │ │ │ ├── global.lua │ │ │ ├── globals.lua │ │ │ ├── group.lua │ │ │ ├── help.lua │ │ │ ├── http.lua │ │ │ ├── io.lua │ │ │ ├── json.lua │ │ │ ├── jsonwrapper.lua │ │ │ ├── languages.lua │ │ │ ├── option.lua │ │ │ ├── os.lua │ │ │ ├── oven.lua │ │ │ ├── path.lua │ │ │ ├── premake.lua │ │ │ ├── project.lua │ │ │ ├── rule.lua │ │ │ ├── semver.lua │ │ │ ├── string.lua │ │ │ ├── table.lua │ │ │ ├── term.lua │ │ │ ├── tools.lua │ │ │ ├── tree.lua │ │ │ ├── usage.lua │ │ │ ├── validation.lua │ │ │ └── workspace.lua │ │ ├── host │ │ │ ├── buffered_io.c │ │ │ ├── buffered_io.h │ │ │ ├── criteria_matches.c │ │ │ ├── curl_utils.c │ │ │ ├── curl_utils.h │ │ │ ├── debug_prompt.c │ │ │ ├── http_download.c │ │ │ ├── http_get.c │ │ │ ├── http_post.c │ │ │ ├── lua_auxlib.c │ │ │ ├── lua_shimtable.h │ │ │ ├── os_chdir.c │ │ │ ├── os_chmod.c │ │ │ ├── os_comparefiles.c │ │ │ ├── os_compile.c │ │ │ ├── os_copyfile.c │ │ │ ├── os_getWindowsRegistry.c │ │ │ ├── os_getcwd.c │ │ │ ├── os_getnumcpus.c │ │ │ ├── os_getpass.c │ │ │ ├── os_getversion.c │ │ │ ├── os_host.c │ │ │ ├── os_hostarch.c │ │ │ ├── os_is64bit.c │ │ │ ├── os_isdir.c │ │ │ ├── os_isfile.c │ │ │ ├── os_islink.c │ │ │ ├── os_linkdir.c │ │ │ ├── os_linkfile.c │ │ │ ├── os_listWindowsRegistry.c │ │ │ ├── os_locate.c │ │ │ ├── os_match.c │ │ │ ├── os_mkdir.c │ │ │ ├── os_pathsearch.c │ │ │ ├── os_realpath.c │ │ │ ├── os_remove.c │ │ │ ├── os_rename.c │ │ │ ├── os_rmdir.c │ │ │ ├── os_stat.c │ │ │ ├── os_touchfile.c │ │ │ ├── os_uuid.c │ │ │ ├── os_writefile_ifnotequal.c │ │ │ ├── path_getabsolute.c │ │ │ ├── path_getrelative.c │ │ │ ├── path_isabsolute.c │ │ │ ├── path_isabsolute.h │ │ │ ├── path_join.c │ │ │ ├── path_normalize.c │ │ │ ├── path_translate.c │ │ │ ├── path_wildcards.c │ │ │ ├── premake.c │ │ │ ├── premake.h │ │ │ ├── premake.ico │ │ │ ├── premake_main.c │ │ │ ├── resource.h │ │ │ ├── resource.rc │ │ │ ├── string_endswith.c │ │ │ ├── string_hash.c │ │ │ ├── string_sha1.c │ │ │ ├── string_startswith.c │ │ │ ├── term_textColor.c │ │ │ └── zip_extract.c │ │ ├── scripts.c │ │ └── tools │ │ │ ├── clang.lua │ │ │ ├── cosmocc.lua │ │ │ ├── dotnet.lua │ │ │ ├── emcc.lua │ │ │ ├── gcc.lua │ │ │ ├── mingw.lua │ │ │ ├── msc.lua │ │ │ └── snc.lua │ ├── tests │ │ ├── _tests.lua │ │ ├── api │ │ │ ├── test_boolean_kind.lua │ │ │ ├── test_containers.lua │ │ │ ├── test_deprecations.lua │ │ │ ├── test_directory_kind.lua │ │ │ ├── test_file_kind.lua │ │ │ ├── test_list_kind.lua │ │ │ ├── test_path_kind.lua │ │ │ ├── test_register.lua │ │ │ ├── test_string_kind.lua │ │ │ └── test_table_kind.lua │ │ ├── base │ │ │ ├── .testDotFile │ │ │ ├── test_aliasing.lua │ │ │ ├── test_binmodules.lua │ │ │ ├── test_configset.lua │ │ │ ├── test_context.lua │ │ │ ├── test_criteria.lua │ │ │ ├── test_detoken.lua │ │ │ ├── test_filename.lua │ │ │ ├── test_http.lua │ │ │ ├── test_include.lua │ │ │ ├── test_json.lua │ │ │ ├── test_module_loader.lua │ │ │ ├── test_option.lua │ │ │ ├── test_os.lua │ │ │ ├── test_override.lua │ │ │ ├── test_path.lua │ │ │ ├── test_premake_command.lua │ │ │ ├── test_rule.lua │ │ │ ├── test_table.lua │ │ │ ├── test_tree.lua │ │ │ ├── test_uuid.lua │ │ │ ├── test_validation.lua │ │ │ └── test_versions.lua │ │ ├── config │ │ │ ├── test_linkinfo.lua │ │ │ ├── test_links.lua │ │ │ └── test_targetinfo.lua │ │ ├── folder │ │ │ ├── init.lua │ │ │ ├── ok.lua │ │ │ ├── premake5.lua │ │ │ └── subfolder │ │ │ │ ├── hello.txt │ │ │ │ ├── include │ │ │ │ └── test.h │ │ │ │ └── lib │ │ │ │ ├── test.dll │ │ │ │ └── test.dylib │ │ ├── oven │ │ │ ├── test_filtering.lua │ │ │ ├── test_objdirs.lua │ │ │ └── test_usages.lua │ │ ├── pepperfish_profiler.lua │ │ ├── project │ │ │ ├── test_config_maps.lua │ │ │ ├── test_eachconfig.lua │ │ │ ├── test_getconfig.lua │ │ │ ├── test_location.lua │ │ │ ├── test_sources.lua │ │ │ └── test_vpaths.lua │ │ ├── test │ │ ├── test.bat │ │ ├── test_lua.lua │ │ ├── test_lua_loaded.lua │ │ ├── test_lua_loaded_noenv.lua │ │ ├── test_premake.lua │ │ ├── test_stress.lua │ │ ├── test_string.lua │ │ ├── tools │ │ │ ├── test_clang.lua │ │ │ ├── test_dotnet.lua │ │ │ ├── test_emcc.lua │ │ │ ├── test_gcc.lua │ │ │ ├── test_msc.lua │ │ │ └── test_snc.lua │ │ └── workspace │ │ │ ├── test_eachconfig.lua │ │ │ ├── test_location.lua │ │ │ └── test_objdirs.lua │ └── website │ │ ├── .gitignore │ │ ├── README.md │ │ ├── babel.config.js │ │ ├── blog │ │ ├── 2019-08-31-community-update-1.md │ │ ├── 2019-10-23- community-update-2.md │ │ ├── 2020-01-08-community-update-3.md │ │ ├── 2020-04-07-community-update-4.md │ │ ├── 2020-08-04-community-update-5.md │ │ ├── 2020-11-02-community-udpate-6.md │ │ ├── 2021-02-24-community-update-7.md │ │ ├── 2021-04-20-community-update-8.md │ │ ├── 2021-08-01-community-update-9.md │ │ ├── 2021-11-21-community-update-10.md │ │ ├── 2024-11-09-community-update-11.md │ │ ├── 2024-12-22-community-update-12.md │ │ └── authors.yml │ │ ├── community │ │ ├── extensions.md │ │ ├── modules.md │ │ ├── showcase.md │ │ └── support.md │ │ ├── docs │ │ ├── Adding-New-Action.md │ │ ├── Adding-Source-Files.md │ │ ├── Adding-Unit-Tests.md │ │ ├── Build-Settings.md │ │ ├── Building-Premake.md │ │ ├── Code-Overview.md │ │ ├── Coding-Conventions.md │ │ ├── Command-Line-Arguments.md │ │ ├── Configurations-and-Platforms.md │ │ ├── Custom-Build-Commands.md │ │ ├── Custom-Rules.md │ │ ├── Debugging-Scripts.md │ │ ├── Developing-Modules.md │ │ ├── Development-Roadmap.md │ │ ├── Embedding-Frameworks-in-Xcode.md │ │ ├── Embedding-Modules.md │ │ ├── Extending-Premake.md │ │ ├── Feature-Matrix.md │ │ ├── Filters.md │ │ ├── Generating-Project-Files.md │ │ ├── Home.md │ │ ├── How-to-Help.md │ │ ├── Introducing-Modules.md │ │ ├── Linking.md │ │ ├── Locating-Scripts.md │ │ ├── Lua-Library-Additions.md │ │ ├── Makefile-Projects.md │ │ ├── Migrating-From-4.x.md │ │ ├── Overrides-and-Call-Arrays.md │ │ ├── Precompiled-Headers.md │ │ ├── Project-API.md │ │ ├── Removing-Values.md │ │ ├── Scopes-and-Inheritance.md │ │ ├── Sharing-Configuration-Settings.md │ │ ├── Sharing-Your-Module.md │ │ ├── Starting-Your-New-Action.md │ │ ├── Style-Guide.md │ │ ├── System-Scripts.md │ │ ├── Tokens.md │ │ ├── Topics.md │ │ ├── Usages-and-Uses.md │ │ ├── Using-Modules.md │ │ ├── Using-Premake.md │ │ ├── What-Is-Premake.md │ │ ├── Whats-New-in-5.0.md │ │ ├── Why-Do-Call-Arrays-Need-Functions.md │ │ ├── Workspaces-and-Projects.md │ │ ├── Your-First-Script.md │ │ ├── allmodulespublic.md │ │ ├── androidapilevel.md │ │ ├── androidapplibname.md │ │ ├── architecture.md │ │ ├── assemblydebug.md │ │ ├── atl.md │ │ ├── basedir.md │ │ ├── bindirs.md │ │ ├── buildaction.md │ │ ├── buildcommands.md │ │ ├── buildcustomizations.md │ │ ├── builddependencies.md │ │ ├── buildinputs.md │ │ ├── buildlog.md │ │ ├── buildmessage.md │ │ ├── buildoptions.md │ │ ├── buildoutputs.md │ │ ├── buildstlmodules.md │ │ ├── callingconvention.md │ │ ├── cdialect.md │ │ ├── characterset.md │ │ ├── clangtidy.md │ │ ├── cleancommands.md │ │ ├── cleanextensions.md │ │ ├── clr.md │ │ ├── compileas.md │ │ ├── compilebuildoutputs.md │ │ ├── configfile.md │ │ ├── configmap.md │ │ ├── configuration.md │ │ ├── configurations.md │ │ ├── conformancemode.md │ │ ├── consumewinrtextension.md │ │ ├── copylocal.md │ │ ├── cppdialect.md │ │ ├── csversion.md │ │ ├── customtoolnamespace.md │ │ ├── debug.prompt.md │ │ ├── debugargs.md │ │ ├── debugcommand.md │ │ ├── debugconnectcommands.md │ │ ├── debugdir.md │ │ ├── debugenvs.md │ │ ├── debugextendedprotocol.md │ │ ├── debugformat.md │ │ ├── debugger.md │ │ ├── debuggerflavor.md │ │ ├── debuggertype.md │ │ ├── debugport.md │ │ ├── debugremotehost.md │ │ ├── debugsearchpaths.md │ │ ├── debugstartupcommands.md │ │ ├── defaultplatform.md │ │ ├── defines.md │ │ ├── dependson.md │ │ ├── deploymentoptions.md │ │ ├── disablewarnings.md │ │ ├── display.md │ │ ├── documentationfile.md │ │ ├── dotnetframework.md │ │ ├── dotnetsdk.md │ │ ├── dpiawareness.md │ │ ├── editAndContinue.md │ │ ├── editorintegration.md │ │ ├── embed.md │ │ ├── embedandsign.md │ │ ├── enabledefaultcompileitems.md │ │ ├── enablemodules.md │ │ ├── enableunitybuild.md │ │ ├── enablewarnings.md │ │ ├── endian.md │ │ ├── entrypoint.md │ │ ├── exceptionhandling.md │ │ ├── external.md │ │ ├── externalanglebrackets.md │ │ ├── externalincludedirs.md │ │ ├── externalproject.md │ │ ├── externalrule.md │ │ ├── externalwarnings.md │ │ ├── fastuptodate.md │ │ ├── fatalwarnings.md │ │ ├── fileextension.md │ │ ├── filename.md │ │ ├── files.md │ │ ├── filter.md │ │ ├── flags.md │ │ ├── floatabi.md │ │ ├── floatingpoint.md │ │ ├── floatingpointexceptions.md │ │ ├── forceincludes.md │ │ ├── forceusings.md │ │ ├── fpu.md │ │ ├── framework.md │ │ ├── frameworkdirs.md │ │ ├── functionlevellinking.md │ │ ├── gccprefix.md │ │ ├── gitintegration.md │ │ ├── globals │ │ │ ├── dofileopt.md │ │ │ ├── iif.md │ │ │ ├── include.md │ │ │ ├── includeexternal.md │ │ │ ├── premake_ACTION.md │ │ │ ├── premake_ARGS.md │ │ │ ├── premake_MAIN_SCRIPT.md │ │ │ ├── premake_MAIN_SCRIPT_DIR.md │ │ │ ├── premake_OPTIONS.md │ │ │ ├── premake_OS.md │ │ │ ├── premake_PREMAKE_COMMAND.md │ │ │ ├── premake_PREMAKE_DIR.md │ │ │ ├── premake_PREMAKE_VERSION.md │ │ │ ├── premake_TARGET_ARCH.md │ │ │ ├── premake_TARGET_OS.md │ │ │ ├── premake_WORKING_DIR.md │ │ │ ├── printf.md │ │ │ ├── require.md │ │ │ └── verbosef.md │ │ ├── group.md │ │ ├── http │ │ │ ├── http-options-table.md │ │ │ ├── http.download.md │ │ │ ├── http.get.md │ │ │ └── http.post.md │ │ ├── icon.md │ │ ├── ignoredefaultlibraries.md │ │ ├── imageoptions.md │ │ ├── imagepath.md │ │ ├── implibdir.md │ │ ├── implibextension.md │ │ ├── implibname.md │ │ ├── implibprefix.md │ │ ├── implibsuffix.md │ │ ├── includedirs.md │ │ ├── includedirsafter.md │ │ ├── inheritdependencies.md │ │ ├── inlinesvisibility.md │ │ ├── inlining.md │ │ ├── intrinsics.md │ │ ├── io.readfile.md │ │ ├── io.utf8.md │ │ ├── io.writefile.md │ │ ├── iosfamily.md │ │ ├── isaextensions.md │ │ ├── json │ │ │ ├── json.decode.md │ │ │ └── json.encode.md │ │ ├── justmycode.md │ │ ├── kind.md │ │ ├── language.md │ │ ├── largeaddressaware.md │ │ ├── libdirs.md │ │ ├── linkbuildoutputs.md │ │ ├── linker.md │ │ ├── linkerfatalwarnings.md │ │ ├── linkgroups.md │ │ ├── linkoptions.md │ │ ├── links.md │ │ ├── linksectiondata.md │ │ ├── linksectionfunction.md │ │ ├── linktimeoptimization.md │ │ ├── llvmdir.md │ │ ├── llvmversion.md │ │ ├── locale.md │ │ ├── location.md │ │ ├── makesettings.md │ │ ├── mfc.md │ │ ├── namespace.md │ │ ├── nativewchar.md │ │ ├── newaction.md │ │ ├── newoption.md │ │ ├── nuget.md │ │ ├── nugetsource.md │ │ ├── objdir.md │ │ ├── omitframepointer.md │ │ ├── openmp.md │ │ ├── optimize.md │ │ ├── os │ │ │ ├── os.chdir.md │ │ │ ├── os.chmod.md │ │ │ ├── os.comparefiles.md │ │ │ ├── os.copyfile.md │ │ │ ├── os.execute.md │ │ │ ├── os.executef.md │ │ │ ├── os.findheader.md │ │ │ ├── os.findlib.md │ │ │ ├── os.get.md │ │ │ ├── os.getSystemTags.md │ │ │ ├── os.getcwd.md │ │ │ ├── os.getenv.md │ │ │ ├── os.getnumcpus.md │ │ │ ├── os.getpass.md │ │ │ ├── os.getversion.md │ │ │ ├── os.host.md │ │ │ ├── os.hostarch.md │ │ │ ├── os.is.md │ │ │ ├── os.is64bit.md │ │ │ ├── os.isdir.md │ │ │ ├── os.isfile.md │ │ │ ├── os.islink.md │ │ │ ├── os.istarget.md │ │ │ ├── os.linkdir.md │ │ │ ├── os.linkfile.md │ │ │ ├── os.locate.md │ │ │ ├── os.matchdirs.md │ │ │ ├── os.matchfiles.md │ │ │ ├── os.mkdir.md │ │ │ ├── os.outputof.md │ │ │ ├── os.pathsearch.md │ │ │ ├── os.realpath.md │ │ │ ├── os.remove.md │ │ │ ├── os.rename.md │ │ │ ├── os.rmdir.md │ │ │ ├── os.stat.md │ │ │ ├── os.target.md │ │ │ ├── os.targetarch.md │ │ │ ├── os.touchfile.md │ │ │ ├── os.translateCommands.md │ │ │ ├── os.uuid.md │ │ │ └── os.writefile_ifnotequal.md │ │ ├── path │ │ │ ├── path.appendExtension.md │ │ │ ├── path.getabsolute.md │ │ │ ├── path.getbasename.md │ │ │ ├── path.getdirectory.md │ │ │ ├── path.getdrive.md │ │ │ ├── path.getextension.md │ │ │ ├── path.getname.md │ │ │ ├── path.getrelative.md │ │ │ ├── path.hasextension.md │ │ │ ├── path.isabsolute.md │ │ │ ├── path.iscfile.md │ │ │ ├── path.iscppfile.md │ │ │ ├── path.iscppheader.md │ │ │ ├── path.isframework.md │ │ │ ├── path.islinkable.md │ │ │ ├── path.isobjectfile.md │ │ │ ├── path.isresourcefile.md │ │ │ ├── path.join.md │ │ │ ├── path.normalize.md │ │ │ ├── path.rebase.md │ │ │ ├── path.replaceextension.md │ │ │ ├── path.translate.md │ │ │ └── path.wildcards.md │ │ ├── pchheader.md │ │ ├── pchsource.md │ │ ├── pic.md │ │ ├── platforms.md │ │ ├── postbuildcommands.md │ │ ├── postbuildmessage.md │ │ ├── prebuildcommands.md │ │ ├── prebuildmessage.md │ │ ├── preferredtoolarchitecture.md │ │ ├── prelinkcommands.md │ │ ├── prelinkmessage.md │ │ ├── profile.md │ │ ├── project.md │ │ ├── propertydefinition.md │ │ ├── rebuildcommands.md │ │ ├── remotedeploydir.md │ │ ├── remoteprojectdir.md │ │ ├── remoteprojectrelativedir.md │ │ ├── remoterootdir.md │ │ ├── removeunreferencedcodedata.md │ │ ├── resdefines.md │ │ ├── resincludedirs.md │ │ ├── resoptions.md │ │ ├── resourcegenerator.md │ │ ├── rtti.md │ │ ├── rule.md │ │ ├── rules.md │ │ ├── runcodeanalysis.md │ │ ├── runpathdirs.md │ │ ├── runtime.md │ │ ├── sanitize.md │ │ ├── scanformoduledependencies.md │ │ ├── shaderassembler.md │ │ ├── shaderassembleroutput.md │ │ ├── shaderdefines.md │ │ ├── shaderentry.md │ │ ├── shaderheaderfileoutput.md │ │ ├── shaderincludedirs.md │ │ ├── shadermodel.md │ │ ├── shaderobjectfileoutput.md │ │ ├── shaderoptions.md │ │ ├── shadertype.md │ │ ├── shadervariablename.md │ │ ├── sharedlibtype.md │ │ ├── startproject.md │ │ ├── staticruntime.md │ │ ├── stl.md │ │ ├── strictaliasing.md │ │ ├── string │ │ │ ├── string.capitalized.md │ │ │ ├── string.contains.md │ │ │ ├── string.endswith.md │ │ │ ├── string.escapepattern.md │ │ │ ├── string.explode.md │ │ │ ├── string.findlast.md │ │ │ ├── string.hash.md │ │ │ ├── string.lines.md │ │ │ ├── string.plural.md │ │ │ ├── string.sha1.md │ │ │ └── string.startswith.md │ │ ├── stringpooling.md │ │ ├── structmemberalign.md │ │ ├── swiftversion.md │ │ ├── symbols.md │ │ ├── symbolspath.md │ │ ├── sysincludedirs.md │ │ ├── syslibdirs.md │ │ ├── system.md │ │ ├── systemversion.md │ │ ├── table │ │ │ ├── table.arraycopy.md │ │ │ ├── table.contains.md │ │ │ ├── table.deepcopy.md │ │ │ ├── table.extract.md │ │ │ ├── table.filterempty.md │ │ │ ├── table.flatten.md │ │ │ ├── table.fold.md │ │ │ ├── table.foreachi.md │ │ │ ├── table.implode.md │ │ │ ├── table.indexof.md │ │ │ ├── table.insertafter.md │ │ │ ├── table.insertflat.md │ │ │ ├── table.isempty.md │ │ │ ├── table.join.md │ │ │ ├── table.keys.md │ │ │ ├── table.merge.md │ │ │ ├── table.replace.md │ │ │ ├── table.tostring.md │ │ │ └── table.translate.md │ │ ├── tags.md │ │ ├── tailcalls.md │ │ ├── targetbundleextension.md │ │ ├── targetdir.md │ │ ├── targetextension.md │ │ ├── targetname.md │ │ ├── targetprefix.md │ │ ├── targetsuffix.md │ │ ├── term │ │ │ ├── term.clearToEndOfLine.md │ │ │ ├── term.getTextColor.md │ │ │ ├── term.moveLeft.md │ │ │ ├── term.popColor.md │ │ │ ├── term.pushColor.md │ │ │ └── term.setTextColor.md │ │ ├── thumbmode.md │ │ ├── toolchainversion.md │ │ ├── toolset.md │ │ ├── toolsversion.md │ │ ├── undefines.md │ │ ├── unsignedchar.md │ │ ├── usage.md │ │ ├── usefullpaths.md │ │ ├── uses.md │ │ ├── usestandardpreprocessor.md │ │ ├── usingdirs.md │ │ ├── uuid.md │ │ ├── vectorextensions.md │ │ ├── visibility.md │ │ ├── vpaths.md │ │ ├── vsprops.md │ │ ├── warnings.md │ │ ├── workspace.md │ │ ├── xcodebuildresources.md │ │ ├── xcodebuildsettings.md │ │ ├── xcodecodesigningidentity.md │ │ ├── xcodesystemcapabilities.md │ │ └── zip │ │ │ └── zip.extract.md │ │ ├── docusaurus.config.js │ │ ├── package.json │ │ ├── sidebars-community.js │ │ ├── sidebars.js │ │ ├── src │ │ ├── components │ │ │ ├── Grid.js │ │ │ └── Sponsors.js │ │ ├── css │ │ │ └── custom.css │ │ └── pages │ │ │ ├── download.js │ │ │ └── index.js │ │ └── static │ │ ├── .nojekyll │ │ ├── img │ │ ├── favicon.ico │ │ └── premake-logo.png │ │ └── js │ │ └── localizeLastUpdatedDate.js ├── pthread-win32 │ ├── OpenMPT.txt │ ├── _ptw32.h │ ├── cleanup.c │ ├── config.h │ ├── context.h │ ├── create.c │ ├── dll.c │ ├── docs │ │ ├── CONTRIBUTORS.md │ │ ├── COPYING.FSF.md │ │ └── COPYING.md │ ├── errno.c │ ├── global.c │ ├── implement.h │ ├── need_errno.h │ ├── pthread-EH.cpp │ ├── pthread-JMP.c │ ├── pthread.c │ ├── pthread.h │ ├── pthread_attr_destroy.c │ ├── pthread_attr_getaffinity_np.c │ ├── pthread_attr_getdetachstate.c │ ├── pthread_attr_getinheritsched.c │ ├── pthread_attr_getname_np.c │ ├── pthread_attr_getschedparam.c │ ├── pthread_attr_getschedpolicy.c │ ├── pthread_attr_getscope.c │ ├── pthread_attr_getstackaddr.c │ ├── pthread_attr_getstacksize.c │ ├── pthread_attr_init.c │ ├── pthread_attr_setaffinity_np.c │ ├── pthread_attr_setdetachstate.c │ ├── pthread_attr_setinheritsched.c │ ├── pthread_attr_setname_np.c │ ├── pthread_attr_setschedparam.c │ ├── pthread_attr_setschedpolicy.c │ ├── pthread_attr_setscope.c │ ├── pthread_attr_setstackaddr.c │ ├── pthread_attr_setstacksize.c │ ├── pthread_barrier_destroy.c │ ├── pthread_barrier_init.c │ ├── pthread_barrier_wait.c │ ├── pthread_barrierattr_destroy.c │ ├── pthread_barrierattr_getpshared.c │ ├── pthread_barrierattr_init.c │ ├── pthread_barrierattr_setpshared.c │ ├── pthread_cancel.c │ ├── pthread_cond_destroy.c │ ├── pthread_cond_init.c │ ├── pthread_cond_signal.c │ ├── pthread_cond_wait.c │ ├── pthread_condattr_destroy.c │ ├── pthread_condattr_getpshared.c │ ├── pthread_condattr_init.c │ ├── pthread_condattr_setpshared.c │ ├── pthread_delay_np.c │ ├── pthread_detach.c │ ├── pthread_equal.c │ ├── pthread_exit.c │ ├── pthread_getconcurrency.c │ ├── pthread_getname_np.c │ ├── pthread_getschedparam.c │ ├── pthread_getspecific.c │ ├── pthread_getunique_np.c │ ├── pthread_getw32threadhandle_np.c │ ├── pthread_join.c │ ├── pthread_key_create.c │ ├── pthread_key_delete.c │ ├── pthread_kill.c │ ├── pthread_mutex_consistent.c │ ├── pthread_mutex_destroy.c │ ├── pthread_mutex_init.c │ ├── pthread_mutex_lock.c │ ├── pthread_mutex_timedlock.c │ ├── pthread_mutex_trylock.c │ ├── pthread_mutex_unlock.c │ ├── pthread_mutexattr_destroy.c │ ├── pthread_mutexattr_getkind_np.c │ ├── pthread_mutexattr_getpshared.c │ ├── pthread_mutexattr_getrobust.c │ ├── pthread_mutexattr_gettype.c │ ├── pthread_mutexattr_init.c │ ├── pthread_mutexattr_setkind_np.c │ ├── pthread_mutexattr_setpshared.c │ ├── pthread_mutexattr_setrobust.c │ ├── pthread_mutexattr_settype.c │ ├── pthread_num_processors_np.c │ ├── pthread_once.c │ ├── pthread_rwlock_destroy.c │ ├── pthread_rwlock_init.c │ ├── pthread_rwlock_rdlock.c │ ├── pthread_rwlock_timedrdlock.c │ ├── pthread_rwlock_timedwrlock.c │ ├── pthread_rwlock_tryrdlock.c │ ├── pthread_rwlock_trywrlock.c │ ├── pthread_rwlock_unlock.c │ ├── pthread_rwlock_wrlock.c │ ├── pthread_rwlockattr_destroy.c │ ├── pthread_rwlockattr_getpshared.c │ ├── pthread_rwlockattr_init.c │ ├── pthread_rwlockattr_setpshared.c │ ├── pthread_self.c │ ├── pthread_setaffinity.c │ ├── pthread_setcancelstate.c │ ├── pthread_setcanceltype.c │ ├── pthread_setconcurrency.c │ ├── pthread_setname_np.c │ ├── pthread_setschedparam.c │ ├── pthread_setspecific.c │ ├── pthread_spin_destroy.c │ ├── pthread_spin_init.c │ ├── pthread_spin_lock.c │ ├── pthread_spin_trylock.c │ ├── pthread_spin_unlock.c │ ├── pthread_testcancel.c │ ├── pthread_timechange_handler_np.c │ ├── pthread_timedjoin_np.c │ ├── pthread_tryjoin_np.c │ ├── pthread_win32_attach_detach_np.c │ ├── ptw32_MCS_lock.c │ ├── ptw32_callUserDestroyRoutines.c │ ├── ptw32_calloc.c │ ├── ptw32_cond_check_need_init.c │ ├── ptw32_getprocessors.c │ ├── ptw32_is_attr.c │ ├── ptw32_mutex_check_need_init.c │ ├── ptw32_new.c │ ├── ptw32_processInitialize.c │ ├── ptw32_processTerminate.c │ ├── ptw32_relmillisecs.c │ ├── ptw32_reuse.c │ ├── ptw32_rwlock_cancelwrwait.c │ ├── ptw32_rwlock_check_need_init.c │ ├── ptw32_semwait.c │ ├── ptw32_spinlock_check_need_init.c │ ├── ptw32_strdup.c │ ├── ptw32_threadDestroy.c │ ├── ptw32_threadStart.c │ ├── ptw32_throw.c │ ├── ptw32_timespec.c │ ├── ptw32_tkAssocCreate.c │ ├── ptw32_tkAssocDestroy.c │ ├── sched.h │ ├── sched_get_priority_max.c │ ├── sched_get_priority_min.c │ ├── sched_getscheduler.c │ ├── sched_setaffinity.c │ ├── sched_setscheduler.c │ ├── sched_yield.c │ ├── sem_close.c │ ├── sem_destroy.c │ ├── sem_getvalue.c │ ├── sem_init.c │ ├── sem_open.c │ ├── sem_post.c │ ├── sem_post_multiple.c │ ├── sem_timedwait.c │ ├── sem_trywait.c │ ├── sem_unlink.c │ ├── sem_wait.c │ ├── semaphore.h │ ├── signal.c │ └── w32_CancelableWait.c ├── pugixml │ ├── LICENSE.md │ ├── OpenMPT.txt │ ├── readme.txt │ └── src │ │ ├── pugiconfig.hpp │ │ ├── pugixml.cpp │ │ └── pugixml.hpp ├── r8brain │ ├── CDSPBlockConvolver.h │ ├── CDSPFIRFilter.h │ ├── CDSPFracInterpolator.h │ ├── CDSPHBDownsampler.h │ ├── CDSPHBDownsampler.inc │ ├── CDSPHBUpsampler.h │ ├── CDSPHBUpsampler.inc │ ├── CDSPProcessor.h │ ├── CDSPRealFFT.h │ ├── CDSPResampler.h │ ├── CDSPSincFilterGen.h │ ├── LICENSE │ ├── OpenMPT.txt │ ├── README.md │ ├── fft4g.h │ ├── r8bbase.cpp │ ├── r8bbase.h │ ├── r8bconf.h │ └── r8butil.h ├── rtaudio │ ├── LICENSE │ ├── OpenMPT.txt │ ├── README.md │ ├── RtAudio.cpp │ └── RtAudio.h ├── rtkit │ ├── OpenMPT.txt │ ├── rtkit.c │ └── rtkit.h ├── rtmidi │ ├── LICENSE │ ├── OpenMPT.txt │ ├── RtMidi.cpp │ └── RtMidi.h ├── stb_vorbis │ ├── OpenMPT.txt │ └── stb_vorbis.c ├── unrar │ ├── OpenMPT.txt │ ├── acknow.txt │ ├── arccmt.cpp │ ├── archive.cpp │ ├── archive.hpp │ ├── arcread.cpp │ ├── array.hpp │ ├── blake2s.cpp │ ├── blake2s.hpp │ ├── blake2s_sse.cpp │ ├── blake2sp.cpp │ ├── cmddata.cpp │ ├── cmddata.hpp │ ├── cmdfilter.cpp │ ├── cmdmix.cpp │ ├── coder.cpp │ ├── coder.hpp │ ├── compress.hpp │ ├── consio.cpp │ ├── consio.hpp │ ├── crc.cpp │ ├── crc.hpp │ ├── crypt.cpp │ ├── crypt.hpp │ ├── crypt1.cpp │ ├── crypt2.cpp │ ├── crypt3.cpp │ ├── crypt5.cpp │ ├── dll.cpp │ ├── dll.hpp │ ├── dll_nocrypt.def │ ├── encname.cpp │ ├── encname.hpp │ ├── errhnd.cpp │ ├── errhnd.hpp │ ├── extinfo.cpp │ ├── extinfo.hpp │ ├── extract.cpp │ ├── extract.hpp │ ├── filcreat.cpp │ ├── filcreat.hpp │ ├── file.cpp │ ├── file.hpp │ ├── filefn.cpp │ ├── filefn.hpp │ ├── filestr.cpp │ ├── filestr.hpp │ ├── find.cpp │ ├── find.hpp │ ├── getbits.cpp │ ├── getbits.hpp │ ├── global.cpp │ ├── global.hpp │ ├── hardlinks.cpp │ ├── hash.cpp │ ├── hash.hpp │ ├── headers.cpp │ ├── headers.hpp │ ├── headers5.hpp │ ├── isnt.cpp │ ├── isnt.hpp │ ├── largepage.cpp │ ├── largepage.hpp │ ├── license.txt │ ├── list.cpp │ ├── list.hpp │ ├── loclang.hpp │ ├── log.cpp │ ├── log.hpp │ ├── match.cpp │ ├── match.hpp │ ├── model.cpp │ ├── model.hpp │ ├── motw.cpp │ ├── motw.hpp │ ├── options.cpp │ ├── options.hpp │ ├── os.hpp │ ├── pathfn.cpp │ ├── pathfn.hpp │ ├── qopen.cpp │ ├── qopen.hpp │ ├── rar.cpp │ ├── rar.hpp │ ├── rardefs.hpp │ ├── rarlang.hpp │ ├── raros.hpp │ ├── rarpch.cpp │ ├── rartypes.hpp │ ├── rarvm.cpp │ ├── rarvm.hpp │ ├── rawint.hpp │ ├── rawread.cpp │ ├── rawread.hpp │ ├── rdwrfn.cpp │ ├── rdwrfn.hpp │ ├── readme.txt │ ├── recvol.cpp │ ├── recvol.hpp │ ├── recvol3.cpp │ ├── recvol5.cpp │ ├── resource.cpp │ ├── resource.hpp │ ├── rijndael.cpp │ ├── rijndael.hpp │ ├── rs.cpp │ ├── rs.hpp │ ├── rs16.cpp │ ├── rs16.hpp │ ├── scantree.cpp │ ├── scantree.hpp │ ├── secpassword.cpp │ ├── secpassword.hpp │ ├── sha1.cpp │ ├── sha1.hpp │ ├── sha256.cpp │ ├── sha256.hpp │ ├── smallfn.cpp │ ├── smallfn.hpp │ ├── strfn.cpp │ ├── strfn.hpp │ ├── strlist.cpp │ ├── strlist.hpp │ ├── suballoc.cpp │ ├── suballoc.hpp │ ├── system.cpp │ ├── system.hpp │ ├── threadmisc.cpp │ ├── threadpool.cpp │ ├── threadpool.hpp │ ├── timefn.cpp │ ├── timefn.hpp │ ├── ui.cpp │ ├── ui.hpp │ ├── uicommon.cpp │ ├── uiconsole.cpp │ ├── uisilent.cpp │ ├── ulinks.cpp │ ├── unicode.cpp │ ├── unicode.hpp │ ├── unpack.cpp │ ├── unpack.hpp │ ├── unpack15.cpp │ ├── unpack20.cpp │ ├── unpack30.cpp │ ├── unpack50.cpp │ ├── unpack50frag.cpp │ ├── unpack50mt.cpp │ ├── unpackinline.cpp │ ├── uowners.cpp │ ├── version.hpp │ ├── volume.cpp │ ├── volume.hpp │ ├── win32acl.cpp │ ├── win32lnk.cpp │ └── win32stm.cpp ├── vorbis │ ├── AUTHORS │ ├── CHANGES │ ├── COPYING │ ├── OpenMPT.txt │ ├── include │ │ └── vorbis │ │ │ ├── codec.h │ │ │ ├── vorbisenc.h │ │ │ └── vorbisfile.h │ ├── lib │ │ ├── analysis.c │ │ ├── backends.h │ │ ├── barkmel.c │ │ ├── bitrate.c │ │ ├── bitrate.h │ │ ├── block.c │ │ ├── books │ │ │ ├── coupled │ │ │ │ ├── res_books_51.h │ │ │ │ └── res_books_stereo.h │ │ │ ├── floor │ │ │ │ └── floor_books.h │ │ │ └── uncoupled │ │ │ │ └── res_books_uncoupled.h │ │ ├── codebook.c │ │ ├── codebook.h │ │ ├── codec_internal.h │ │ ├── envelope.c │ │ ├── envelope.h │ │ ├── floor0.c │ │ ├── floor1.c │ │ ├── highlevel.h │ │ ├── info.c │ │ ├── lookup.c │ │ ├── lookup.h │ │ ├── lookup_data.h │ │ ├── lookups.pl │ │ ├── lpc.c │ │ ├── lpc.h │ │ ├── lsp.c │ │ ├── lsp.h │ │ ├── mapping0.c │ │ ├── masking.h │ │ ├── mdct.c │ │ ├── mdct.h │ │ ├── misc.h │ │ ├── modes │ │ │ ├── floor_all.h │ │ │ ├── psych_11.h │ │ │ ├── psych_16.h │ │ │ ├── psych_44.h │ │ │ ├── psych_8.h │ │ │ ├── residue_16.h │ │ │ ├── residue_44.h │ │ │ ├── residue_44p51.h │ │ │ ├── residue_44u.h │ │ │ ├── residue_8.h │ │ │ ├── setup_11.h │ │ │ ├── setup_16.h │ │ │ ├── setup_22.h │ │ │ ├── setup_32.h │ │ │ ├── setup_44.h │ │ │ ├── setup_44p51.h │ │ │ ├── setup_44u.h │ │ │ ├── setup_8.h │ │ │ └── setup_X.h │ │ ├── os.h │ │ ├── psy.c │ │ ├── psy.h │ │ ├── psytune.c │ │ ├── registry.c │ │ ├── registry.h │ │ ├── res0.c │ │ ├── scales.h │ │ ├── sharedbook.c │ │ ├── smallft.c │ │ ├── smallft.h │ │ ├── synthesis.c │ │ ├── tone.c │ │ ├── vorbisenc.c │ │ ├── vorbisfile.c │ │ ├── window.c │ │ └── window.h │ └── win32 │ │ ├── vorbis.def │ │ ├── vorbisenc.def │ │ └── vorbisfile.def └── zlib │ ├── ChangeLog │ ├── FAQ │ ├── INDEX │ ├── LICENSE │ ├── OpenMPT.txt │ ├── README │ ├── adler32.c │ ├── compress.c │ ├── contrib │ ├── README.contrib │ └── minizip │ │ ├── MiniZip64_Changes.txt │ │ ├── MiniZip64_info.txt │ │ ├── crypt.h │ │ ├── ioapi.c │ │ ├── ioapi.h │ │ ├── iowin32.c │ │ ├── iowin32.h │ │ ├── miniunz.c │ │ ├── minizip.c │ │ ├── mztools.c │ │ ├── mztools.h │ │ ├── unzip.c │ │ ├── unzip.h │ │ ├── zip.c │ │ └── zip.h │ ├── crc32.c │ ├── crc32.h │ ├── deflate.c │ ├── deflate.h │ ├── gzclose.c │ ├── gzguts.h │ ├── gzlib.c │ ├── gzread.c │ ├── gzwrite.c │ ├── infback.c │ ├── inffast.c │ ├── inffast.h │ ├── inffixed.h │ ├── inflate.c │ ├── inflate.h │ ├── inftrees.c │ ├── inftrees.h │ ├── trees.c │ ├── trees.h │ ├── uncompr.c │ ├── zconf.h │ ├── zlib.h │ ├── zutil.c │ └── zutil.h ├── installer ├── filetypes-multi-arch-per-arch-retro.iss ├── filetypes-multi-arch-per-arch.iss ├── filetypes-multi-arch-retro.iss ├── filetypes-multi-arch.iss ├── generate_update_json.py ├── generate_update_json_retro.py ├── install-big.bmp ├── install-multi-arch-retro-signed.iss ├── install-multi-arch-retro.iss ├── install-multi-arch-signed.iss ├── install-multi-arch.iss ├── install-small.bmp ├── packageTemplate │ └── readme.txt ├── uninstall-single-arch.iss └── updatesigntool │ └── updatesigntool.cpp ├── libopenmpt ├── .clang-format ├── Doxyfile ├── bindings │ └── freebasic │ │ ├── libopenmpt.bi │ │ └── libopenmpt_ext.bi ├── in_openmpt │ ├── in_openmpt.cpp │ ├── in_openmpt.txt │ ├── in_openmpt_wa2.cpp │ ├── in_openmpt_wa2.txt │ └── in_openmpt_wa5.cpp ├── libopenmpt.h ├── libopenmpt.hpp ├── libopenmpt.ico ├── libopenmpt.pc.in ├── libopenmpt_c.cpp ├── libopenmpt_config.h ├── libopenmpt_cxx.cpp ├── libopenmpt_ext.h ├── libopenmpt_ext.hpp ├── libopenmpt_ext_impl.cpp ├── libopenmpt_ext_impl.hpp ├── libopenmpt_impl.cpp ├── libopenmpt_impl.hpp ├── libopenmpt_internal.h ├── libopenmpt_stream_callbacks_buffer.h ├── libopenmpt_stream_callbacks_fd.h ├── libopenmpt_stream_callbacks_file.h ├── libopenmpt_stream_callbacks_file_mingw.h ├── libopenmpt_stream_callbacks_file_msvcrt.h ├── libopenmpt_stream_callbacks_file_posix.h ├── libopenmpt_stream_callbacks_file_posix_lfs64.h ├── libopenmpt_test │ ├── libopenmpt_test.cpp │ └── libopenmpt_test.manifest ├── libopenmpt_version.h ├── libopenmpt_version.mk ├── libopenmpt_version.rc ├── plugin-common │ ├── libopenmpt_plugin_gui.cpp │ ├── libopenmpt_plugin_gui.hpp │ ├── libopenmpt_plugin_gui.rc │ ├── libopenmpt_plugin_settings.hpp │ └── resource.h └── xmp-openmpt │ ├── xmp-openmpt.cpp │ └── xmp-openmpt.txt ├── misc ├── GzipWriter.h ├── WriteMemoryDump.h ├── mptClock.cpp ├── mptClock.h ├── mptColor.cpp ├── mptColor.h ├── mptFileCompression.cpp ├── mptFileCompression.h ├── mptLibrary.cpp ├── mptLibrary.h ├── mptMutex.h ├── mptOS.cpp ├── mptOS.h ├── mptOSException.h ├── mptWine.cpp └── mptWine.h ├── mptrack ├── AboutDialog.cpp ├── AboutDialog.h ├── AbstractVstEditor.cpp ├── AbstractVstEditor.h ├── AccessibleControls.h ├── AdvancedConfigDlg.cpp ├── AdvancedConfigDlg.h ├── AppendModule.cpp ├── AutoSaver.cpp ├── AutoSaver.h ├── Autotune.cpp ├── Autotune.h ├── CDecimalSupport.cpp ├── CDecimalSupport.h ├── CImageListEx.cpp ├── CImageListEx.h ├── CListCtrl.h ├── ChannelManagerDlg.cpp ├── ChannelManagerDlg.h ├── Childfrm.cpp ├── Childfrm.h ├── CleanupSong.cpp ├── CleanupSong.h ├── Clipboard.h ├── CloseMainDialog.cpp ├── CloseMainDialog.h ├── ColorConfigDlg.cpp ├── ColorConfigDlg.h ├── ColorPickerButton.cpp ├── ColorPickerButton.h ├── ColorSchemes.h ├── ColourEdit.cpp ├── ColourEdit.h ├── CommandSet.cpp ├── CommandSet.h ├── Ctrl_com.cpp ├── Ctrl_com.h ├── Ctrl_gen.cpp ├── Ctrl_gen.h ├── Ctrl_ins.cpp ├── Ctrl_ins.h ├── Ctrl_pat.cpp ├── Ctrl_pat.h ├── Ctrl_seq.cpp ├── Ctrl_smp.cpp ├── Ctrl_smp.h ├── DefaultKeyBindings.h ├── DefaultVstEditor.cpp ├── DefaultVstEditor.h ├── DialogBase.cpp ├── DialogBase.h ├── Draw_pat.cpp ├── EffectInfo.cpp ├── EffectInfo.h ├── EffectVis.cpp ├── EffectVis.h ├── ExceptionHandler.cpp ├── ExceptionHandler.h ├── ExternalSamples.cpp ├── ExternalSamples.h ├── FileDialog.cpp ├── FileDialog.h ├── FolderScanner.cpp ├── FolderScanner.h ├── GeneralConfigDlg.cpp ├── GeneralConfigDlg.h ├── Globals.cpp ├── Globals.h ├── HTTP.cpp ├── HTTP.h ├── HighDPISupport.cpp ├── HighDPISupport.h ├── IPCWindow.cpp ├── IPCWindow.h ├── Image.cpp ├── Image.h ├── ImageLists.h ├── InputHandler.cpp ├── InputHandler.h ├── KeyConfigDlg.cpp ├── KeyConfigDlg.h ├── LinkResolver.cpp ├── LinkResolver.h ├── MIDIMacroDialog.cpp ├── MIDIMacroDialog.h ├── MIDIMapping.cpp ├── MIDIMapping.h ├── MIDIMappingDialog.cpp ├── MIDIMappingDialog.h ├── MPTHacks.cpp ├── MPTrackLink.cpp ├── MPTrackUtil.cpp ├── MPTrackUtil.h ├── MPTrackUtilWine.cpp ├── MPTrackUtilWine.h ├── MPTrackWine.cpp ├── MPTrackWine.h ├── MainFrm.cpp ├── Mainbar.cpp ├── Mainbar.h ├── Mainfrm.h ├── Mod2wave.cpp ├── ModConvert.cpp ├── ModConvert.h ├── ModDocTemplate.cpp ├── ModDocTemplate.h ├── Moddoc.cpp ├── Moddoc.h ├── Modedit.cpp ├── MoveFXSlotDialog.cpp ├── MoveFXSlotDialog.h ├── Mpdlgs.cpp ├── Mpdlgs.h ├── Mpt_midi.cpp ├── Mptrack.cpp ├── Mptrack.h ├── Notification.h ├── OPLExport.cpp ├── OPLInstrDlg.cpp ├── OPLInstrDlg.h ├── PSRatioCalc.cpp ├── PSRatioCalc.h ├── PathConfigDlg.cpp ├── PathConfigDlg.h ├── PatternClipboard.cpp ├── PatternClipboard.h ├── PatternCursor.h ├── PatternEditorDialogs.cpp ├── PatternEditorDialogs.h ├── PatternFindReplace.cpp ├── PatternFindReplace.h ├── PatternFindReplaceDlg.cpp ├── PatternFindReplaceDlg.h ├── PatternFont.cpp ├── PatternFont.h ├── PatternGotoDialog.cpp ├── PatternGotoDialog.h ├── PlugNotFoundDlg.cpp ├── PlugNotFoundDlg.h ├── PluginComboBox.cpp ├── PluginComboBox.h ├── ProgressDialog.cpp ├── ProgressDialog.h ├── QuickStartDialog.cpp ├── QuickStartDialog.h ├── Reporting.cpp ├── Reporting.h ├── ResizableDialog.cpp ├── ResizableDialog.h ├── SampleConfigDlg.cpp ├── SampleConfigDlg.h ├── SampleEditorDialogs.cpp ├── SampleEditorDialogs.h ├── SampleGenerator.cpp ├── SampleGenerator.h ├── SampleTrimmer.cpp ├── ScaleEnvPointsDlg.cpp ├── ScaleEnvPointsDlg.h ├── SelectPluginDialog.cpp ├── SelectPluginDialog.h ├── Settings.cpp ├── Settings.h ├── StreamEncoderSettings.cpp ├── StreamEncoderSettings.h ├── TempoSwingDialog.cpp ├── TempoSwingDialog.h ├── TrackerSettings.cpp ├── TrackerSettings.h ├── TuningDialog.cpp ├── TuningDialog.h ├── Undo.cpp ├── Undo.h ├── UpdateCheck.cpp ├── UpdateCheck.h ├── UpdateHints.h ├── UpdateToolTip.cpp ├── UpdateToolTip.h ├── VSTEditor.cpp ├── VSTEditor.h ├── View_gen.cpp ├── View_gen.h ├── View_ins.cpp ├── View_ins.h ├── View_pat.cpp ├── View_pat.h ├── View_smp.cpp ├── View_smp.h ├── View_tre.cpp ├── View_tre.h ├── VstPresets.cpp ├── VstPresets.h ├── Vstplug.cpp ├── Vstplug.h ├── WelcomeDialog.cpp ├── WelcomeDialog.h ├── WindowMessages.h ├── WineSoundDeviceStub.cpp ├── WineSoundDeviceStub.h ├── dlg_misc.cpp ├── dlg_misc.h ├── manual_generator │ ├── readme.txt │ ├── source │ │ ├── bullet.png │ │ ├── external.png │ │ └── help.css │ └── wiki.py ├── mod2midi.cpp ├── mod2midi.h ├── mod2wave.h ├── mptrack.rc ├── plugins │ ├── LFOPluginEditor.cpp │ ├── LFOPluginEditor.h │ ├── MidiInOut.cpp │ ├── MidiInOut.h │ ├── MidiInOutEditor.cpp │ ├── MidiInOutEditor.h │ ├── VstDefinitions.h │ ├── VstEventQueue.h │ └── VstOpCodes.h ├── res │ ├── About.png │ ├── COLORS.BMP │ ├── DRAGGING.CUR │ ├── MPTRACK.ICO │ ├── MPTRACK.RC2 │ ├── NODROP.CUR │ ├── New32.png │ ├── Open32.png │ ├── OpenMPT.manifest │ ├── Splash.png │ ├── envelope_toolbar.png │ ├── icons.png │ ├── main_toolbar.png │ ├── moddoc.ico │ ├── nodrag.cur │ ├── originals │ │ ├── 128x128.svg │ │ ├── 16x16.svg │ │ ├── 192x192.svg │ │ ├── 22x22.svg │ │ ├── 24x24.svg │ │ ├── 256x256.svg │ │ ├── 32x32.svg │ │ ├── 36x36.svg │ │ ├── 40x40.svg │ │ ├── 48x48.svg │ │ ├── 512x512.svg │ │ ├── 64x64.svg │ │ ├── 72x72.svg │ │ ├── 96x96.svg │ │ ├── NewDoc.pfi │ │ ├── OpenMPT About Screen Waveform.png │ │ ├── OpenMPT About Screen.svg │ │ ├── OpenMPT Splash Screen.svg │ │ ├── envelope_toolbar.pfi │ │ ├── icons.pfi │ │ ├── main_toolbar.pfi │ │ ├── note.pfi │ │ ├── pattern_toolbar.pfi │ │ ├── readme.txt │ │ └── sample_toolbar.pfi │ ├── pattern_toolbar.png │ ├── sample_toolbar.png │ └── view_pat.bmp ├── resource.h ├── tuningRatioMapWnd.cpp ├── tuningRatioMapWnd.h ├── view_com.cpp ├── view_com.h └── wine │ ├── Native.cpp │ ├── Native.h │ ├── NativeConfig.h │ ├── NativeSoundDevice.cpp │ ├── NativeSoundDevice.h │ ├── NativeSoundDeviceMarshalling.h │ ├── NativeUtils.cpp │ ├── NativeUtils.h │ ├── WineWrapper.c │ └── WineWrapper.cpp ├── openmpt123 ├── .clang-format ├── openmpt123.cpp ├── openmpt123.h2m ├── openmpt123.hpp ├── openmpt123.manifest ├── openmpt123_allegro42.hpp ├── openmpt123_config.hpp ├── openmpt123_exception.hpp ├── openmpt123_flac.hpp ├── openmpt123_mmio.hpp ├── openmpt123_portaudio.hpp ├── openmpt123_pulseaudio.hpp ├── openmpt123_raw.hpp ├── openmpt123_sdl2.hpp ├── openmpt123_sndfile.hpp ├── openmpt123_stdout.hpp ├── openmpt123_terminal.hpp └── openmpt123_waveout.hpp ├── packageTemplate ├── History.txt ├── OpenMPT File Icon.ico ├── OpenMPT Issue Tracker.url ├── OpenMPT Support and Community Forum.url ├── OpenMPT.portable ├── Release Notes.html ├── ReleaseNotesImages │ ├── 1.32 │ │ ├── main_toolbar.png │ │ ├── metronome_settings.png │ │ └── quick_start.png │ └── modplug.png ├── extraKeymaps │ ├── DE_it2_melcom.mkb │ ├── DE_jojo.mkb │ ├── FI_FT2Style_cce.mkb │ ├── FR_FT2Style_(goor00).mkb │ ├── FR_mpt_(legovitch).mkb │ ├── FR_mpt_classic_(vanisherIII).mkb │ ├── NO_mpt_classic_(rakib).mkb │ ├── RU_Fler0301.mkb │ ├── SE_laptop_(ganja).mkb │ ├── UK_it2_(chocosaurus).mkb │ ├── UK_mpt_it2_hybrid_(rewbs).mkb │ ├── US_it2_(lpchip).mkb │ ├── US_mpt-ft2_classic.mkb │ ├── US_mpt-it2_classic.mkb │ ├── US_mpt_classic_(nobuyuki).mkb │ ├── US_mptit_(coda).mkb │ ├── dvorak_(snu).mkb │ ├── es-LA_it-mpt_jmkz.mkb │ └── es-LA_mpt_jmkz.mkb └── readme.txt ├── pluginBridge ├── AEffectWrapper.h ├── Bridge.cpp ├── Bridge.h ├── BridgeCommon.h ├── BridgeOpCodes.h ├── BridgeWrapper.cpp ├── BridgeWrapper.h ├── PluginBridge.manifest └── PluginBridge.rc ├── sounddsp ├── AGC.cpp ├── AGC.h ├── DSP.cpp ├── DSP.h ├── EQ.cpp ├── EQ.h ├── Reverb.cpp └── Reverb.h ├── soundlib ├── AudioCriticalSection.cpp ├── AudioCriticalSection.h ├── AudioReadTarget.h ├── BitReader.h ├── Container.h ├── ContainerMMCMP.cpp ├── ContainerPP20.cpp ├── ContainerUMX.cpp ├── ContainerXPK.cpp ├── Dlsbank.cpp ├── Dlsbank.h ├── Fastmix.cpp ├── FloatMixer.h ├── ITCompression.cpp ├── ITCompression.h ├── ITTools.cpp ├── ITTools.h ├── InstrumentExtensions.cpp ├── InstrumentSynth.cpp ├── InstrumentSynth.h ├── IntMixer.h ├── Load_667.cpp ├── Load_669.cpp ├── Load_amf.cpp ├── Load_ams.cpp ├── Load_c67.cpp ├── Load_cba.cpp ├── Load_dbm.cpp ├── Load_digi.cpp ├── Load_dmf.cpp ├── Load_dsm.cpp ├── Load_dsym.cpp ├── Load_dtm.cpp ├── Load_etx.cpp ├── Load_far.cpp ├── Load_fc.cpp ├── Load_fmt.cpp ├── Load_ftm.cpp ├── Load_gdm.cpp ├── Load_gmc.cpp ├── Load_gt2.cpp ├── Load_ice.cpp ├── Load_imf.cpp ├── Load_ims.cpp ├── Load_it.cpp ├── Load_itp.cpp ├── Load_kris.cpp ├── Load_mdl.cpp ├── Load_med.cpp ├── Load_mid.cpp ├── Load_mo3.cpp ├── Load_mod.cpp ├── Load_mt2.cpp ├── Load_mtm.cpp ├── Load_mus_km.cpp ├── Load_okt.cpp ├── Load_plm.cpp ├── Load_psm.cpp ├── Load_pt36.cpp ├── Load_ptm.cpp ├── Load_puma.cpp ├── Load_rtm.cpp ├── Load_s3m.cpp ├── Load_sfx.cpp ├── Load_stk.cpp ├── Load_stm.cpp ├── Load_stp.cpp ├── Load_symmod.cpp ├── Load_tcb.cpp ├── Load_uax.cpp ├── Load_ult.cpp ├── Load_unic.cpp ├── Load_wav.cpp ├── Load_xm.cpp ├── Load_xmf.cpp ├── Loaders.h ├── MIDIEvents.cpp ├── MIDIEvents.h ├── MIDIMacroParser.cpp ├── MIDIMacroParser.h ├── MIDIMacros.cpp ├── MIDIMacros.h ├── MODTools.cpp ├── MODTools.h ├── MPEGFrame.cpp ├── MPEGFrame.h ├── Message.cpp ├── Message.h ├── MixFuncTable.cpp ├── MixFuncTable.h ├── Mixer.h ├── MixerInterface.h ├── MixerLoops.cpp ├── MixerLoops.h ├── MixerSettings.cpp ├── MixerSettings.h ├── ModChannel.cpp ├── ModChannel.h ├── ModInstrument.cpp ├── ModInstrument.h ├── ModSample.cpp ├── ModSample.h ├── ModSampleCopy.h ├── ModSequence.cpp ├── ModSequence.h ├── OPL.cpp ├── OPL.h ├── OggStream.cpp ├── OggStream.h ├── Paula.cpp ├── Paula.h ├── PlayState.cpp ├── PlayState.h ├── PlaybackTest.cpp ├── PlaybackTest.h ├── Resampler.h ├── RowVisitor.cpp ├── RowVisitor.h ├── S3MTools.cpp ├── S3MTools.h ├── SampleCopy.h ├── SampleFormatBRR.cpp ├── SampleFormatFLAC.cpp ├── SampleFormatMP3.cpp ├── SampleFormatMediaFoundation.cpp ├── SampleFormatOpus.cpp ├── SampleFormatSFZ.cpp ├── SampleFormatVorbis.cpp ├── SampleFormats.cpp ├── SampleIO.cpp ├── SampleIO.h ├── SampleNormalize.h ├── Snd_defs.h ├── Snd_flt.cpp ├── Snd_fx.cpp ├── Sndfile.cpp ├── Sndfile.h ├── Sndmix.cpp ├── SoundFilePlayConfig.cpp ├── SoundFilePlayConfig.h ├── Tables.cpp ├── Tables.h ├── Tagging.cpp ├── Tagging.h ├── TinyFFT.cpp ├── TinyFFT.h ├── UMXTools.cpp ├── UMXTools.h ├── UpgradeModule.cpp ├── WAVTools.cpp ├── WAVTools.h ├── WindowedFIR.cpp ├── WindowedFIR.h ├── XMTools.cpp ├── XMTools.h ├── load_j2b.cpp ├── mod_specifications.cpp ├── mod_specifications.h ├── modcommand.cpp ├── modcommand.h ├── modsmp_ctrl.cpp ├── modsmp_ctrl.h ├── opal.h ├── pattern.cpp ├── pattern.h ├── patternContainer.cpp ├── patternContainer.h ├── plugins │ ├── DigiBoosterEcho.cpp │ ├── DigiBoosterEcho.h │ ├── LFOPlugin.cpp │ ├── LFOPlugin.h │ ├── PlugInterface.cpp │ ├── PlugInterface.h │ ├── PluginManager.cpp │ ├── PluginManager.h │ ├── PluginMixBuffer.h │ ├── PluginStructs.h │ ├── SymMODEcho.cpp │ ├── SymMODEcho.h │ └── dmo │ │ ├── Chorus.cpp │ │ ├── Chorus.h │ │ ├── Compressor.cpp │ │ ├── Compressor.h │ │ ├── DMOPlugin.cpp │ │ ├── DMOPlugin.h │ │ ├── DMOUtils.cpp │ │ ├── DMOUtils.h │ │ ├── Distortion.cpp │ │ ├── Distortion.h │ │ ├── Echo.cpp │ │ ├── Echo.h │ │ ├── Flanger.cpp │ │ ├── Flanger.h │ │ ├── Gargle.cpp │ │ ├── Gargle.h │ │ ├── I3DL2Reverb.cpp │ │ ├── I3DL2Reverb.h │ │ ├── ParamEq.cpp │ │ ├── ParamEq.h │ │ ├── WavesReverb.cpp │ │ └── WavesReverb.h ├── tuning.cpp ├── tuning.h ├── tuningCollection.cpp ├── tuningbase.h └── tuningcollection.h ├── src ├── mpt │ ├── .clang-format │ ├── LICENSE.BSD-3-Clause.txt │ ├── LICENSE.BSL-1.0.txt │ ├── arch │ │ ├── arch.hpp │ │ ├── feature_fence.hpp │ │ ├── feature_flags.hpp │ │ └── x86_amd64.hpp │ ├── audio │ │ ├── sample.hpp │ │ └── span.hpp │ ├── base │ │ ├── algorithm.hpp │ │ ├── aligned_array.hpp │ │ ├── alloc.hpp │ │ ├── arithmetic_shift.hpp │ │ ├── array.hpp │ │ ├── bit.hpp │ │ ├── check_platform.hpp │ │ ├── compiletime_warning.hpp │ │ ├── constexpr_throw.hpp │ │ ├── debugging.hpp │ │ ├── detect.hpp │ │ ├── detect_arch.hpp │ │ ├── detect_compiler.hpp │ │ ├── detect_libc.hpp │ │ ├── detect_libcxx.hpp │ │ ├── detect_os.hpp │ │ ├── detect_quirks.hpp │ │ ├── float.hpp │ │ ├── integer.hpp │ │ ├── macros.hpp │ │ ├── math.hpp │ │ ├── memory.hpp │ │ ├── namespace.hpp │ │ ├── numbers.hpp │ │ ├── numeric.hpp │ │ ├── pointer.hpp │ │ ├── preprocessor.hpp │ │ ├── saturate_cast.hpp │ │ ├── saturate_round.hpp │ │ ├── secure.hpp │ │ ├── semantic_version.hpp │ │ ├── size.hpp │ │ ├── source_location.hpp │ │ ├── span.hpp │ │ ├── tests │ │ │ ├── tests_base_arithmetic_shift.hpp │ │ │ ├── tests_base_bit.hpp │ │ │ ├── tests_base_math.hpp │ │ │ ├── tests_base_numeric.hpp │ │ │ ├── tests_base_saturate_cast.hpp │ │ │ ├── tests_base_saturate_round.hpp │ │ │ └── tests_base_wrapping_divide.hpp │ │ ├── type_traits.hpp │ │ ├── utility.hpp │ │ ├── version.hpp │ │ └── wrapping_divide.hpp │ ├── binary │ │ ├── base64.hpp │ │ ├── base64url.hpp │ │ ├── hex.hpp │ │ └── tests │ │ │ └── tests_binary.hpp │ ├── check │ │ ├── compiler.hpp │ │ ├── libc.hpp │ │ ├── libcxx.hpp │ │ ├── mfc.hpp │ │ └── windows.hpp │ ├── chrono │ │ ├── system_clock.hpp │ │ └── unix_clock.hpp │ ├── crc │ │ ├── crc.hpp │ │ └── tests │ │ │ └── tests_crc.hpp │ ├── crypto │ │ ├── config.hpp │ │ ├── exception.hpp │ │ ├── hash.hpp │ │ ├── jwk.hpp │ │ └── tests │ │ │ └── tests_crypto.hpp │ ├── detect │ │ ├── dl.hpp │ │ ├── ltdl.hpp │ │ ├── mfc.hpp │ │ └── nlohmann_json.hpp │ ├── endian │ │ ├── floatingpoint.hpp │ │ ├── int24.hpp │ │ ├── integer.hpp │ │ ├── tests │ │ │ ├── tests_endian_floatingpoint.hpp │ │ │ ├── tests_endian_int24.hpp │ │ │ └── tests_endian_integer.hpp │ │ └── type_traits.hpp │ ├── environment │ │ └── environment.hpp │ ├── exception │ │ ├── exception.hpp │ │ ├── exception_text.hpp │ │ ├── logic_error.hpp │ │ └── runtime_error.hpp │ ├── filemode │ │ ├── fd.hpp │ │ ├── filemode.hpp │ │ ├── iostream.hpp │ │ ├── stdfile.hpp │ │ └── stdio.hpp │ ├── format │ │ ├── concat.hpp │ │ ├── default_floatingpoint.hpp │ │ ├── default_formatter.hpp │ │ ├── default_integer.hpp │ │ ├── default_string.hpp │ │ ├── helpers.hpp │ │ ├── join.hpp │ │ ├── message.hpp │ │ ├── message_macros.hpp │ │ ├── simple.hpp │ │ ├── simple_floatingpoint.hpp │ │ ├── simple_integer.hpp │ │ ├── simple_spec.hpp │ │ └── tests │ │ │ ├── tests_format_message.hpp │ │ │ └── tests_format_simple.hpp │ ├── fs │ │ ├── common_directories.hpp │ │ └── fs.hpp │ ├── io │ │ ├── base.hpp │ │ ├── io.hpp │ │ ├── io_span.hpp │ │ ├── io_stdstream.hpp │ │ ├── io_virtual_wrapper.hpp │ │ └── tests │ │ │ └── tests_io.hpp │ ├── io_file │ │ ├── fileref.hpp │ │ ├── fstream.hpp │ │ ├── inputfile.hpp │ │ └── outputfile.hpp │ ├── io_file_adapter │ │ └── fileadapter.hpp │ ├── io_file_atomic │ │ └── atomic_file.hpp │ ├── io_file_read │ │ └── inputfile_filecursor.hpp │ ├── io_file_unique │ │ ├── unique_basename.hpp │ │ └── unique_tempfilename.hpp │ ├── io_read │ │ ├── callbackstream.hpp │ │ ├── filecursor.hpp │ │ ├── filecursor_callbackstream.hpp │ │ ├── filecursor_filename_traits.hpp │ │ ├── filecursor_memory.hpp │ │ ├── filecursor_stdstream.hpp │ │ ├── filecursor_traits_filedata.hpp │ │ ├── filecursor_traits_memory.hpp │ │ ├── filedata.hpp │ │ ├── filedata_base.hpp │ │ ├── filedata_base_buffered.hpp │ │ ├── filedata_base_seekable.hpp │ │ ├── filedata_base_unseekable.hpp │ │ ├── filedata_base_unseekable_buffer.hpp │ │ ├── filedata_callbackstream.hpp │ │ ├── filedata_memory.hpp │ │ ├── filedata_stdstream.hpp │ │ └── filereader.hpp │ ├── io_write │ │ └── buffer.hpp │ ├── json │ │ └── json.hpp │ ├── library │ │ └── library.hpp │ ├── main │ │ ├── main.hpp │ │ └── stdio_tokens.hpp │ ├── mutex │ │ └── mutex.hpp │ ├── osinfo │ │ ├── class.hpp │ │ ├── dos_memory.hpp │ │ ├── dos_version.hpp │ │ ├── windows_version.hpp │ │ └── windows_wine_version.hpp │ ├── out_of_memory │ │ └── out_of_memory.hpp │ ├── parse │ │ ├── parse.hpp │ │ ├── split.hpp │ │ └── tests │ │ │ └── tests_parse.hpp │ ├── path │ │ ├── basic_path.hpp │ │ ├── native_path.hpp │ │ ├── os_path.hpp │ │ ├── os_path_long.hpp │ │ └── path.hpp │ ├── random │ │ ├── any_engine.hpp │ │ ├── crand.hpp │ │ ├── default_engines.hpp │ │ ├── device.hpp │ │ ├── engine.hpp │ │ ├── engine_lcg.hpp │ │ ├── random.hpp │ │ ├── seed.hpp │ │ └── tests │ │ │ └── tests_random.hpp │ ├── string │ │ ├── buffer.hpp │ │ ├── tests │ │ │ ├── tests_string_buffer.hpp │ │ │ └── tests_string_utility.hpp │ │ ├── types.hpp │ │ └── utility.hpp │ ├── string_transcode │ │ ├── macros.hpp │ │ ├── tests │ │ │ └── tests_string_transcode.hpp │ │ └── transcode.hpp │ ├── system_error │ │ └── system_error.hpp │ ├── terminal │ │ ├── base.hpp │ │ ├── input.hpp │ │ ├── is_terminal.hpp │ │ ├── output.hpp │ │ ├── size.hpp │ │ ├── stdio_manager.hpp │ │ └── transliterate.hpp │ ├── test │ │ ├── test.hpp │ │ └── test_macros.hpp │ ├── uuid │ │ ├── guid.hpp │ │ ├── tests │ │ │ └── tests_uuid.hpp │ │ └── uuid.hpp │ └── uuid_namespace │ │ ├── tests │ │ └── tests_uuid_namespace.hpp │ │ └── uuid_namespace.hpp └── openmpt │ ├── all │ ├── BuildSettings.hpp │ ├── BuildSettingsCompiler.hpp │ └── PlatformFixes.hpp │ ├── base │ ├── Endian.hpp │ ├── FlagSet.hpp │ ├── Int24.hpp │ └── Types.hpp │ ├── fileformat_base │ └── magic.hpp │ ├── logging │ └── Logger.hpp │ ├── random │ └── ModPlug.hpp │ ├── soundbase │ ├── Copy.hpp │ ├── CopyMix.hpp │ ├── Dither.hpp │ ├── DitherModPlug.hpp │ ├── DitherNone.hpp │ ├── DitherSimple.hpp │ ├── MixSample.hpp │ ├── MixSampleConvert.hpp │ ├── SampleClip.hpp │ ├── SampleClipFixedPoint.hpp │ ├── SampleConvert.hpp │ ├── SampleConvertFixedPoint.hpp │ ├── SampleDecode.hpp │ ├── SampleEncode.hpp │ └── SampleFormat.hpp │ ├── sounddevice │ ├── SoundDevice.cpp │ ├── SoundDevice.hpp │ ├── SoundDeviceASIO.cpp │ ├── SoundDeviceASIO.hpp │ ├── SoundDeviceBase.cpp │ ├── SoundDeviceBase.hpp │ ├── SoundDeviceBuffer.hpp │ ├── SoundDeviceCallback.hpp │ ├── SoundDeviceDirectSound.cpp │ ├── SoundDeviceDirectSound.hpp │ ├── SoundDeviceManager.cpp │ ├── SoundDeviceManager.hpp │ ├── SoundDevicePortAudio.cpp │ ├── SoundDevicePortAudio.hpp │ ├── SoundDevicePulseSimple.cpp │ ├── SoundDevicePulseSimple.hpp │ ├── SoundDevicePulseaudio.cpp │ ├── SoundDevicePulseaudio.hpp │ ├── SoundDeviceRtAudio.cpp │ ├── SoundDeviceRtAudio.hpp │ ├── SoundDeviceUtilities.cpp │ ├── SoundDeviceUtilities.hpp │ ├── SoundDeviceWaveout.cpp │ └── SoundDeviceWaveout.hpp │ ├── soundfile_data │ ├── tags.hpp │ └── wav.hpp │ ├── soundfile_write │ ├── wav_write.cpp │ └── wav_write.hpp │ └── streamencoder │ ├── StreamEncoder.cpp │ ├── StreamEncoder.hpp │ ├── StreamEncoderAU.cpp │ ├── StreamEncoderAU.hpp │ ├── StreamEncoderFLAC.cpp │ ├── StreamEncoderFLAC.hpp │ ├── StreamEncoderMP3.cpp │ ├── StreamEncoderMP3.hpp │ ├── StreamEncoderOpus.cpp │ ├── StreamEncoderOpus.hpp │ ├── StreamEncoderRAW.cpp │ ├── StreamEncoderRAW.hpp │ ├── StreamEncoderVorbis.cpp │ ├── StreamEncoderVorbis.hpp │ ├── StreamEncoderWAV.cpp │ └── StreamEncoderWAV.hpp ├── test ├── TestTools.h ├── TestToolsLib.cpp ├── TestToolsLib.h ├── TestToolsTracker.h ├── mpt_tests_base.cpp ├── mpt_tests_binary.cpp ├── mpt_tests_crc.cpp ├── mpt_tests_crypto.cpp ├── mpt_tests_endian.cpp ├── mpt_tests_format.cpp ├── mpt_tests_io.cpp ├── mpt_tests_parse.cpp ├── mpt_tests_random.cpp ├── mpt_tests_string.cpp ├── mpt_tests_string_transcode.cpp ├── mpt_tests_uuid.cpp ├── mpt_tests_uuid_namespace.cpp ├── test.cpp ├── test.flac ├── test.h ├── test.mod ├── test.mptm ├── test.s3m └── test.xm ├── tracklib ├── FadeLaws.h ├── SampleEdit.cpp ├── SampleEdit.h ├── TimeStretchPitchShift.cpp └── TimeStretchPitchShift.h └── unarchiver ├── archive.h ├── unancient.cpp ├── unancient.h ├── unarchiver.cpp ├── unarchiver.h ├── ungzip.cpp ├── ungzip.h ├── unlha.cpp ├── unlha.h ├── unrar.cpp ├── unrar.h ├── unzip.cpp └── unzip.h /.appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/.appveyor.yml -------------------------------------------------------------------------------- /.cirrus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/.cirrus.yml -------------------------------------------------------------------------------- /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | /include/** linguist-vendored 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/README.md -------------------------------------------------------------------------------- /common/BuildSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/common/BuildSettings.h -------------------------------------------------------------------------------- /common/ComponentManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/common/ComponentManager.h -------------------------------------------------------------------------------- /common/FileReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/common/FileReader.h -------------------------------------------------------------------------------- /common/FileReaderFwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/common/FileReaderFwd.h -------------------------------------------------------------------------------- /common/Logging.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/common/Logging.cpp -------------------------------------------------------------------------------- /common/Logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/common/Logging.h -------------------------------------------------------------------------------- /common/Profiler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/common/Profiler.cpp -------------------------------------------------------------------------------- /common/Profiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/common/Profiler.h -------------------------------------------------------------------------------- /common/misc_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/common/misc_util.h -------------------------------------------------------------------------------- /common/mptAssert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/common/mptAssert.h -------------------------------------------------------------------------------- /common/mptBaseMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/common/mptBaseMacros.h -------------------------------------------------------------------------------- /common/mptBaseTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/common/mptBaseTypes.h -------------------------------------------------------------------------------- /common/mptBaseUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/common/mptBaseUtils.h -------------------------------------------------------------------------------- /common/mptCPU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/common/mptCPU.h -------------------------------------------------------------------------------- /common/mptFileIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/common/mptFileIO.h -------------------------------------------------------------------------------- /common/mptFileTemporary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/common/mptFileTemporary.h -------------------------------------------------------------------------------- /common/mptFileType.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/common/mptFileType.cpp -------------------------------------------------------------------------------- /common/mptFileType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/common/mptFileType.h -------------------------------------------------------------------------------- /common/mptPathString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/common/mptPathString.cpp -------------------------------------------------------------------------------- /common/mptPathString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/common/mptPathString.h -------------------------------------------------------------------------------- /common/mptRandom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/common/mptRandom.cpp -------------------------------------------------------------------------------- /common/mptRandom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/common/mptRandom.h -------------------------------------------------------------------------------- /common/mptString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/common/mptString.h -------------------------------------------------------------------------------- /common/mptStringBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/common/mptStringBuffer.cpp -------------------------------------------------------------------------------- /common/mptStringBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/common/mptStringBuffer.h -------------------------------------------------------------------------------- /common/mptStringFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/common/mptStringFormat.h -------------------------------------------------------------------------------- /common/mptTime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/common/mptTime.cpp -------------------------------------------------------------------------------- /common/mptTime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/common/mptTime.h -------------------------------------------------------------------------------- /common/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/common/stdafx.h -------------------------------------------------------------------------------- /common/version.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/common/version.cpp -------------------------------------------------------------------------------- /common/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/common/version.h -------------------------------------------------------------------------------- /common/versionNumber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/common/versionNumber.h -------------------------------------------------------------------------------- /common/zlib_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/common/zlib_helper.h -------------------------------------------------------------------------------- /contrib/fuzzing/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/contrib/fuzzing/build.sh -------------------------------------------------------------------------------- /contrib/fuzzing/fuzz.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/contrib/fuzzing/fuzz.cpp -------------------------------------------------------------------------------- /contrib/fuzzing/get-afl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/contrib/fuzzing/get-afl.sh -------------------------------------------------------------------------------- /contrib/fuzzing/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/contrib/fuzzing/readme.md -------------------------------------------------------------------------------- /contrib/libmodplug-0.8.8.5/autogen.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | autoreconf -i 3 | -------------------------------------------------------------------------------- /contrib/libmodplug-0.8.9.0/autogen.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | autoreconf -i 3 | -------------------------------------------------------------------------------- /doc/backporting_patches.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/doc/backporting_patches.md -------------------------------------------------------------------------------- /doc/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/doc/contributing.md -------------------------------------------------------------------------------- /doc/libopenmpt/index.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/doc/libopenmpt/index.dox -------------------------------------------------------------------------------- /doc/libopenmpt/tests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/doc/libopenmpt/tests.md -------------------------------------------------------------------------------- /doc/libopenmpt_release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/doc/libopenmpt_release.md -------------------------------------------------------------------------------- /doc/module_formats.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/doc/module_formats.md -------------------------------------------------------------------------------- /doc/openmpt_release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/doc/openmpt_release.md -------------------------------------------------------------------------------- /doc/openmpt_styleguide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/doc/openmpt_styleguide.md -------------------------------------------------------------------------------- /doc/release_branches.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/doc/release_branches.md -------------------------------------------------------------------------------- /doc/signing_releases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/doc/signing_releases.md -------------------------------------------------------------------------------- /doc/string_types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/doc/string_types.md -------------------------------------------------------------------------------- /doc/year_changed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/doc/year_changed.md -------------------------------------------------------------------------------- /examples/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/examples/.clang-format -------------------------------------------------------------------------------- /include/ancient/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/ancient/LICENSE -------------------------------------------------------------------------------- /include/asiomodern/OpenMPT.txt: -------------------------------------------------------------------------------- 1 | ASIO::Modern v0.12.11 2 | -------------------------------------------------------------------------------- /include/cryptopp/3way.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/3way.cpp -------------------------------------------------------------------------------- /include/cryptopp/3way.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/3way.h -------------------------------------------------------------------------------- /include/cryptopp/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/Doxyfile -------------------------------------------------------------------------------- /include/cryptopp/adler32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/adler32.h -------------------------------------------------------------------------------- /include/cryptopp/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/aes.h -------------------------------------------------------------------------------- /include/cryptopp/algebra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/algebra.h -------------------------------------------------------------------------------- /include/cryptopp/arc4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/arc4.cpp -------------------------------------------------------------------------------- /include/cryptopp/arc4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/arc4.h -------------------------------------------------------------------------------- /include/cryptopp/aria.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/aria.cpp -------------------------------------------------------------------------------- /include/cryptopp/aria.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/aria.h -------------------------------------------------------------------------------- /include/cryptopp/asn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/asn.cpp -------------------------------------------------------------------------------- /include/cryptopp/asn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/asn.h -------------------------------------------------------------------------------- /include/cryptopp/authenc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/authenc.h -------------------------------------------------------------------------------- /include/cryptopp/base32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/base32.h -------------------------------------------------------------------------------- /include/cryptopp/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/base64.h -------------------------------------------------------------------------------- /include/cryptopp/bds10.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/bds10.zip -------------------------------------------------------------------------------- /include/cryptopp/bench.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/bench.h -------------------------------------------------------------------------------- /include/cryptopp/blake2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/blake2.h -------------------------------------------------------------------------------- /include/cryptopp/cast.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/cast.cpp -------------------------------------------------------------------------------- /include/cryptopp/cast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/cast.h -------------------------------------------------------------------------------- /include/cryptopp/casts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/casts.cpp -------------------------------------------------------------------------------- /include/cryptopp/cbcmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/cbcmac.h -------------------------------------------------------------------------------- /include/cryptopp/ccm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/ccm.cpp -------------------------------------------------------------------------------- /include/cryptopp/ccm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/ccm.h -------------------------------------------------------------------------------- /include/cryptopp/chacha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/chacha.h -------------------------------------------------------------------------------- /include/cryptopp/cham.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/cham.cpp -------------------------------------------------------------------------------- /include/cryptopp/cham.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/cham.h -------------------------------------------------------------------------------- /include/cryptopp/cmac.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/cmac.cpp -------------------------------------------------------------------------------- /include/cryptopp/cmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/cmac.h -------------------------------------------------------------------------------- /include/cryptopp/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/config.h -------------------------------------------------------------------------------- /include/cryptopp/cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/cpu.cpp -------------------------------------------------------------------------------- /include/cryptopp/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/cpu.h -------------------------------------------------------------------------------- /include/cryptopp/crc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/crc.cpp -------------------------------------------------------------------------------- /include/cryptopp/crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/crc.h -------------------------------------------------------------------------------- /include/cryptopp/darn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/darn.cpp -------------------------------------------------------------------------------- /include/cryptopp/darn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/darn.h -------------------------------------------------------------------------------- /include/cryptopp/default.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/default.h -------------------------------------------------------------------------------- /include/cryptopp/des.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/des.cpp -------------------------------------------------------------------------------- /include/cryptopp/des.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/des.h -------------------------------------------------------------------------------- /include/cryptopp/dessp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/dessp.cpp -------------------------------------------------------------------------------- /include/cryptopp/dh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/dh.cpp -------------------------------------------------------------------------------- /include/cryptopp/dh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/dh.h -------------------------------------------------------------------------------- /include/cryptopp/dh2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/dh2.cpp -------------------------------------------------------------------------------- /include/cryptopp/dh2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/dh2.h -------------------------------------------------------------------------------- /include/cryptopp/dll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/dll.cpp -------------------------------------------------------------------------------- /include/cryptopp/dll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/dll.h -------------------------------------------------------------------------------- /include/cryptopp/dmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/dmac.h -------------------------------------------------------------------------------- /include/cryptopp/donna.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/donna.h -------------------------------------------------------------------------------- /include/cryptopp/drbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/drbg.h -------------------------------------------------------------------------------- /include/cryptopp/dsa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/dsa.cpp -------------------------------------------------------------------------------- /include/cryptopp/dsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/dsa.h -------------------------------------------------------------------------------- /include/cryptopp/eax.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/eax.cpp -------------------------------------------------------------------------------- /include/cryptopp/eax.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/eax.h -------------------------------------------------------------------------------- /include/cryptopp/ec2n.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/ec2n.cpp -------------------------------------------------------------------------------- /include/cryptopp/ec2n.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/ec2n.h -------------------------------------------------------------------------------- /include/cryptopp/ecp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/ecp.cpp -------------------------------------------------------------------------------- /include/cryptopp/ecp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/ecp.h -------------------------------------------------------------------------------- /include/cryptopp/ecpoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/ecpoint.h -------------------------------------------------------------------------------- /include/cryptopp/elgamal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/elgamal.h -------------------------------------------------------------------------------- /include/cryptopp/emsa2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/emsa2.cpp -------------------------------------------------------------------------------- /include/cryptopp/emsa2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/emsa2.h -------------------------------------------------------------------------------- /include/cryptopp/esign.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/esign.cpp -------------------------------------------------------------------------------- /include/cryptopp/esign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/esign.h -------------------------------------------------------------------------------- /include/cryptopp/factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/factory.h -------------------------------------------------------------------------------- /include/cryptopp/fhmqv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/fhmqv.h -------------------------------------------------------------------------------- /include/cryptopp/files.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/files.cpp -------------------------------------------------------------------------------- /include/cryptopp/files.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/files.h -------------------------------------------------------------------------------- /include/cryptopp/filters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/filters.h -------------------------------------------------------------------------------- /include/cryptopp/fips140.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/fips140.h -------------------------------------------------------------------------------- /include/cryptopp/gcm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/gcm.cpp -------------------------------------------------------------------------------- /include/cryptopp/gcm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/gcm.h -------------------------------------------------------------------------------- /include/cryptopp/gf256.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/gf256.cpp -------------------------------------------------------------------------------- /include/cryptopp/gf256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/gf256.h -------------------------------------------------------------------------------- /include/cryptopp/gf2_32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/gf2_32.h -------------------------------------------------------------------------------- /include/cryptopp/gf2n.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/gf2n.cpp -------------------------------------------------------------------------------- /include/cryptopp/gf2n.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/gf2n.h -------------------------------------------------------------------------------- /include/cryptopp/gost.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/gost.cpp -------------------------------------------------------------------------------- /include/cryptopp/gost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/gost.h -------------------------------------------------------------------------------- /include/cryptopp/gzip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/gzip.cpp -------------------------------------------------------------------------------- /include/cryptopp/gzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/gzip.h -------------------------------------------------------------------------------- /include/cryptopp/hashfwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/hashfwd.h -------------------------------------------------------------------------------- /include/cryptopp/hc128.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/hc128.cpp -------------------------------------------------------------------------------- /include/cryptopp/hc128.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/hc128.h -------------------------------------------------------------------------------- /include/cryptopp/hc256.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/hc256.cpp -------------------------------------------------------------------------------- /include/cryptopp/hc256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/hc256.h -------------------------------------------------------------------------------- /include/cryptopp/hex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/hex.cpp -------------------------------------------------------------------------------- /include/cryptopp/hex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/hex.h -------------------------------------------------------------------------------- /include/cryptopp/hight.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/hight.cpp -------------------------------------------------------------------------------- /include/cryptopp/hight.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/hight.h -------------------------------------------------------------------------------- /include/cryptopp/hkdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/hkdf.h -------------------------------------------------------------------------------- /include/cryptopp/hmac.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/hmac.cpp -------------------------------------------------------------------------------- /include/cryptopp/hmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/hmac.h -------------------------------------------------------------------------------- /include/cryptopp/hmqv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/hmqv.h -------------------------------------------------------------------------------- /include/cryptopp/hrtimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/hrtimer.h -------------------------------------------------------------------------------- /include/cryptopp/ida.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/ida.cpp -------------------------------------------------------------------------------- /include/cryptopp/ida.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/ida.h -------------------------------------------------------------------------------- /include/cryptopp/idea.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/idea.cpp -------------------------------------------------------------------------------- /include/cryptopp/idea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/idea.h -------------------------------------------------------------------------------- /include/cryptopp/integer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/integer.h -------------------------------------------------------------------------------- /include/cryptopp/kalyna.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/kalyna.h -------------------------------------------------------------------------------- /include/cryptopp/keccak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/keccak.h -------------------------------------------------------------------------------- /include/cryptopp/lea.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/lea.cpp -------------------------------------------------------------------------------- /include/cryptopp/lea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/lea.h -------------------------------------------------------------------------------- /include/cryptopp/lsh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/lsh.h -------------------------------------------------------------------------------- /include/cryptopp/luc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/luc.cpp -------------------------------------------------------------------------------- /include/cryptopp/luc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/luc.h -------------------------------------------------------------------------------- /include/cryptopp/mars.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/mars.cpp -------------------------------------------------------------------------------- /include/cryptopp/mars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/mars.h -------------------------------------------------------------------------------- /include/cryptopp/marss.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/marss.cpp -------------------------------------------------------------------------------- /include/cryptopp/md2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/md2.cpp -------------------------------------------------------------------------------- /include/cryptopp/md2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/md2.h -------------------------------------------------------------------------------- /include/cryptopp/md4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/md4.cpp -------------------------------------------------------------------------------- /include/cryptopp/md4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/md4.h -------------------------------------------------------------------------------- /include/cryptopp/md5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/md5.cpp -------------------------------------------------------------------------------- /include/cryptopp/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/md5.h -------------------------------------------------------------------------------- /include/cryptopp/mdc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/mdc.h -------------------------------------------------------------------------------- /include/cryptopp/misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/misc.cpp -------------------------------------------------------------------------------- /include/cryptopp/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/misc.h -------------------------------------------------------------------------------- /include/cryptopp/modes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/modes.cpp -------------------------------------------------------------------------------- /include/cryptopp/modes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/modes.h -------------------------------------------------------------------------------- /include/cryptopp/mqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/mqueue.h -------------------------------------------------------------------------------- /include/cryptopp/mqv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/mqv.cpp -------------------------------------------------------------------------------- /include/cryptopp/mqv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/mqv.h -------------------------------------------------------------------------------- /include/cryptopp/naclite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/naclite.h -------------------------------------------------------------------------------- /include/cryptopp/nr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/nr.h -------------------------------------------------------------------------------- /include/cryptopp/oaep.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/oaep.cpp -------------------------------------------------------------------------------- /include/cryptopp/oaep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/oaep.h -------------------------------------------------------------------------------- /include/cryptopp/oids.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/oids.h -------------------------------------------------------------------------------- /include/cryptopp/osrng.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/osrng.cpp -------------------------------------------------------------------------------- /include/cryptopp/osrng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/osrng.h -------------------------------------------------------------------------------- /include/cryptopp/ossig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/ossig.h -------------------------------------------------------------------------------- /include/cryptopp/panama.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/panama.h -------------------------------------------------------------------------------- /include/cryptopp/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /include/cryptopp/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/pch.h -------------------------------------------------------------------------------- /include/cryptopp/pkcspad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/pkcspad.h -------------------------------------------------------------------------------- /include/cryptopp/pssr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/pssr.cpp -------------------------------------------------------------------------------- /include/cryptopp/pssr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/pssr.h -------------------------------------------------------------------------------- /include/cryptopp/pubkey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/pubkey.h -------------------------------------------------------------------------------- /include/cryptopp/queue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/queue.cpp -------------------------------------------------------------------------------- /include/cryptopp/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/queue.h -------------------------------------------------------------------------------- /include/cryptopp/rabbit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/rabbit.h -------------------------------------------------------------------------------- /include/cryptopp/rabin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/rabin.cpp -------------------------------------------------------------------------------- /include/cryptopp/rabin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/rabin.h -------------------------------------------------------------------------------- /include/cryptopp/rc2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/rc2.cpp -------------------------------------------------------------------------------- /include/cryptopp/rc2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/rc2.h -------------------------------------------------------------------------------- /include/cryptopp/rc5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/rc5.cpp -------------------------------------------------------------------------------- /include/cryptopp/rc5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/rc5.h -------------------------------------------------------------------------------- /include/cryptopp/rc6.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/rc6.cpp -------------------------------------------------------------------------------- /include/cryptopp/rc6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/rc6.h -------------------------------------------------------------------------------- /include/cryptopp/rdrand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/rdrand.h -------------------------------------------------------------------------------- /include/cryptopp/ripemd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/ripemd.h -------------------------------------------------------------------------------- /include/cryptopp/rng.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/rng.cpp -------------------------------------------------------------------------------- /include/cryptopp/rng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/rng.h -------------------------------------------------------------------------------- /include/cryptopp/rsa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/rsa.cpp -------------------------------------------------------------------------------- /include/cryptopp/rsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/rsa.h -------------------------------------------------------------------------------- /include/cryptopp/rw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/rw.cpp -------------------------------------------------------------------------------- /include/cryptopp/rw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/rw.h -------------------------------------------------------------------------------- /include/cryptopp/safer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/safer.cpp -------------------------------------------------------------------------------- /include/cryptopp/safer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/safer.h -------------------------------------------------------------------------------- /include/cryptopp/salsa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/salsa.cpp -------------------------------------------------------------------------------- /include/cryptopp/salsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/salsa.h -------------------------------------------------------------------------------- /include/cryptopp/scrypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/scrypt.h -------------------------------------------------------------------------------- /include/cryptopp/seal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/seal.cpp -------------------------------------------------------------------------------- /include/cryptopp/seal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/seal.h -------------------------------------------------------------------------------- /include/cryptopp/seckey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/seckey.h -------------------------------------------------------------------------------- /include/cryptopp/seed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/seed.cpp -------------------------------------------------------------------------------- /include/cryptopp/seed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/seed.h -------------------------------------------------------------------------------- /include/cryptopp/serpent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/serpent.h -------------------------------------------------------------------------------- /include/cryptopp/sha.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/sha.cpp -------------------------------------------------------------------------------- /include/cryptopp/sha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/sha.h -------------------------------------------------------------------------------- /include/cryptopp/sha3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/sha3.cpp -------------------------------------------------------------------------------- /include/cryptopp/sha3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/sha3.h -------------------------------------------------------------------------------- /include/cryptopp/shacal2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/shacal2.h -------------------------------------------------------------------------------- /include/cryptopp/shake.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/shake.cpp -------------------------------------------------------------------------------- /include/cryptopp/shake.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/shake.h -------------------------------------------------------------------------------- /include/cryptopp/shark.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/shark.cpp -------------------------------------------------------------------------------- /include/cryptopp/shark.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/shark.h -------------------------------------------------------------------------------- /include/cryptopp/simeck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/simeck.h -------------------------------------------------------------------------------- /include/cryptopp/simon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/simon.cpp -------------------------------------------------------------------------------- /include/cryptopp/simon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/simon.h -------------------------------------------------------------------------------- /include/cryptopp/simple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/simple.h -------------------------------------------------------------------------------- /include/cryptopp/siphash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/siphash.h -------------------------------------------------------------------------------- /include/cryptopp/sm3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/sm3.cpp -------------------------------------------------------------------------------- /include/cryptopp/sm3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/sm3.h -------------------------------------------------------------------------------- /include/cryptopp/sm4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/sm4.cpp -------------------------------------------------------------------------------- /include/cryptopp/sm4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/sm4.h -------------------------------------------------------------------------------- /include/cryptopp/speck.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/speck.cpp -------------------------------------------------------------------------------- /include/cryptopp/speck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/speck.h -------------------------------------------------------------------------------- /include/cryptopp/square.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/square.h -------------------------------------------------------------------------------- /include/cryptopp/stdcpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/stdcpp.h -------------------------------------------------------------------------------- /include/cryptopp/tea.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/tea.cpp -------------------------------------------------------------------------------- /include/cryptopp/tea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/tea.h -------------------------------------------------------------------------------- /include/cryptopp/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/test.cpp -------------------------------------------------------------------------------- /include/cryptopp/tiger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/tiger.cpp -------------------------------------------------------------------------------- /include/cryptopp/tiger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/tiger.h -------------------------------------------------------------------------------- /include/cryptopp/trap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/trap.h -------------------------------------------------------------------------------- /include/cryptopp/ttmac.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/ttmac.cpp -------------------------------------------------------------------------------- /include/cryptopp/ttmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/ttmac.h -------------------------------------------------------------------------------- /include/cryptopp/twofish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/twofish.h -------------------------------------------------------------------------------- /include/cryptopp/vmac.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/vmac.cpp -------------------------------------------------------------------------------- /include/cryptopp/vmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/vmac.h -------------------------------------------------------------------------------- /include/cryptopp/wake.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/wake.cpp -------------------------------------------------------------------------------- /include/cryptopp/wake.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/wake.h -------------------------------------------------------------------------------- /include/cryptopp/words.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/words.h -------------------------------------------------------------------------------- /include/cryptopp/xtr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/xtr.cpp -------------------------------------------------------------------------------- /include/cryptopp/xtr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/xtr.h -------------------------------------------------------------------------------- /include/cryptopp/xts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/xts.cpp -------------------------------------------------------------------------------- /include/cryptopp/xts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/xts.h -------------------------------------------------------------------------------- /include/cryptopp/zlib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/zlib.cpp -------------------------------------------------------------------------------- /include/cryptopp/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/cryptopp/zlib.h -------------------------------------------------------------------------------- /include/flac/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/flac/AUTHORS -------------------------------------------------------------------------------- /include/flac/COPYING.Xiph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/flac/COPYING.Xiph -------------------------------------------------------------------------------- /include/flac/OpenMPT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/flac/OpenMPT.txt -------------------------------------------------------------------------------- /include/lame/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/lame/COPYING -------------------------------------------------------------------------------- /include/lame/OpenMPT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/lame/OpenMPT.txt -------------------------------------------------------------------------------- /include/lame/configMS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/lame/configMS.h -------------------------------------------------------------------------------- /include/lhasa/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/lhasa/.gitignore -------------------------------------------------------------------------------- /include/lhasa/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/lhasa/.travis.yml -------------------------------------------------------------------------------- /include/lhasa/AUTHORS: -------------------------------------------------------------------------------- 1 | Simon Howard 2 | -------------------------------------------------------------------------------- /include/lhasa/COPYING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/lhasa/COPYING.md -------------------------------------------------------------------------------- /include/lhasa/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/lhasa/Makefile.am -------------------------------------------------------------------------------- /include/lhasa/NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/lhasa/NEWS.md -------------------------------------------------------------------------------- /include/lhasa/OpenMPT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/lhasa/OpenMPT.txt -------------------------------------------------------------------------------- /include/lhasa/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/lhasa/README.md -------------------------------------------------------------------------------- /include/lhasa/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/lhasa/SECURITY.md -------------------------------------------------------------------------------- /include/lhasa/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/lhasa/TODO -------------------------------------------------------------------------------- /include/lhasa/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/lhasa/autogen.sh -------------------------------------------------------------------------------- /include/lhasa/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/lhasa/configure.ac -------------------------------------------------------------------------------- /include/lhasa/doc/.gitignore: -------------------------------------------------------------------------------- 1 | html 2 | -------------------------------------------------------------------------------- /include/lhasa/doc/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/lhasa/doc/Doxyfile -------------------------------------------------------------------------------- /include/lhasa/doc/intro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/lhasa/doc/intro.h -------------------------------------------------------------------------------- /include/lhasa/doc/lha.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/lhasa/doc/lha.1 -------------------------------------------------------------------------------- /include/lhasa/gencov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/lhasa/gencov -------------------------------------------------------------------------------- /include/lhasa/lib/crc16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/lhasa/lib/crc16.c -------------------------------------------------------------------------------- /include/lhasa/lib/crc16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/lhasa/lib/crc16.h -------------------------------------------------------------------------------- /include/lhasa/pkg/.gitignore: -------------------------------------------------------------------------------- 1 | config.make 2 | -------------------------------------------------------------------------------- /include/lhasa/pkg/win32/.gitignore: -------------------------------------------------------------------------------- 1 | *.zip 2 | staging 3 | -------------------------------------------------------------------------------- /include/lhasa/rpm.spec.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/lhasa/rpm.spec.in -------------------------------------------------------------------------------- /include/lhasa/src/args.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/lhasa/src/args.txt -------------------------------------------------------------------------------- /include/lhasa/src/filter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/lhasa/src/filter.c -------------------------------------------------------------------------------- /include/lhasa/src/filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/lhasa/src/filter.h -------------------------------------------------------------------------------- /include/lhasa/src/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/lhasa/src/list.c -------------------------------------------------------------------------------- /include/lhasa/src/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/lhasa/src/list.h -------------------------------------------------------------------------------- /include/lhasa/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/lhasa/src/main.c -------------------------------------------------------------------------------- /include/lhasa/src/safe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/lhasa/src/safe.c -------------------------------------------------------------------------------- /include/lhasa/src/safe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/lhasa/src/safe.h -------------------------------------------------------------------------------- /include/minimp3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/minimp3/LICENSE -------------------------------------------------------------------------------- /include/minimp3/minimp3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/minimp3/minimp3.c -------------------------------------------------------------------------------- /include/minimp3/minimp3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/minimp3/minimp3.h -------------------------------------------------------------------------------- /include/miniz/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/miniz/LICENSE -------------------------------------------------------------------------------- /include/miniz/OpenMPT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/miniz/OpenMPT.txt -------------------------------------------------------------------------------- /include/miniz/miniz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/miniz/miniz.c -------------------------------------------------------------------------------- /include/miniz/miniz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/miniz/miniz.h -------------------------------------------------------------------------------- /include/mpg123/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/mpg123/AUTHORS -------------------------------------------------------------------------------- /include/mpg123/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/mpg123/COPYING -------------------------------------------------------------------------------- /include/mpg123/OpenMPT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/mpg123/OpenMPT.txt -------------------------------------------------------------------------------- /include/ogg/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/ogg/AUTHORS -------------------------------------------------------------------------------- /include/ogg/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/ogg/CHANGES -------------------------------------------------------------------------------- /include/ogg/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/ogg/COPYING -------------------------------------------------------------------------------- /include/ogg/OpenMPT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/ogg/OpenMPT.txt -------------------------------------------------------------------------------- /include/ogg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/ogg/README.md -------------------------------------------------------------------------------- /include/ogg/src/bitwise.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/ogg/src/bitwise.c -------------------------------------------------------------------------------- /include/ogg/src/crctable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/ogg/src/crctable.h -------------------------------------------------------------------------------- /include/ogg/src/framing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/ogg/src/framing.c -------------------------------------------------------------------------------- /include/ogg/win32/ogg.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/ogg/win32/ogg.def -------------------------------------------------------------------------------- /include/opus/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/opus/AUTHORS -------------------------------------------------------------------------------- /include/opus/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/opus/COPYING -------------------------------------------------------------------------------- /include/opus/OpenMPT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/opus/OpenMPT.txt -------------------------------------------------------------------------------- /include/opus/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/opus/README -------------------------------------------------------------------------------- /include/opus/celt/arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/opus/celt/arch.h -------------------------------------------------------------------------------- /include/opus/celt/bands.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/opus/celt/bands.c -------------------------------------------------------------------------------- /include/opus/celt/bands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/opus/celt/bands.h -------------------------------------------------------------------------------- /include/opus/celt/celt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/opus/celt/celt.c -------------------------------------------------------------------------------- /include/opus/celt/celt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/opus/celt/celt.h -------------------------------------------------------------------------------- /include/opus/celt/cwrs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/opus/celt/cwrs.c -------------------------------------------------------------------------------- /include/opus/celt/cwrs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/opus/celt/cwrs.h -------------------------------------------------------------------------------- /include/opus/celt/entdec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/opus/celt/entdec.c -------------------------------------------------------------------------------- /include/opus/celt/entdec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/opus/celt/entdec.h -------------------------------------------------------------------------------- /include/opus/celt/entenc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/opus/celt/entenc.c -------------------------------------------------------------------------------- /include/opus/celt/entenc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/opus/celt/entenc.h -------------------------------------------------------------------------------- /include/opus/celt/mdct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/opus/celt/mdct.c -------------------------------------------------------------------------------- /include/opus/celt/mdct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/opus/celt/mdct.h -------------------------------------------------------------------------------- /include/opus/celt/modes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/opus/celt/modes.c -------------------------------------------------------------------------------- /include/opus/celt/modes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/opus/celt/modes.h -------------------------------------------------------------------------------- /include/opus/celt/pitch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/opus/celt/pitch.c -------------------------------------------------------------------------------- /include/opus/celt/pitch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/opus/celt/pitch.h -------------------------------------------------------------------------------- /include/opus/celt/rate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/opus/celt/rate.c -------------------------------------------------------------------------------- /include/opus/celt/rate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/opus/celt/rate.h -------------------------------------------------------------------------------- /include/opus/celt/vq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/opus/celt/vq.c -------------------------------------------------------------------------------- /include/opus/celt/vq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/opus/celt/vq.h -------------------------------------------------------------------------------- /include/opus/dnn/burg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/opus/dnn/burg.c -------------------------------------------------------------------------------- /include/opus/dnn/burg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/opus/dnn/burg.h -------------------------------------------------------------------------------- /include/opus/dnn/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/opus/dnn/common.h -------------------------------------------------------------------------------- /include/opus/dnn/fargan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/opus/dnn/fargan.c -------------------------------------------------------------------------------- /include/opus/dnn/fargan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/opus/dnn/fargan.h -------------------------------------------------------------------------------- /include/opus/dnn/freq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/opus/dnn/freq.c -------------------------------------------------------------------------------- /include/opus/dnn/freq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/opus/dnn/freq.h -------------------------------------------------------------------------------- /include/opus/dnn/lossgen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/opus/dnn/lossgen.c -------------------------------------------------------------------------------- /include/opus/dnn/lossgen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/opus/dnn/lossgen.h -------------------------------------------------------------------------------- /include/opus/dnn/lpcnet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/opus/dnn/lpcnet.h -------------------------------------------------------------------------------- /include/opus/dnn/nndsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/opus/dnn/nndsp.c -------------------------------------------------------------------------------- /include/opus/dnn/nndsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/opus/dnn/nndsp.h -------------------------------------------------------------------------------- /include/opus/dnn/nnet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/opus/dnn/nnet.c -------------------------------------------------------------------------------- /include/opus/dnn/nnet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/opus/dnn/nnet.h -------------------------------------------------------------------------------- /include/opus/dnn/osce.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/opus/dnn/osce.c -------------------------------------------------------------------------------- /include/opus/dnn/osce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/opus/dnn/osce.h -------------------------------------------------------------------------------- /include/opus/dnn/vec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/opus/dnn/vec.h -------------------------------------------------------------------------------- /include/opus/dnn/vec_avx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/opus/dnn/vec_avx.h -------------------------------------------------------------------------------- /include/opus/package_version: -------------------------------------------------------------------------------- 1 | PACKAGE_VERSION="1.5.2" 2 | -------------------------------------------------------------------------------- /include/opus/silk/A2NLSF.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/opus/silk/A2NLSF.c -------------------------------------------------------------------------------- /include/opus/silk/API.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/opus/silk/API.h -------------------------------------------------------------------------------- /include/opus/silk/CNG.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/opus/silk/CNG.c -------------------------------------------------------------------------------- /include/opus/silk/NLSF2A.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/opus/silk/NLSF2A.c -------------------------------------------------------------------------------- /include/opus/silk/NSQ.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/opus/silk/NSQ.c -------------------------------------------------------------------------------- /include/opus/silk/NSQ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/opus/silk/NSQ.h -------------------------------------------------------------------------------- /include/opus/silk/PLC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/opus/silk/PLC.c -------------------------------------------------------------------------------- /include/opus/silk/PLC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/opus/silk/PLC.h -------------------------------------------------------------------------------- /include/opus/silk/VAD.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/opus/silk/VAD.c -------------------------------------------------------------------------------- /include/opus/silk/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/opus/silk/debug.c -------------------------------------------------------------------------------- /include/opus/silk/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/opus/silk/debug.h -------------------------------------------------------------------------------- /include/opus/silk/define.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/opus/silk/define.h -------------------------------------------------------------------------------- /include/opus/silk/errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/opus/silk/errors.h -------------------------------------------------------------------------------- /include/opus/silk/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/opus/silk/macros.h -------------------------------------------------------------------------------- /include/opus/silk/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/opus/silk/main.h -------------------------------------------------------------------------------- /include/opus/silk/sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/opus/silk/sort.c -------------------------------------------------------------------------------- /include/opus/silk/tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/opus/silk/tables.h -------------------------------------------------------------------------------- /include/opus/src/mlp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/opus/src/mlp.c -------------------------------------------------------------------------------- /include/opus/src/mlp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/opus/src/mlp.h -------------------------------------------------------------------------------- /include/opus/src/opus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/opus/src/opus.c -------------------------------------------------------------------------------- /include/opusenc/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/opusenc/AUTHORS -------------------------------------------------------------------------------- /include/opusenc/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/opusenc/COPYING -------------------------------------------------------------------------------- /include/opusenc/package_version: -------------------------------------------------------------------------------- 1 | PACKAGE_VERSION="0.2.1" 2 | -------------------------------------------------------------------------------- /include/opusenc/src/arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/opusenc/src/arch.h -------------------------------------------------------------------------------- /include/opusenc/win32/version.h: -------------------------------------------------------------------------------- 1 | #define PACKAGE_VERSION "0.2.1" /* OpenMPT */ 2 | -------------------------------------------------------------------------------- /include/opusfile/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/opusfile/AUTHORS -------------------------------------------------------------------------------- /include/opusfile/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/opusfile/COPYING -------------------------------------------------------------------------------- /include/opusfile/package_version: -------------------------------------------------------------------------------- 1 | PACKAGE_VERSION="0.12" 2 | -------------------------------------------------------------------------------- /include/portaudio/bindings/cpp/AUTHORS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /include/portaudio/bindings/cpp/NEWS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /include/portaudio/bindings/cpp/README: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /include/premake/.gitattributes: -------------------------------------------------------------------------------- 1 | Bootstrap.bat text eol=crlf 2 | git-tags.txt export-subst 3 | -------------------------------------------------------------------------------- /include/premake/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/premake/.gitignore -------------------------------------------------------------------------------- /include/premake/BUILD.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/premake/BUILD.txt -------------------------------------------------------------------------------- /include/premake/FUNDING.yml: -------------------------------------------------------------------------------- 1 | open_collective: premake 2 | -------------------------------------------------------------------------------- /include/premake/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/premake/README.md -------------------------------------------------------------------------------- /include/premake/contrib/mbedtls/3rdparty/.gitignore: -------------------------------------------------------------------------------- 1 | /Makefile 2 | -------------------------------------------------------------------------------- /include/premake/contrib/mbedtls/3rdparty/everest/.gitignore: -------------------------------------------------------------------------------- 1 | Makefile 2 | -------------------------------------------------------------------------------- /include/premake/contrib/mbedtls/3rdparty/p256-m/.gitignore: -------------------------------------------------------------------------------- 1 | Makefile 2 | -------------------------------------------------------------------------------- /include/premake/contrib/mbedtls/docs/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | *.pdf 3 | _build/ 4 | api/ 5 | -------------------------------------------------------------------------------- /include/premake/contrib/mbedtls/pkgconfig/.gitignore: -------------------------------------------------------------------------------- 1 | Makefile 2 | *.pc 3 | -------------------------------------------------------------------------------- /include/premake/contrib/mbedtls/programs/fuzz/fuzz_client.options: -------------------------------------------------------------------------------- 1 | [libfuzzer] 2 | max_len = 1048575 3 | -------------------------------------------------------------------------------- /include/premake/contrib/mbedtls/programs/fuzz/fuzz_pkcs7.options: -------------------------------------------------------------------------------- 1 | [libfuzzer] 2 | max_len = 65535 3 | -------------------------------------------------------------------------------- /include/premake/contrib/mbedtls/programs/fuzz/fuzz_privkey.options: -------------------------------------------------------------------------------- 1 | [libfuzzer] 2 | max_len = 65535 3 | -------------------------------------------------------------------------------- /include/premake/contrib/mbedtls/programs/fuzz/fuzz_pubkey.options: -------------------------------------------------------------------------------- 1 | [libfuzzer] 2 | max_len = 65535 3 | -------------------------------------------------------------------------------- /include/premake/contrib/mbedtls/programs/fuzz/fuzz_server.options: -------------------------------------------------------------------------------- 1 | [libfuzzer] 2 | max_len = 1048575 3 | -------------------------------------------------------------------------------- /include/premake/contrib/mbedtls/programs/fuzz/fuzz_x509crl.options: -------------------------------------------------------------------------------- 1 | [libfuzzer] 2 | max_len = 65535 3 | -------------------------------------------------------------------------------- /include/premake/contrib/mbedtls/programs/fuzz/fuzz_x509crt.options: -------------------------------------------------------------------------------- 1 | [libfuzzer] 2 | max_len = 65535 3 | -------------------------------------------------------------------------------- /include/premake/contrib/mbedtls/programs/fuzz/fuzz_x509csr.options: -------------------------------------------------------------------------------- 1 | [libfuzzer] 2 | max_len = 65535 3 | -------------------------------------------------------------------------------- /include/premake/contrib/mbedtls/scripts/project_name.txt: -------------------------------------------------------------------------------- 1 | Mbed TLS 2 | -------------------------------------------------------------------------------- /include/premake/contrib/mbedtls/tests/.jenkins/Jenkinsfile: -------------------------------------------------------------------------------- 1 | mbedtls.run_job() 2 | -------------------------------------------------------------------------------- /include/premake/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/premake/doxyfile -------------------------------------------------------------------------------- /include/premake/git-tags.txt: -------------------------------------------------------------------------------- 1 | %(describe:tags=true) -------------------------------------------------------------------------------- /include/premake/packages/debian/compat: -------------------------------------------------------------------------------- 1 | 13 2 | -------------------------------------------------------------------------------- /include/premake/packages/debian/dirs: -------------------------------------------------------------------------------- 1 | usr/bin 2 | -------------------------------------------------------------------------------- /include/premake/tests/folder/init.lua: -------------------------------------------------------------------------------- 1 | -- empty file used by loadfile_with_require test -------------------------------------------------------------------------------- /include/premake/tests/folder/ok.lua: -------------------------------------------------------------------------------- 1 | return "ok" 2 | -------------------------------------------------------------------------------- /include/premake/tests/folder/premake5.lua: -------------------------------------------------------------------------------- 1 | premake.out("ok") 2 | -------------------------------------------------------------------------------- /include/premake/tests/folder/subfolder/hello.txt: -------------------------------------------------------------------------------- 1 | Hi there! 2 | -------------------------------------------------------------------------------- /include/premake/tests/folder/subfolder/include/test.h: -------------------------------------------------------------------------------- 1 | // Only used for presence in tests 2 | -------------------------------------------------------------------------------- /include/premake/tests/folder/subfolder/lib/test.dll: -------------------------------------------------------------------------------- 1 | Only used for presence in tests 2 | -------------------------------------------------------------------------------- /include/premake/tests/folder/subfolder/lib/test.dylib: -------------------------------------------------------------------------------- 1 | Only used for presence in tests 2 | -------------------------------------------------------------------------------- /include/premake/tests/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/premake/tests/test -------------------------------------------------------------------------------- /include/premake/tests/test_lua_loaded.lua: -------------------------------------------------------------------------------- 1 | foobar(10) 2 | -------------------------------------------------------------------------------- /include/premake/tests/test_lua_loaded_noenv.lua: -------------------------------------------------------------------------------- 1 | return 10 2 | -------------------------------------------------------------------------------- /include/premake/website/static/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /include/pugixml/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/pugixml/LICENSE.md -------------------------------------------------------------------------------- /include/pugixml/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/pugixml/readme.txt -------------------------------------------------------------------------------- /include/r8brain/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/r8brain/LICENSE -------------------------------------------------------------------------------- /include/r8brain/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/r8brain/README.md -------------------------------------------------------------------------------- /include/r8brain/fft4g.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/r8brain/fft4g.h -------------------------------------------------------------------------------- /include/r8brain/r8bbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/r8brain/r8bbase.h -------------------------------------------------------------------------------- /include/r8brain/r8bconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/r8brain/r8bconf.h -------------------------------------------------------------------------------- /include/r8brain/r8butil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/r8brain/r8butil.h -------------------------------------------------------------------------------- /include/rtaudio/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/rtaudio/LICENSE -------------------------------------------------------------------------------- /include/rtaudio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/rtaudio/README.md -------------------------------------------------------------------------------- /include/rtaudio/RtAudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/rtaudio/RtAudio.h -------------------------------------------------------------------------------- /include/rtkit/OpenMPT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/rtkit/OpenMPT.txt -------------------------------------------------------------------------------- /include/rtkit/rtkit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/rtkit/rtkit.c -------------------------------------------------------------------------------- /include/rtkit/rtkit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/rtkit/rtkit.h -------------------------------------------------------------------------------- /include/rtmidi/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/rtmidi/LICENSE -------------------------------------------------------------------------------- /include/rtmidi/OpenMPT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/rtmidi/OpenMPT.txt -------------------------------------------------------------------------------- /include/rtmidi/RtMidi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/rtmidi/RtMidi.cpp -------------------------------------------------------------------------------- /include/rtmidi/RtMidi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/rtmidi/RtMidi.h -------------------------------------------------------------------------------- /include/unrar/OpenMPT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/unrar/OpenMPT.txt -------------------------------------------------------------------------------- /include/unrar/acknow.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/unrar/acknow.txt -------------------------------------------------------------------------------- /include/unrar/arccmt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/unrar/arccmt.cpp -------------------------------------------------------------------------------- /include/unrar/archive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/unrar/archive.cpp -------------------------------------------------------------------------------- /include/unrar/archive.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/unrar/archive.hpp -------------------------------------------------------------------------------- /include/unrar/arcread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/unrar/arcread.cpp -------------------------------------------------------------------------------- /include/unrar/array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/unrar/array.hpp -------------------------------------------------------------------------------- /include/unrar/blake2s.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/unrar/blake2s.cpp -------------------------------------------------------------------------------- /include/unrar/blake2s.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/unrar/blake2s.hpp -------------------------------------------------------------------------------- /include/unrar/blake2sp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/unrar/blake2sp.cpp -------------------------------------------------------------------------------- /include/unrar/cmddata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/unrar/cmddata.cpp -------------------------------------------------------------------------------- /include/unrar/cmddata.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/unrar/cmddata.hpp -------------------------------------------------------------------------------- /include/unrar/cmdmix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/unrar/cmdmix.cpp -------------------------------------------------------------------------------- /include/unrar/coder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/unrar/coder.cpp -------------------------------------------------------------------------------- /include/unrar/coder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/unrar/coder.hpp -------------------------------------------------------------------------------- /include/unrar/compress.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/unrar/compress.hpp -------------------------------------------------------------------------------- /include/unrar/consio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/unrar/consio.cpp -------------------------------------------------------------------------------- /include/unrar/consio.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/unrar/consio.hpp -------------------------------------------------------------------------------- /include/unrar/crc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/unrar/crc.cpp -------------------------------------------------------------------------------- /include/unrar/crc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/unrar/crc.hpp -------------------------------------------------------------------------------- /include/unrar/crypt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/unrar/crypt.cpp -------------------------------------------------------------------------------- /include/unrar/crypt.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/unrar/crypt.hpp -------------------------------------------------------------------------------- /include/unrar/crypt1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/unrar/crypt1.cpp -------------------------------------------------------------------------------- /include/unrar/crypt2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/unrar/crypt2.cpp -------------------------------------------------------------------------------- /include/unrar/crypt3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/unrar/crypt3.cpp -------------------------------------------------------------------------------- /include/unrar/crypt5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/unrar/crypt5.cpp -------------------------------------------------------------------------------- /include/unrar/dll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/unrar/dll.cpp -------------------------------------------------------------------------------- /include/unrar/dll.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/unrar/dll.hpp -------------------------------------------------------------------------------- /include/unrar/encname.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/unrar/encname.cpp -------------------------------------------------------------------------------- /include/unrar/encname.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/unrar/encname.hpp -------------------------------------------------------------------------------- /include/unrar/errhnd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/unrar/errhnd.cpp -------------------------------------------------------------------------------- /include/unrar/errhnd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/unrar/errhnd.hpp -------------------------------------------------------------------------------- /include/unrar/extinfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/unrar/extinfo.cpp -------------------------------------------------------------------------------- /include/unrar/extinfo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/unrar/extinfo.hpp -------------------------------------------------------------------------------- /include/unrar/extract.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/unrar/extract.cpp -------------------------------------------------------------------------------- /include/unrar/extract.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/unrar/extract.hpp -------------------------------------------------------------------------------- /include/unrar/filcreat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/unrar/filcreat.cpp -------------------------------------------------------------------------------- /include/unrar/filcreat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/unrar/filcreat.hpp -------------------------------------------------------------------------------- /include/unrar/file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/unrar/file.cpp -------------------------------------------------------------------------------- /include/unrar/file.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/unrar/file.hpp -------------------------------------------------------------------------------- /include/unrar/filefn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/unrar/filefn.cpp -------------------------------------------------------------------------------- /include/unrar/filefn.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/unrar/filefn.hpp -------------------------------------------------------------------------------- /include/unrar/filestr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/unrar/filestr.cpp -------------------------------------------------------------------------------- /include/unrar/filestr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/unrar/filestr.hpp -------------------------------------------------------------------------------- /include/unrar/find.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/unrar/find.cpp -------------------------------------------------------------------------------- /include/unrar/find.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/unrar/find.hpp -------------------------------------------------------------------------------- /include/unrar/getbits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/unrar/getbits.cpp -------------------------------------------------------------------------------- /include/unrar/getbits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/unrar/getbits.hpp -------------------------------------------------------------------------------- /include/unrar/global.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/unrar/global.cpp -------------------------------------------------------------------------------- /include/unrar/global.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/unrar/global.hpp -------------------------------------------------------------------------------- /include/unrar/hash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/unrar/hash.cpp -------------------------------------------------------------------------------- /include/unrar/hash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/unrar/hash.hpp -------------------------------------------------------------------------------- /include/unrar/headers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/unrar/headers.cpp -------------------------------------------------------------------------------- /include/unrar/headers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/unrar/headers.hpp -------------------------------------------------------------------------------- /include/unrar/headers5.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/unrar/headers5.hpp -------------------------------------------------------------------------------- /include/unrar/isnt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/unrar/isnt.cpp -------------------------------------------------------------------------------- /include/unrar/isnt.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/unrar/isnt.hpp -------------------------------------------------------------------------------- /include/unrar/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/unrar/license.txt -------------------------------------------------------------------------------- /include/unrar/list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/unrar/list.cpp -------------------------------------------------------------------------------- /include/unrar/list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/unrar/list.hpp -------------------------------------------------------------------------------- /include/unrar/loclang.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/unrar/loclang.hpp -------------------------------------------------------------------------------- /include/unrar/log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/unrar/log.cpp -------------------------------------------------------------------------------- /include/unrar/log.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/unrar/log.hpp -------------------------------------------------------------------------------- /include/unrar/match.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/unrar/match.cpp -------------------------------------------------------------------------------- /include/unrar/match.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/unrar/match.hpp -------------------------------------------------------------------------------- /include/unrar/model.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/unrar/model.cpp -------------------------------------------------------------------------------- /include/unrar/model.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/unrar/model.hpp -------------------------------------------------------------------------------- /include/unrar/motw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/unrar/motw.cpp -------------------------------------------------------------------------------- /include/unrar/motw.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/unrar/motw.hpp -------------------------------------------------------------------------------- /include/unrar/options.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/unrar/options.cpp -------------------------------------------------------------------------------- /include/unrar/options.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/unrar/options.hpp -------------------------------------------------------------------------------- /include/unrar/os.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/unrar/os.hpp -------------------------------------------------------------------------------- /include/unrar/qopen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/unrar/qopen.cpp -------------------------------------------------------------------------------- /include/unrar/qopen.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/unrar/qopen.hpp -------------------------------------------------------------------------------- /include/unrar/rar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/unrar/rar.cpp -------------------------------------------------------------------------------- /include/unrar/rar.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/unrar/rar.hpp -------------------------------------------------------------------------------- /include/unrar/raros.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/unrar/raros.hpp -------------------------------------------------------------------------------- /include/unrar/rarvm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/unrar/rarvm.cpp -------------------------------------------------------------------------------- /include/unrar/rarvm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/unrar/rarvm.hpp -------------------------------------------------------------------------------- /include/unrar/rs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/unrar/rs.cpp -------------------------------------------------------------------------------- /include/unrar/rs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/unrar/rs.hpp -------------------------------------------------------------------------------- /include/unrar/rs16.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/unrar/rs16.cpp -------------------------------------------------------------------------------- /include/unrar/rs16.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/unrar/rs16.hpp -------------------------------------------------------------------------------- /include/unrar/sha1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/unrar/sha1.cpp -------------------------------------------------------------------------------- /include/unrar/sha1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/unrar/sha1.hpp -------------------------------------------------------------------------------- /include/unrar/strfn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/unrar/strfn.cpp -------------------------------------------------------------------------------- /include/unrar/strfn.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/unrar/strfn.hpp -------------------------------------------------------------------------------- /include/unrar/ui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/unrar/ui.cpp -------------------------------------------------------------------------------- /include/unrar/ui.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/unrar/ui.hpp -------------------------------------------------------------------------------- /include/vorbis/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/vorbis/AUTHORS -------------------------------------------------------------------------------- /include/vorbis/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/vorbis/CHANGES -------------------------------------------------------------------------------- /include/vorbis/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/vorbis/COPYING -------------------------------------------------------------------------------- /include/vorbis/lib/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/vorbis/lib/os.h -------------------------------------------------------------------------------- /include/zlib/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/zlib/ChangeLog -------------------------------------------------------------------------------- /include/zlib/FAQ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/zlib/FAQ -------------------------------------------------------------------------------- /include/zlib/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/zlib/INDEX -------------------------------------------------------------------------------- /include/zlib/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/zlib/LICENSE -------------------------------------------------------------------------------- /include/zlib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/zlib/README -------------------------------------------------------------------------------- /include/zlib/adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/zlib/adler32.c -------------------------------------------------------------------------------- /include/zlib/compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/zlib/compress.c -------------------------------------------------------------------------------- /include/zlib/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/zlib/crc32.c -------------------------------------------------------------------------------- /include/zlib/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/zlib/crc32.h -------------------------------------------------------------------------------- /include/zlib/deflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/zlib/deflate.c -------------------------------------------------------------------------------- /include/zlib/deflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/zlib/deflate.h -------------------------------------------------------------------------------- /include/zlib/gzclose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/zlib/gzclose.c -------------------------------------------------------------------------------- /include/zlib/gzguts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/zlib/gzguts.h -------------------------------------------------------------------------------- /include/zlib/gzlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/zlib/gzlib.c -------------------------------------------------------------------------------- /include/zlib/gzread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/zlib/gzread.c -------------------------------------------------------------------------------- /include/zlib/gzwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/zlib/gzwrite.c -------------------------------------------------------------------------------- /include/zlib/infback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/zlib/infback.c -------------------------------------------------------------------------------- /include/zlib/inffast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/zlib/inffast.c -------------------------------------------------------------------------------- /include/zlib/inffast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/zlib/inffast.h -------------------------------------------------------------------------------- /include/zlib/inffixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/zlib/inffixed.h -------------------------------------------------------------------------------- /include/zlib/inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/zlib/inflate.c -------------------------------------------------------------------------------- /include/zlib/inflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/zlib/inflate.h -------------------------------------------------------------------------------- /include/zlib/inftrees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/zlib/inftrees.c -------------------------------------------------------------------------------- /include/zlib/inftrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/zlib/inftrees.h -------------------------------------------------------------------------------- /include/zlib/trees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/zlib/trees.c -------------------------------------------------------------------------------- /include/zlib/trees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/zlib/trees.h -------------------------------------------------------------------------------- /include/zlib/uncompr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/zlib/uncompr.c -------------------------------------------------------------------------------- /include/zlib/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/zlib/zconf.h -------------------------------------------------------------------------------- /include/zlib/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/zlib/zlib.h -------------------------------------------------------------------------------- /include/zlib/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/zlib/zutil.c -------------------------------------------------------------------------------- /include/zlib/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/include/zlib/zutil.h -------------------------------------------------------------------------------- /libopenmpt/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/libopenmpt/Doxyfile -------------------------------------------------------------------------------- /libopenmpt/libopenmpt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/libopenmpt/libopenmpt.h -------------------------------------------------------------------------------- /misc/GzipWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/misc/GzipWriter.h -------------------------------------------------------------------------------- /misc/WriteMemoryDump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/misc/WriteMemoryDump.h -------------------------------------------------------------------------------- /misc/mptClock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/misc/mptClock.cpp -------------------------------------------------------------------------------- /misc/mptClock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/misc/mptClock.h -------------------------------------------------------------------------------- /misc/mptColor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/misc/mptColor.cpp -------------------------------------------------------------------------------- /misc/mptColor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/misc/mptColor.h -------------------------------------------------------------------------------- /misc/mptLibrary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/misc/mptLibrary.cpp -------------------------------------------------------------------------------- /misc/mptLibrary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/misc/mptLibrary.h -------------------------------------------------------------------------------- /misc/mptMutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/misc/mptMutex.h -------------------------------------------------------------------------------- /misc/mptOS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/misc/mptOS.cpp -------------------------------------------------------------------------------- /misc/mptOS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/misc/mptOS.h -------------------------------------------------------------------------------- /misc/mptOSException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/misc/mptOSException.h -------------------------------------------------------------------------------- /misc/mptWine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/misc/mptWine.cpp -------------------------------------------------------------------------------- /misc/mptWine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/misc/mptWine.h -------------------------------------------------------------------------------- /mptrack/AboutDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/mptrack/AboutDialog.cpp -------------------------------------------------------------------------------- /mptrack/AboutDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/mptrack/AboutDialog.h -------------------------------------------------------------------------------- /mptrack/AutoSaver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/mptrack/AutoSaver.cpp -------------------------------------------------------------------------------- /mptrack/AutoSaver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/mptrack/AutoSaver.h -------------------------------------------------------------------------------- /mptrack/Autotune.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/mptrack/Autotune.cpp -------------------------------------------------------------------------------- /mptrack/Autotune.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/mptrack/Autotune.h -------------------------------------------------------------------------------- /mptrack/CImageListEx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/mptrack/CImageListEx.h -------------------------------------------------------------------------------- /mptrack/CListCtrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/mptrack/CListCtrl.h -------------------------------------------------------------------------------- /mptrack/Childfrm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/mptrack/Childfrm.cpp -------------------------------------------------------------------------------- /mptrack/Childfrm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/mptrack/Childfrm.h -------------------------------------------------------------------------------- /mptrack/CleanupSong.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/mptrack/CleanupSong.cpp -------------------------------------------------------------------------------- /mptrack/CleanupSong.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/mptrack/CleanupSong.h -------------------------------------------------------------------------------- /mptrack/Clipboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/mptrack/Clipboard.h -------------------------------------------------------------------------------- /mptrack/ColorSchemes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/mptrack/ColorSchemes.h -------------------------------------------------------------------------------- /mptrack/ColourEdit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/mptrack/ColourEdit.cpp -------------------------------------------------------------------------------- /mptrack/ColourEdit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/mptrack/ColourEdit.h -------------------------------------------------------------------------------- /mptrack/CommandSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/mptrack/CommandSet.cpp -------------------------------------------------------------------------------- /mptrack/CommandSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/mptrack/CommandSet.h -------------------------------------------------------------------------------- /mptrack/Ctrl_com.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/mptrack/Ctrl_com.cpp -------------------------------------------------------------------------------- /mptrack/Ctrl_com.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/mptrack/Ctrl_com.h -------------------------------------------------------------------------------- /mptrack/Ctrl_gen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/mptrack/Ctrl_gen.cpp -------------------------------------------------------------------------------- /mptrack/Ctrl_gen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/mptrack/Ctrl_gen.h -------------------------------------------------------------------------------- /mptrack/Ctrl_ins.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/mptrack/Ctrl_ins.cpp -------------------------------------------------------------------------------- /mptrack/Ctrl_ins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/mptrack/Ctrl_ins.h -------------------------------------------------------------------------------- /mptrack/Ctrl_pat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/mptrack/Ctrl_pat.cpp -------------------------------------------------------------------------------- /mptrack/Ctrl_pat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/mptrack/Ctrl_pat.h -------------------------------------------------------------------------------- /mptrack/Ctrl_seq.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/mptrack/Ctrl_seq.cpp -------------------------------------------------------------------------------- /mptrack/Ctrl_smp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/mptrack/Ctrl_smp.cpp -------------------------------------------------------------------------------- /mptrack/Ctrl_smp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/mptrack/Ctrl_smp.h -------------------------------------------------------------------------------- /mptrack/DialogBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/mptrack/DialogBase.cpp -------------------------------------------------------------------------------- /mptrack/DialogBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/mptrack/DialogBase.h -------------------------------------------------------------------------------- /mptrack/Draw_pat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/mptrack/Draw_pat.cpp -------------------------------------------------------------------------------- /mptrack/EffectInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/mptrack/EffectInfo.cpp -------------------------------------------------------------------------------- /mptrack/EffectInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/mptrack/EffectInfo.h -------------------------------------------------------------------------------- /mptrack/EffectVis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/mptrack/EffectVis.cpp -------------------------------------------------------------------------------- /mptrack/EffectVis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/mptrack/EffectVis.h -------------------------------------------------------------------------------- /mptrack/FileDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/mptrack/FileDialog.cpp -------------------------------------------------------------------------------- /mptrack/FileDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/mptrack/FileDialog.h -------------------------------------------------------------------------------- /mptrack/FolderScanner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/mptrack/FolderScanner.h -------------------------------------------------------------------------------- /mptrack/Globals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/mptrack/Globals.cpp -------------------------------------------------------------------------------- /mptrack/Globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/mptrack/Globals.h -------------------------------------------------------------------------------- /mptrack/HTTP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/mptrack/HTTP.cpp -------------------------------------------------------------------------------- /mptrack/HTTP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/mptrack/HTTP.h -------------------------------------------------------------------------------- /mptrack/IPCWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/mptrack/IPCWindow.cpp -------------------------------------------------------------------------------- /mptrack/IPCWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/mptrack/IPCWindow.h -------------------------------------------------------------------------------- /mptrack/Image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/mptrack/Image.cpp -------------------------------------------------------------------------------- /mptrack/Image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/mptrack/Image.h -------------------------------------------------------------------------------- /mptrack/ImageLists.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/mptrack/ImageLists.h -------------------------------------------------------------------------------- /mptrack/InputHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/mptrack/InputHandler.h -------------------------------------------------------------------------------- /mptrack/KeyConfigDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/mptrack/KeyConfigDlg.h -------------------------------------------------------------------------------- /mptrack/LinkResolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/mptrack/LinkResolver.h -------------------------------------------------------------------------------- /mptrack/MIDIMapping.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/mptrack/MIDIMapping.cpp -------------------------------------------------------------------------------- /mptrack/MIDIMapping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/mptrack/MIDIMapping.h -------------------------------------------------------------------------------- /mptrack/MPTHacks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/mptrack/MPTHacks.cpp -------------------------------------------------------------------------------- /mptrack/MPTrackLink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/mptrack/MPTrackLink.cpp -------------------------------------------------------------------------------- /mptrack/MPTrackUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/mptrack/MPTrackUtil.cpp -------------------------------------------------------------------------------- /mptrack/MPTrackUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/mptrack/MPTrackUtil.h -------------------------------------------------------------------------------- /mptrack/MPTrackWine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/mptrack/MPTrackWine.cpp -------------------------------------------------------------------------------- /mptrack/MPTrackWine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/mptrack/MPTrackWine.h -------------------------------------------------------------------------------- /mptrack/MainFrm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/mptrack/MainFrm.cpp -------------------------------------------------------------------------------- /mptrack/Mainbar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/mptrack/Mainbar.cpp -------------------------------------------------------------------------------- /mptrack/Mainbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/mptrack/Mainbar.h -------------------------------------------------------------------------------- /mptrack/Mainfrm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/mptrack/Mainfrm.h -------------------------------------------------------------------------------- /mptrack/Mod2wave.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/mptrack/Mod2wave.cpp -------------------------------------------------------------------------------- /mptrack/ModConvert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/mptrack/ModConvert.cpp -------------------------------------------------------------------------------- /mptrack/ModConvert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/mptrack/ModConvert.h -------------------------------------------------------------------------------- /mptrack/Moddoc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/mptrack/Moddoc.cpp -------------------------------------------------------------------------------- /mptrack/Moddoc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/mptrack/Moddoc.h -------------------------------------------------------------------------------- /mptrack/Modedit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/mptrack/Modedit.cpp -------------------------------------------------------------------------------- /mptrack/Mpdlgs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/mptrack/Mpdlgs.cpp -------------------------------------------------------------------------------- /mptrack/Mpdlgs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/mptrack/Mpdlgs.h -------------------------------------------------------------------------------- /mptrack/Mpt_midi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/mptrack/Mpt_midi.cpp -------------------------------------------------------------------------------- /mptrack/Mptrack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/mptrack/Mptrack.cpp -------------------------------------------------------------------------------- /mptrack/Mptrack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/mptrack/Mptrack.h -------------------------------------------------------------------------------- /mptrack/Notification.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/mptrack/Notification.h -------------------------------------------------------------------------------- /mptrack/OPLExport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/mptrack/OPLExport.cpp -------------------------------------------------------------------------------- /mptrack/OPLInstrDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/mptrack/OPLInstrDlg.cpp -------------------------------------------------------------------------------- /mptrack/OPLInstrDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/mptrack/OPLInstrDlg.h -------------------------------------------------------------------------------- /mptrack/PSRatioCalc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/mptrack/PSRatioCalc.cpp -------------------------------------------------------------------------------- /mptrack/PSRatioCalc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/mptrack/PSRatioCalc.h -------------------------------------------------------------------------------- /mptrack/PathConfigDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/mptrack/PathConfigDlg.h -------------------------------------------------------------------------------- /mptrack/PatternCursor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/mptrack/PatternCursor.h -------------------------------------------------------------------------------- /mptrack/PatternFont.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/mptrack/PatternFont.cpp -------------------------------------------------------------------------------- /mptrack/PatternFont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/mptrack/PatternFont.h -------------------------------------------------------------------------------- /mptrack/Reporting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/mptrack/Reporting.cpp -------------------------------------------------------------------------------- /mptrack/Reporting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/mptrack/Reporting.h -------------------------------------------------------------------------------- /mptrack/Settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/mptrack/Settings.cpp -------------------------------------------------------------------------------- /mptrack/Settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/mptrack/Settings.h -------------------------------------------------------------------------------- /mptrack/TuningDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/mptrack/TuningDialog.h -------------------------------------------------------------------------------- /mptrack/Undo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/mptrack/Undo.cpp -------------------------------------------------------------------------------- /mptrack/Undo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/mptrack/Undo.h -------------------------------------------------------------------------------- /mptrack/UpdateCheck.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/mptrack/UpdateCheck.cpp -------------------------------------------------------------------------------- /mptrack/UpdateCheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/mptrack/UpdateCheck.h -------------------------------------------------------------------------------- /mptrack/UpdateHints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/mptrack/UpdateHints.h -------------------------------------------------------------------------------- /mptrack/UpdateToolTip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/mptrack/UpdateToolTip.h -------------------------------------------------------------------------------- /mptrack/VSTEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/mptrack/VSTEditor.cpp -------------------------------------------------------------------------------- /mptrack/VSTEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/mptrack/VSTEditor.h -------------------------------------------------------------------------------- /mptrack/View_gen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/mptrack/View_gen.cpp -------------------------------------------------------------------------------- /mptrack/View_gen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/mptrack/View_gen.h -------------------------------------------------------------------------------- /mptrack/View_ins.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/mptrack/View_ins.cpp -------------------------------------------------------------------------------- /mptrack/View_ins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/mptrack/View_ins.h -------------------------------------------------------------------------------- /mptrack/View_pat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/mptrack/View_pat.cpp -------------------------------------------------------------------------------- /mptrack/View_pat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/mptrack/View_pat.h -------------------------------------------------------------------------------- /mptrack/View_smp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/mptrack/View_smp.cpp -------------------------------------------------------------------------------- /mptrack/View_smp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/mptrack/View_smp.h -------------------------------------------------------------------------------- /mptrack/View_tre.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/mptrack/View_tre.cpp -------------------------------------------------------------------------------- /mptrack/View_tre.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/mptrack/View_tre.h -------------------------------------------------------------------------------- /mptrack/VstPresets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/mptrack/VstPresets.cpp -------------------------------------------------------------------------------- /mptrack/VstPresets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/mptrack/VstPresets.h -------------------------------------------------------------------------------- /mptrack/Vstplug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/mptrack/Vstplug.cpp -------------------------------------------------------------------------------- /mptrack/Vstplug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/mptrack/Vstplug.h -------------------------------------------------------------------------------- /mptrack/WelcomeDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/mptrack/WelcomeDialog.h -------------------------------------------------------------------------------- /mptrack/dlg_misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/mptrack/dlg_misc.cpp -------------------------------------------------------------------------------- /mptrack/dlg_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/mptrack/dlg_misc.h -------------------------------------------------------------------------------- /mptrack/mod2midi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/mptrack/mod2midi.cpp -------------------------------------------------------------------------------- /mptrack/mod2midi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/mptrack/mod2midi.h -------------------------------------------------------------------------------- /mptrack/mod2wave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/mptrack/mod2wave.h -------------------------------------------------------------------------------- /mptrack/mptrack.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/mptrack/mptrack.rc -------------------------------------------------------------------------------- /mptrack/res/About.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/mptrack/res/About.png -------------------------------------------------------------------------------- /mptrack/res/COLORS.BMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/mptrack/res/COLORS.BMP -------------------------------------------------------------------------------- /mptrack/res/MPTRACK.ICO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/mptrack/res/MPTRACK.ICO -------------------------------------------------------------------------------- /mptrack/res/MPTRACK.RC2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/mptrack/res/MPTRACK.RC2 -------------------------------------------------------------------------------- /mptrack/res/NODROP.CUR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/mptrack/res/NODROP.CUR -------------------------------------------------------------------------------- /mptrack/res/New32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/mptrack/res/New32.png -------------------------------------------------------------------------------- /mptrack/res/Open32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/mptrack/res/Open32.png -------------------------------------------------------------------------------- /mptrack/res/Splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/mptrack/res/Splash.png -------------------------------------------------------------------------------- /mptrack/res/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/mptrack/res/icons.png -------------------------------------------------------------------------------- /mptrack/res/moddoc.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/mptrack/res/moddoc.ico -------------------------------------------------------------------------------- /mptrack/res/nodrag.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/mptrack/res/nodrag.cur -------------------------------------------------------------------------------- /mptrack/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/mptrack/resource.h -------------------------------------------------------------------------------- /mptrack/view_com.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/mptrack/view_com.cpp -------------------------------------------------------------------------------- /mptrack/view_com.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/mptrack/view_com.h -------------------------------------------------------------------------------- /mptrack/wine/Native.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/mptrack/wine/Native.cpp -------------------------------------------------------------------------------- /mptrack/wine/Native.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/mptrack/wine/Native.h -------------------------------------------------------------------------------- /packageTemplate/OpenMPT.portable: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pluginBridge/Bridge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/pluginBridge/Bridge.cpp -------------------------------------------------------------------------------- /pluginBridge/Bridge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/pluginBridge/Bridge.h -------------------------------------------------------------------------------- /sounddsp/AGC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/sounddsp/AGC.cpp -------------------------------------------------------------------------------- /sounddsp/AGC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/sounddsp/AGC.h -------------------------------------------------------------------------------- /sounddsp/DSP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/sounddsp/DSP.cpp -------------------------------------------------------------------------------- /sounddsp/DSP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/sounddsp/DSP.h -------------------------------------------------------------------------------- /sounddsp/EQ.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/sounddsp/EQ.cpp -------------------------------------------------------------------------------- /sounddsp/EQ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/sounddsp/EQ.h -------------------------------------------------------------------------------- /sounddsp/Reverb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/sounddsp/Reverb.cpp -------------------------------------------------------------------------------- /sounddsp/Reverb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/sounddsp/Reverb.h -------------------------------------------------------------------------------- /soundlib/BitReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/soundlib/BitReader.h -------------------------------------------------------------------------------- /soundlib/Container.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/soundlib/Container.h -------------------------------------------------------------------------------- /soundlib/Dlsbank.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/soundlib/Dlsbank.cpp -------------------------------------------------------------------------------- /soundlib/Dlsbank.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/soundlib/Dlsbank.h -------------------------------------------------------------------------------- /soundlib/Fastmix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/soundlib/Fastmix.cpp -------------------------------------------------------------------------------- /soundlib/FloatMixer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/soundlib/FloatMixer.h -------------------------------------------------------------------------------- /soundlib/ITTools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/soundlib/ITTools.cpp -------------------------------------------------------------------------------- /soundlib/ITTools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/soundlib/ITTools.h -------------------------------------------------------------------------------- /soundlib/IntMixer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/soundlib/IntMixer.h -------------------------------------------------------------------------------- /soundlib/Load_667.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/soundlib/Load_667.cpp -------------------------------------------------------------------------------- /soundlib/Load_669.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/soundlib/Load_669.cpp -------------------------------------------------------------------------------- /soundlib/Load_amf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/soundlib/Load_amf.cpp -------------------------------------------------------------------------------- /soundlib/Load_ams.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/soundlib/Load_ams.cpp -------------------------------------------------------------------------------- /soundlib/Load_c67.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/soundlib/Load_c67.cpp -------------------------------------------------------------------------------- /soundlib/Load_cba.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/soundlib/Load_cba.cpp -------------------------------------------------------------------------------- /soundlib/Load_dbm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/soundlib/Load_dbm.cpp -------------------------------------------------------------------------------- /soundlib/Load_digi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/soundlib/Load_digi.cpp -------------------------------------------------------------------------------- /soundlib/Load_dmf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/soundlib/Load_dmf.cpp -------------------------------------------------------------------------------- /soundlib/Load_dsm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/soundlib/Load_dsm.cpp -------------------------------------------------------------------------------- /soundlib/Load_dsym.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/soundlib/Load_dsym.cpp -------------------------------------------------------------------------------- /soundlib/Load_dtm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/soundlib/Load_dtm.cpp -------------------------------------------------------------------------------- /soundlib/Load_etx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/soundlib/Load_etx.cpp -------------------------------------------------------------------------------- /soundlib/Load_far.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/soundlib/Load_far.cpp -------------------------------------------------------------------------------- /soundlib/Load_fc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/soundlib/Load_fc.cpp -------------------------------------------------------------------------------- /soundlib/Load_fmt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/soundlib/Load_fmt.cpp -------------------------------------------------------------------------------- /soundlib/Load_ftm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/soundlib/Load_ftm.cpp -------------------------------------------------------------------------------- /soundlib/Load_gdm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/soundlib/Load_gdm.cpp -------------------------------------------------------------------------------- /soundlib/Load_gmc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/soundlib/Load_gmc.cpp -------------------------------------------------------------------------------- /soundlib/Load_gt2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/soundlib/Load_gt2.cpp -------------------------------------------------------------------------------- /soundlib/Load_ice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/soundlib/Load_ice.cpp -------------------------------------------------------------------------------- /soundlib/Load_imf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/soundlib/Load_imf.cpp -------------------------------------------------------------------------------- /soundlib/Load_ims.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/soundlib/Load_ims.cpp -------------------------------------------------------------------------------- /soundlib/Load_it.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/soundlib/Load_it.cpp -------------------------------------------------------------------------------- /soundlib/Load_itp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/soundlib/Load_itp.cpp -------------------------------------------------------------------------------- /soundlib/Load_kris.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/soundlib/Load_kris.cpp -------------------------------------------------------------------------------- /soundlib/Load_mdl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/soundlib/Load_mdl.cpp -------------------------------------------------------------------------------- /soundlib/Load_med.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/soundlib/Load_med.cpp -------------------------------------------------------------------------------- /soundlib/Load_mid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/soundlib/Load_mid.cpp -------------------------------------------------------------------------------- /soundlib/Load_mo3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/soundlib/Load_mo3.cpp -------------------------------------------------------------------------------- /soundlib/Load_mod.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/soundlib/Load_mod.cpp -------------------------------------------------------------------------------- /soundlib/Load_mt2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/soundlib/Load_mt2.cpp -------------------------------------------------------------------------------- /soundlib/Load_mtm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/soundlib/Load_mtm.cpp -------------------------------------------------------------------------------- /soundlib/Load_okt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/soundlib/Load_okt.cpp -------------------------------------------------------------------------------- /soundlib/Load_plm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/soundlib/Load_plm.cpp -------------------------------------------------------------------------------- /soundlib/Load_psm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/soundlib/Load_psm.cpp -------------------------------------------------------------------------------- /soundlib/Load_pt36.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/soundlib/Load_pt36.cpp -------------------------------------------------------------------------------- /soundlib/Load_ptm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/soundlib/Load_ptm.cpp -------------------------------------------------------------------------------- /soundlib/Load_puma.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/soundlib/Load_puma.cpp -------------------------------------------------------------------------------- /soundlib/Load_rtm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/soundlib/Load_rtm.cpp -------------------------------------------------------------------------------- /soundlib/Load_s3m.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/soundlib/Load_s3m.cpp -------------------------------------------------------------------------------- /soundlib/Load_sfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/soundlib/Load_sfx.cpp -------------------------------------------------------------------------------- /soundlib/Load_stk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/soundlib/Load_stk.cpp -------------------------------------------------------------------------------- /soundlib/Load_stm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/soundlib/Load_stm.cpp -------------------------------------------------------------------------------- /soundlib/Load_stp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/soundlib/Load_stp.cpp -------------------------------------------------------------------------------- /soundlib/Load_tcb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/soundlib/Load_tcb.cpp -------------------------------------------------------------------------------- /soundlib/Load_uax.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/soundlib/Load_uax.cpp -------------------------------------------------------------------------------- /soundlib/Load_ult.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/soundlib/Load_ult.cpp -------------------------------------------------------------------------------- /soundlib/Load_unic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/soundlib/Load_unic.cpp -------------------------------------------------------------------------------- /soundlib/Load_wav.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/soundlib/Load_wav.cpp -------------------------------------------------------------------------------- /soundlib/Load_xm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/soundlib/Load_xm.cpp -------------------------------------------------------------------------------- /soundlib/Load_xmf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/soundlib/Load_xmf.cpp -------------------------------------------------------------------------------- /soundlib/Loaders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/soundlib/Loaders.h -------------------------------------------------------------------------------- /soundlib/MIDIEvents.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/soundlib/MIDIEvents.cpp -------------------------------------------------------------------------------- /soundlib/MIDIEvents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/soundlib/MIDIEvents.h -------------------------------------------------------------------------------- /soundlib/MIDIMacros.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/soundlib/MIDIMacros.cpp -------------------------------------------------------------------------------- /soundlib/MIDIMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/soundlib/MIDIMacros.h -------------------------------------------------------------------------------- /soundlib/MODTools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/soundlib/MODTools.cpp -------------------------------------------------------------------------------- /soundlib/MODTools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/soundlib/MODTools.h -------------------------------------------------------------------------------- /soundlib/MPEGFrame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/soundlib/MPEGFrame.cpp -------------------------------------------------------------------------------- /soundlib/MPEGFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/soundlib/MPEGFrame.h -------------------------------------------------------------------------------- /soundlib/Message.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/soundlib/Message.cpp -------------------------------------------------------------------------------- /soundlib/Message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/soundlib/Message.h -------------------------------------------------------------------------------- /soundlib/MixFuncTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/soundlib/MixFuncTable.h -------------------------------------------------------------------------------- /soundlib/Mixer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/soundlib/Mixer.h -------------------------------------------------------------------------------- /soundlib/MixerLoops.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/soundlib/MixerLoops.cpp -------------------------------------------------------------------------------- /soundlib/MixerLoops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/soundlib/MixerLoops.h -------------------------------------------------------------------------------- /soundlib/ModChannel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/soundlib/ModChannel.cpp -------------------------------------------------------------------------------- /soundlib/ModChannel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/soundlib/ModChannel.h -------------------------------------------------------------------------------- /soundlib/ModSample.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/soundlib/ModSample.cpp -------------------------------------------------------------------------------- /soundlib/ModSample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/soundlib/ModSample.h -------------------------------------------------------------------------------- /soundlib/ModSequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/soundlib/ModSequence.h -------------------------------------------------------------------------------- /soundlib/OPL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/soundlib/OPL.cpp -------------------------------------------------------------------------------- /soundlib/OPL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/soundlib/OPL.h -------------------------------------------------------------------------------- /soundlib/OggStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/soundlib/OggStream.cpp -------------------------------------------------------------------------------- /soundlib/OggStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/soundlib/OggStream.h -------------------------------------------------------------------------------- /soundlib/Paula.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/soundlib/Paula.cpp -------------------------------------------------------------------------------- /soundlib/Paula.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/soundlib/Paula.h -------------------------------------------------------------------------------- /soundlib/PlayState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/soundlib/PlayState.cpp -------------------------------------------------------------------------------- /soundlib/PlayState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/soundlib/PlayState.h -------------------------------------------------------------------------------- /soundlib/PlaybackTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/soundlib/PlaybackTest.h -------------------------------------------------------------------------------- /soundlib/Resampler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/soundlib/Resampler.h -------------------------------------------------------------------------------- /soundlib/RowVisitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/soundlib/RowVisitor.cpp -------------------------------------------------------------------------------- /soundlib/RowVisitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/soundlib/RowVisitor.h -------------------------------------------------------------------------------- /soundlib/S3MTools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/soundlib/S3MTools.cpp -------------------------------------------------------------------------------- /soundlib/S3MTools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/soundlib/S3MTools.h -------------------------------------------------------------------------------- /soundlib/SampleCopy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/soundlib/SampleCopy.h -------------------------------------------------------------------------------- /soundlib/SampleIO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/soundlib/SampleIO.cpp -------------------------------------------------------------------------------- /soundlib/SampleIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/soundlib/SampleIO.h -------------------------------------------------------------------------------- /soundlib/Snd_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/soundlib/Snd_defs.h -------------------------------------------------------------------------------- /soundlib/Snd_flt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/soundlib/Snd_flt.cpp -------------------------------------------------------------------------------- /soundlib/Snd_fx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/soundlib/Snd_fx.cpp -------------------------------------------------------------------------------- /soundlib/Sndfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/soundlib/Sndfile.cpp -------------------------------------------------------------------------------- /soundlib/Sndfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/soundlib/Sndfile.h -------------------------------------------------------------------------------- /soundlib/Sndmix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/soundlib/Sndmix.cpp -------------------------------------------------------------------------------- /soundlib/Tables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/soundlib/Tables.cpp -------------------------------------------------------------------------------- /soundlib/Tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/soundlib/Tables.h -------------------------------------------------------------------------------- /soundlib/Tagging.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/soundlib/Tagging.cpp -------------------------------------------------------------------------------- /soundlib/Tagging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/soundlib/Tagging.h -------------------------------------------------------------------------------- /soundlib/TinyFFT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/soundlib/TinyFFT.cpp -------------------------------------------------------------------------------- /soundlib/TinyFFT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/soundlib/TinyFFT.h -------------------------------------------------------------------------------- /soundlib/UMXTools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/soundlib/UMXTools.cpp -------------------------------------------------------------------------------- /soundlib/UMXTools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/soundlib/UMXTools.h -------------------------------------------------------------------------------- /soundlib/WAVTools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/soundlib/WAVTools.cpp -------------------------------------------------------------------------------- /soundlib/WAVTools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/soundlib/WAVTools.h -------------------------------------------------------------------------------- /soundlib/WindowedFIR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/soundlib/WindowedFIR.h -------------------------------------------------------------------------------- /soundlib/XMTools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/soundlib/XMTools.cpp -------------------------------------------------------------------------------- /soundlib/XMTools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/soundlib/XMTools.h -------------------------------------------------------------------------------- /soundlib/load_j2b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/soundlib/load_j2b.cpp -------------------------------------------------------------------------------- /soundlib/modcommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/soundlib/modcommand.cpp -------------------------------------------------------------------------------- /soundlib/modcommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/soundlib/modcommand.h -------------------------------------------------------------------------------- /soundlib/modsmp_ctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/soundlib/modsmp_ctrl.h -------------------------------------------------------------------------------- /soundlib/opal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/soundlib/opal.h -------------------------------------------------------------------------------- /soundlib/pattern.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/soundlib/pattern.cpp -------------------------------------------------------------------------------- /soundlib/pattern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/soundlib/pattern.h -------------------------------------------------------------------------------- /soundlib/tuning.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/soundlib/tuning.cpp -------------------------------------------------------------------------------- /soundlib/tuning.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/soundlib/tuning.h -------------------------------------------------------------------------------- /soundlib/tuningbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/soundlib/tuningbase.h -------------------------------------------------------------------------------- /src/mpt/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/src/mpt/.clang-format -------------------------------------------------------------------------------- /src/mpt/arch/arch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/src/mpt/arch/arch.hpp -------------------------------------------------------------------------------- /src/mpt/audio/span.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/src/mpt/audio/span.hpp -------------------------------------------------------------------------------- /src/mpt/base/alloc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/src/mpt/base/alloc.hpp -------------------------------------------------------------------------------- /src/mpt/base/array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/src/mpt/base/array.hpp -------------------------------------------------------------------------------- /src/mpt/base/bit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/src/mpt/base/bit.hpp -------------------------------------------------------------------------------- /src/mpt/base/detect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/src/mpt/base/detect.hpp -------------------------------------------------------------------------------- /src/mpt/base/float.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/src/mpt/base/float.hpp -------------------------------------------------------------------------------- /src/mpt/base/macros.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/src/mpt/base/macros.hpp -------------------------------------------------------------------------------- /src/mpt/base/math.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/src/mpt/base/math.hpp -------------------------------------------------------------------------------- /src/mpt/base/memory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/src/mpt/base/memory.hpp -------------------------------------------------------------------------------- /src/mpt/base/secure.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/src/mpt/base/secure.hpp -------------------------------------------------------------------------------- /src/mpt/base/size.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/src/mpt/base/size.hpp -------------------------------------------------------------------------------- /src/mpt/base/span.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/src/mpt/base/span.hpp -------------------------------------------------------------------------------- /src/mpt/binary/hex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/src/mpt/binary/hex.hpp -------------------------------------------------------------------------------- /src/mpt/check/libc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/src/mpt/check/libc.hpp -------------------------------------------------------------------------------- /src/mpt/check/mfc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/src/mpt/check/mfc.hpp -------------------------------------------------------------------------------- /src/mpt/crc/crc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/src/mpt/crc/crc.hpp -------------------------------------------------------------------------------- /src/mpt/crypto/hash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/src/mpt/crypto/hash.hpp -------------------------------------------------------------------------------- /src/mpt/crypto/jwk.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/src/mpt/crypto/jwk.hpp -------------------------------------------------------------------------------- /src/mpt/detect/dl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/src/mpt/detect/dl.hpp -------------------------------------------------------------------------------- /src/mpt/detect/ltdl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/src/mpt/detect/ltdl.hpp -------------------------------------------------------------------------------- /src/mpt/detect/mfc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/src/mpt/detect/mfc.hpp -------------------------------------------------------------------------------- /src/mpt/filemode/fd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/src/mpt/filemode/fd.hpp -------------------------------------------------------------------------------- /src/mpt/format/join.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/src/mpt/format/join.hpp -------------------------------------------------------------------------------- /src/mpt/fs/fs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/src/mpt/fs/fs.hpp -------------------------------------------------------------------------------- /src/mpt/io/base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/src/mpt/io/base.hpp -------------------------------------------------------------------------------- /src/mpt/io/io.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/src/mpt/io/io.hpp -------------------------------------------------------------------------------- /src/mpt/io/io_span.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/src/mpt/io/io_span.hpp -------------------------------------------------------------------------------- /src/mpt/json/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/src/mpt/json/json.hpp -------------------------------------------------------------------------------- /src/mpt/main/main.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/src/mpt/main/main.hpp -------------------------------------------------------------------------------- /src/mpt/mutex/mutex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/src/mpt/mutex/mutex.hpp -------------------------------------------------------------------------------- /src/mpt/parse/parse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/src/mpt/parse/parse.hpp -------------------------------------------------------------------------------- /src/mpt/parse/split.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/src/mpt/parse/split.hpp -------------------------------------------------------------------------------- /src/mpt/path/path.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/src/mpt/path/path.hpp -------------------------------------------------------------------------------- /src/mpt/random/seed.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/src/mpt/random/seed.hpp -------------------------------------------------------------------------------- /src/mpt/test/test.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/src/mpt/test/test.hpp -------------------------------------------------------------------------------- /src/mpt/uuid/guid.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/src/mpt/uuid/guid.hpp -------------------------------------------------------------------------------- /src/mpt/uuid/uuid.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/src/mpt/uuid/uuid.hpp -------------------------------------------------------------------------------- /test/TestTools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/test/TestTools.h -------------------------------------------------------------------------------- /test/TestToolsLib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/test/TestToolsLib.cpp -------------------------------------------------------------------------------- /test/TestToolsLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/test/TestToolsLib.h -------------------------------------------------------------------------------- /test/TestToolsTracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/test/TestToolsTracker.h -------------------------------------------------------------------------------- /test/mpt_tests_base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/test/mpt_tests_base.cpp -------------------------------------------------------------------------------- /test/mpt_tests_crc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/test/mpt_tests_crc.cpp -------------------------------------------------------------------------------- /test/mpt_tests_io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/test/mpt_tests_io.cpp -------------------------------------------------------------------------------- /test/mpt_tests_uuid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/test/mpt_tests_uuid.cpp -------------------------------------------------------------------------------- /test/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/test/test.cpp -------------------------------------------------------------------------------- /test/test.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/test/test.flac -------------------------------------------------------------------------------- /test/test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/test/test.h -------------------------------------------------------------------------------- /test/test.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/test/test.mod -------------------------------------------------------------------------------- /test/test.mptm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/test/test.mptm -------------------------------------------------------------------------------- /test/test.s3m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/test/test.s3m -------------------------------------------------------------------------------- /test/test.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/test/test.xm -------------------------------------------------------------------------------- /tracklib/FadeLaws.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/tracklib/FadeLaws.h -------------------------------------------------------------------------------- /tracklib/SampleEdit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/tracklib/SampleEdit.cpp -------------------------------------------------------------------------------- /tracklib/SampleEdit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/tracklib/SampleEdit.h -------------------------------------------------------------------------------- /unarchiver/archive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/unarchiver/archive.h -------------------------------------------------------------------------------- /unarchiver/unancient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/unarchiver/unancient.h -------------------------------------------------------------------------------- /unarchiver/unarchiver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/unarchiver/unarchiver.h -------------------------------------------------------------------------------- /unarchiver/ungzip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/unarchiver/ungzip.cpp -------------------------------------------------------------------------------- /unarchiver/ungzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/unarchiver/ungzip.h -------------------------------------------------------------------------------- /unarchiver/unlha.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/unarchiver/unlha.cpp -------------------------------------------------------------------------------- /unarchiver/unlha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/unarchiver/unlha.h -------------------------------------------------------------------------------- /unarchiver/unrar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/unarchiver/unrar.cpp -------------------------------------------------------------------------------- /unarchiver/unrar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/unarchiver/unrar.h -------------------------------------------------------------------------------- /unarchiver/unzip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/unarchiver/unzip.cpp -------------------------------------------------------------------------------- /unarchiver/unzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMPT/openmpt/HEAD/unarchiver/unzip.h --------------------------------------------------------------------------------