├── .clang-tidy ├── .github └── workflows │ ├── Tagged.yaml │ └── Untagged.yaml ├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── appveyor.yml ├── fmt-11.2.0 ├── .clang-format ├── .github │ ├── dependabot.yml │ ├── issue_template.md │ ├── pull_request_template.md │ └── workflows │ │ ├── cifuzz.yml │ │ ├── doc.yml │ │ ├── lint.yml │ │ ├── linux.yml │ │ ├── macos.yml │ │ ├── scorecard.yml │ │ └── windows.yml ├── .gitignore ├── CMakeLists.txt ├── CONTRIBUTING.md ├── ChangeLog.md ├── LICENSE ├── README.md ├── doc │ ├── ChangeLog-old.md │ ├── api.md │ ├── fmt.css │ ├── fmt.js │ ├── get-started.md │ ├── index.md │ ├── perf.svg │ ├── python-license.txt │ └── syntax.md ├── include │ └── fmt │ │ ├── args.h │ │ ├── base.h │ │ ├── chrono.h │ │ ├── color.h │ │ ├── compile.h │ │ ├── core.h │ │ ├── format-inl.h │ │ ├── format.h │ │ ├── os.h │ │ ├── ostream.h │ │ ├── printf.h │ │ ├── ranges.h │ │ ├── std.h │ │ └── xchar.h ├── src │ ├── fmt.cc │ ├── format.cc │ └── os.cc └── support │ ├── Android.mk │ ├── AndroidManifest.xml │ ├── C++.sublime-syntax │ ├── README │ ├── Vagrantfile │ ├── bazel │ ├── .bazelversion │ ├── BUILD.bazel │ ├── MODULE.bazel │ ├── README.md │ └── WORKSPACE.bazel │ ├── build.gradle │ ├── check-commits │ ├── cmake │ ├── FindSetEnv.cmake │ ├── JoinPaths.cmake │ ├── fmt-config.cmake.in │ └── fmt.pc.in │ ├── docopt.py │ ├── mkdocs │ ├── mkdocs.yml │ ├── printable.py │ ├── python │ └── mkdocstrings_handlers │ │ └── cxx │ │ ├── __init__.py │ │ └── templates │ │ └── README │ └── release.py ├── mingw.def ├── msvc.def ├── msvc64.def ├── src ├── AL │ ├── al.h │ ├── alc.h │ ├── alext.h │ └── efx.h ├── buffer.cpp ├── buffer.h ├── capture.cpp ├── capture.h ├── comhelpers.h ├── comptr.h ├── dsoal.cpp ├── dsoal.h ├── dsoal_global.h ├── dsoundoal.cpp ├── dsoundoal.h ├── eax.cpp ├── eax.h ├── enumerate.h ├── expected.h ├── factory.cpp ├── factory.h ├── fullduplex.cpp ├── fullduplex.h ├── guidprinter.h ├── logging.cpp ├── logging.h ├── primarybuffer.cpp ├── primarybuffer.h ├── propset.cpp ├── propset.h └── vmanager.h ├── version.cmake ├── version.h.in └── version.rc /.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcat/dsoal/HEAD/.clang-tidy -------------------------------------------------------------------------------- /.github/workflows/Tagged.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcat/dsoal/HEAD/.github/workflows/Tagged.yaml -------------------------------------------------------------------------------- /.github/workflows/Untagged.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcat/dsoal/HEAD/.github/workflows/Untagged.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcat/dsoal/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcat/dsoal/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcat/dsoal/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcat/dsoal/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcat/dsoal/HEAD/appveyor.yml -------------------------------------------------------------------------------- /fmt-11.2.0/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcat/dsoal/HEAD/fmt-11.2.0/.clang-format -------------------------------------------------------------------------------- /fmt-11.2.0/.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcat/dsoal/HEAD/fmt-11.2.0/.github/dependabot.yml -------------------------------------------------------------------------------- /fmt-11.2.0/.github/issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcat/dsoal/HEAD/fmt-11.2.0/.github/issue_template.md -------------------------------------------------------------------------------- /fmt-11.2.0/.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcat/dsoal/HEAD/fmt-11.2.0/.github/pull_request_template.md -------------------------------------------------------------------------------- /fmt-11.2.0/.github/workflows/cifuzz.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcat/dsoal/HEAD/fmt-11.2.0/.github/workflows/cifuzz.yml -------------------------------------------------------------------------------- /fmt-11.2.0/.github/workflows/doc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcat/dsoal/HEAD/fmt-11.2.0/.github/workflows/doc.yml -------------------------------------------------------------------------------- /fmt-11.2.0/.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcat/dsoal/HEAD/fmt-11.2.0/.github/workflows/lint.yml -------------------------------------------------------------------------------- /fmt-11.2.0/.github/workflows/linux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcat/dsoal/HEAD/fmt-11.2.0/.github/workflows/linux.yml -------------------------------------------------------------------------------- /fmt-11.2.0/.github/workflows/macos.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcat/dsoal/HEAD/fmt-11.2.0/.github/workflows/macos.yml -------------------------------------------------------------------------------- /fmt-11.2.0/.github/workflows/scorecard.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcat/dsoal/HEAD/fmt-11.2.0/.github/workflows/scorecard.yml -------------------------------------------------------------------------------- /fmt-11.2.0/.github/workflows/windows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcat/dsoal/HEAD/fmt-11.2.0/.github/workflows/windows.yml -------------------------------------------------------------------------------- /fmt-11.2.0/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcat/dsoal/HEAD/fmt-11.2.0/.gitignore -------------------------------------------------------------------------------- /fmt-11.2.0/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcat/dsoal/HEAD/fmt-11.2.0/CMakeLists.txt -------------------------------------------------------------------------------- /fmt-11.2.0/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcat/dsoal/HEAD/fmt-11.2.0/CONTRIBUTING.md -------------------------------------------------------------------------------- /fmt-11.2.0/ChangeLog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcat/dsoal/HEAD/fmt-11.2.0/ChangeLog.md -------------------------------------------------------------------------------- /fmt-11.2.0/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcat/dsoal/HEAD/fmt-11.2.0/LICENSE -------------------------------------------------------------------------------- /fmt-11.2.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcat/dsoal/HEAD/fmt-11.2.0/README.md -------------------------------------------------------------------------------- /fmt-11.2.0/doc/ChangeLog-old.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcat/dsoal/HEAD/fmt-11.2.0/doc/ChangeLog-old.md -------------------------------------------------------------------------------- /fmt-11.2.0/doc/api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcat/dsoal/HEAD/fmt-11.2.0/doc/api.md -------------------------------------------------------------------------------- /fmt-11.2.0/doc/fmt.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcat/dsoal/HEAD/fmt-11.2.0/doc/fmt.css -------------------------------------------------------------------------------- /fmt-11.2.0/doc/fmt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcat/dsoal/HEAD/fmt-11.2.0/doc/fmt.js -------------------------------------------------------------------------------- /fmt-11.2.0/doc/get-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcat/dsoal/HEAD/fmt-11.2.0/doc/get-started.md -------------------------------------------------------------------------------- /fmt-11.2.0/doc/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcat/dsoal/HEAD/fmt-11.2.0/doc/index.md -------------------------------------------------------------------------------- /fmt-11.2.0/doc/perf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcat/dsoal/HEAD/fmt-11.2.0/doc/perf.svg -------------------------------------------------------------------------------- /fmt-11.2.0/doc/python-license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcat/dsoal/HEAD/fmt-11.2.0/doc/python-license.txt -------------------------------------------------------------------------------- /fmt-11.2.0/doc/syntax.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcat/dsoal/HEAD/fmt-11.2.0/doc/syntax.md -------------------------------------------------------------------------------- /fmt-11.2.0/include/fmt/args.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcat/dsoal/HEAD/fmt-11.2.0/include/fmt/args.h -------------------------------------------------------------------------------- /fmt-11.2.0/include/fmt/base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcat/dsoal/HEAD/fmt-11.2.0/include/fmt/base.h -------------------------------------------------------------------------------- /fmt-11.2.0/include/fmt/chrono.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcat/dsoal/HEAD/fmt-11.2.0/include/fmt/chrono.h -------------------------------------------------------------------------------- /fmt-11.2.0/include/fmt/color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcat/dsoal/HEAD/fmt-11.2.0/include/fmt/color.h -------------------------------------------------------------------------------- /fmt-11.2.0/include/fmt/compile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcat/dsoal/HEAD/fmt-11.2.0/include/fmt/compile.h -------------------------------------------------------------------------------- /fmt-11.2.0/include/fmt/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcat/dsoal/HEAD/fmt-11.2.0/include/fmt/core.h -------------------------------------------------------------------------------- /fmt-11.2.0/include/fmt/format-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcat/dsoal/HEAD/fmt-11.2.0/include/fmt/format-inl.h -------------------------------------------------------------------------------- /fmt-11.2.0/include/fmt/format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcat/dsoal/HEAD/fmt-11.2.0/include/fmt/format.h -------------------------------------------------------------------------------- /fmt-11.2.0/include/fmt/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcat/dsoal/HEAD/fmt-11.2.0/include/fmt/os.h -------------------------------------------------------------------------------- /fmt-11.2.0/include/fmt/ostream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcat/dsoal/HEAD/fmt-11.2.0/include/fmt/ostream.h -------------------------------------------------------------------------------- /fmt-11.2.0/include/fmt/printf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcat/dsoal/HEAD/fmt-11.2.0/include/fmt/printf.h -------------------------------------------------------------------------------- /fmt-11.2.0/include/fmt/ranges.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcat/dsoal/HEAD/fmt-11.2.0/include/fmt/ranges.h -------------------------------------------------------------------------------- /fmt-11.2.0/include/fmt/std.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcat/dsoal/HEAD/fmt-11.2.0/include/fmt/std.h -------------------------------------------------------------------------------- /fmt-11.2.0/include/fmt/xchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcat/dsoal/HEAD/fmt-11.2.0/include/fmt/xchar.h -------------------------------------------------------------------------------- /fmt-11.2.0/src/fmt.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcat/dsoal/HEAD/fmt-11.2.0/src/fmt.cc -------------------------------------------------------------------------------- /fmt-11.2.0/src/format.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcat/dsoal/HEAD/fmt-11.2.0/src/format.cc -------------------------------------------------------------------------------- /fmt-11.2.0/src/os.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcat/dsoal/HEAD/fmt-11.2.0/src/os.cc -------------------------------------------------------------------------------- /fmt-11.2.0/support/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcat/dsoal/HEAD/fmt-11.2.0/support/Android.mk -------------------------------------------------------------------------------- /fmt-11.2.0/support/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /fmt-11.2.0/support/C++.sublime-syntax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcat/dsoal/HEAD/fmt-11.2.0/support/C++.sublime-syntax -------------------------------------------------------------------------------- /fmt-11.2.0/support/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcat/dsoal/HEAD/fmt-11.2.0/support/README -------------------------------------------------------------------------------- /fmt-11.2.0/support/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcat/dsoal/HEAD/fmt-11.2.0/support/Vagrantfile -------------------------------------------------------------------------------- /fmt-11.2.0/support/bazel/.bazelversion: -------------------------------------------------------------------------------- 1 | 8.1.1 2 | -------------------------------------------------------------------------------- /fmt-11.2.0/support/bazel/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcat/dsoal/HEAD/fmt-11.2.0/support/bazel/BUILD.bazel -------------------------------------------------------------------------------- /fmt-11.2.0/support/bazel/MODULE.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcat/dsoal/HEAD/fmt-11.2.0/support/bazel/MODULE.bazel -------------------------------------------------------------------------------- /fmt-11.2.0/support/bazel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcat/dsoal/HEAD/fmt-11.2.0/support/bazel/README.md -------------------------------------------------------------------------------- /fmt-11.2.0/support/bazel/WORKSPACE.bazel: -------------------------------------------------------------------------------- 1 | # WORKSPACE marker file needed by Bazel 2 | 3 | -------------------------------------------------------------------------------- /fmt-11.2.0/support/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcat/dsoal/HEAD/fmt-11.2.0/support/build.gradle -------------------------------------------------------------------------------- /fmt-11.2.0/support/check-commits: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcat/dsoal/HEAD/fmt-11.2.0/support/check-commits -------------------------------------------------------------------------------- /fmt-11.2.0/support/cmake/FindSetEnv.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcat/dsoal/HEAD/fmt-11.2.0/support/cmake/FindSetEnv.cmake -------------------------------------------------------------------------------- /fmt-11.2.0/support/cmake/JoinPaths.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcat/dsoal/HEAD/fmt-11.2.0/support/cmake/JoinPaths.cmake -------------------------------------------------------------------------------- /fmt-11.2.0/support/cmake/fmt-config.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcat/dsoal/HEAD/fmt-11.2.0/support/cmake/fmt-config.cmake.in -------------------------------------------------------------------------------- /fmt-11.2.0/support/cmake/fmt.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcat/dsoal/HEAD/fmt-11.2.0/support/cmake/fmt.pc.in -------------------------------------------------------------------------------- /fmt-11.2.0/support/docopt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcat/dsoal/HEAD/fmt-11.2.0/support/docopt.py -------------------------------------------------------------------------------- /fmt-11.2.0/support/mkdocs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcat/dsoal/HEAD/fmt-11.2.0/support/mkdocs -------------------------------------------------------------------------------- /fmt-11.2.0/support/mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcat/dsoal/HEAD/fmt-11.2.0/support/mkdocs.yml -------------------------------------------------------------------------------- /fmt-11.2.0/support/printable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcat/dsoal/HEAD/fmt-11.2.0/support/printable.py -------------------------------------------------------------------------------- /fmt-11.2.0/support/python/mkdocstrings_handlers/cxx/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcat/dsoal/HEAD/fmt-11.2.0/support/python/mkdocstrings_handlers/cxx/__init__.py -------------------------------------------------------------------------------- /fmt-11.2.0/support/python/mkdocstrings_handlers/cxx/templates/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcat/dsoal/HEAD/fmt-11.2.0/support/python/mkdocstrings_handlers/cxx/templates/README -------------------------------------------------------------------------------- /fmt-11.2.0/support/release.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcat/dsoal/HEAD/fmt-11.2.0/support/release.py -------------------------------------------------------------------------------- /mingw.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcat/dsoal/HEAD/mingw.def -------------------------------------------------------------------------------- /msvc.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcat/dsoal/HEAD/msvc.def -------------------------------------------------------------------------------- /msvc64.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcat/dsoal/HEAD/msvc64.def -------------------------------------------------------------------------------- /src/AL/al.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcat/dsoal/HEAD/src/AL/al.h -------------------------------------------------------------------------------- /src/AL/alc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcat/dsoal/HEAD/src/AL/alc.h -------------------------------------------------------------------------------- /src/AL/alext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcat/dsoal/HEAD/src/AL/alext.h -------------------------------------------------------------------------------- /src/AL/efx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcat/dsoal/HEAD/src/AL/efx.h -------------------------------------------------------------------------------- /src/buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcat/dsoal/HEAD/src/buffer.cpp -------------------------------------------------------------------------------- /src/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcat/dsoal/HEAD/src/buffer.h -------------------------------------------------------------------------------- /src/capture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcat/dsoal/HEAD/src/capture.cpp -------------------------------------------------------------------------------- /src/capture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcat/dsoal/HEAD/src/capture.h -------------------------------------------------------------------------------- /src/comhelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcat/dsoal/HEAD/src/comhelpers.h -------------------------------------------------------------------------------- /src/comptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcat/dsoal/HEAD/src/comptr.h -------------------------------------------------------------------------------- /src/dsoal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcat/dsoal/HEAD/src/dsoal.cpp -------------------------------------------------------------------------------- /src/dsoal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcat/dsoal/HEAD/src/dsoal.h -------------------------------------------------------------------------------- /src/dsoal_global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcat/dsoal/HEAD/src/dsoal_global.h -------------------------------------------------------------------------------- /src/dsoundoal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcat/dsoal/HEAD/src/dsoundoal.cpp -------------------------------------------------------------------------------- /src/dsoundoal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcat/dsoal/HEAD/src/dsoundoal.h -------------------------------------------------------------------------------- /src/eax.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcat/dsoal/HEAD/src/eax.cpp -------------------------------------------------------------------------------- /src/eax.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcat/dsoal/HEAD/src/eax.h -------------------------------------------------------------------------------- /src/enumerate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcat/dsoal/HEAD/src/enumerate.h -------------------------------------------------------------------------------- /src/expected.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcat/dsoal/HEAD/src/expected.h -------------------------------------------------------------------------------- /src/factory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcat/dsoal/HEAD/src/factory.cpp -------------------------------------------------------------------------------- /src/factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcat/dsoal/HEAD/src/factory.h -------------------------------------------------------------------------------- /src/fullduplex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcat/dsoal/HEAD/src/fullduplex.cpp -------------------------------------------------------------------------------- /src/fullduplex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcat/dsoal/HEAD/src/fullduplex.h -------------------------------------------------------------------------------- /src/guidprinter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcat/dsoal/HEAD/src/guidprinter.h -------------------------------------------------------------------------------- /src/logging.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcat/dsoal/HEAD/src/logging.cpp -------------------------------------------------------------------------------- /src/logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcat/dsoal/HEAD/src/logging.h -------------------------------------------------------------------------------- /src/primarybuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcat/dsoal/HEAD/src/primarybuffer.cpp -------------------------------------------------------------------------------- /src/primarybuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcat/dsoal/HEAD/src/primarybuffer.h -------------------------------------------------------------------------------- /src/propset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcat/dsoal/HEAD/src/propset.cpp -------------------------------------------------------------------------------- /src/propset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcat/dsoal/HEAD/src/propset.h -------------------------------------------------------------------------------- /src/vmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcat/dsoal/HEAD/src/vmanager.h -------------------------------------------------------------------------------- /version.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcat/dsoal/HEAD/version.cmake -------------------------------------------------------------------------------- /version.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcat/dsoal/HEAD/version.h.in -------------------------------------------------------------------------------- /version.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcat/dsoal/HEAD/version.rc --------------------------------------------------------------------------------