├── .codecov.yml ├── .github └── workflows │ ├── build.yml │ ├── build_freebsd.yml │ ├── build_macos.yml │ ├── build_ossfuzz.yml │ └── build_shared.yml ├── .gitignore ├── AUTHORS ├── COPYING ├── COPYING.LESSER ├── ChangeLog ├── Makefile.am ├── NEWS ├── README ├── acinclude.m4 ├── appveyor.yml ├── autogen.ps1 ├── autogen.sh ├── common ├── Makefile.am ├── byte_stream.h ├── common.h ├── config_borlandc.h ├── config_msc.h ├── config_winapi.h ├── file_stream.h ├── memory.h ├── narrow_string.h ├── system_string.h ├── types.h.in └── wide_string.h ├── configure.ac ├── documentation └── Windows Explorer Thumbnail Cache database format.asciidoc ├── dpkg ├── changelog.in ├── compat ├── control ├── copyright ├── libwtcdb-dev.install ├── libwtcdb-tools.install ├── libwtcdb.install ├── rules └── source │ └── format ├── dtfabric.yaml ├── include ├── Makefile.am ├── libwtcdb.h.in └── libwtcdb │ ├── codepage.h │ ├── definitions.h.in │ ├── error.h │ ├── extern.h │ ├── features.h.in │ └── types.h.in ├── libwtcdb.ini ├── libwtcdb.pc.in ├── libwtcdb.spec.in ├── libwtcdb ├── Makefile.am ├── libwtcdb.c ├── libwtcdb.rc.in ├── libwtcdb_cache_entry.c ├── libwtcdb_cache_entry.h ├── libwtcdb_crc.c ├── libwtcdb_crc.h ├── libwtcdb_debug.c ├── libwtcdb_debug.h ├── libwtcdb_definitions.h.in ├── libwtcdb_error.c ├── libwtcdb_error.h ├── libwtcdb_extern.h ├── libwtcdb_file.c ├── libwtcdb_file.h ├── libwtcdb_file_header.c ├── libwtcdb_file_header.h ├── libwtcdb_index_entry.c ├── libwtcdb_index_entry.h ├── libwtcdb_io_handle.c ├── libwtcdb_io_handle.h ├── libwtcdb_item.c ├── libwtcdb_item.h ├── libwtcdb_libbfio.h ├── libwtcdb_libcdata.h ├── libwtcdb_libcerror.h ├── libwtcdb_libclocale.h ├── libwtcdb_libcnotify.h ├── libwtcdb_libfdatetime.h ├── libwtcdb_libuna.h ├── libwtcdb_notify.c ├── libwtcdb_notify.h ├── libwtcdb_support.c ├── libwtcdb_support.h ├── libwtcdb_types.h ├── libwtcdb_unused.h ├── wtcdb_cache_entry.h ├── wtcdb_file_header.h └── wtcdb_index_entry.h ├── m4 ├── common.m4 ├── libbfio.m4 ├── libcdata.m4 ├── libcerror.m4 ├── libcfile.m4 ├── libclocale.m4 ├── libcnotify.m4 ├── libcpath.m4 ├── libcsplit.m4 ├── libcthreads.m4 ├── libfdatetime.m4 ├── libuna.m4 ├── pthread.m4 ├── tests.m4 └── types.m4 ├── manuals ├── Makefile.am ├── libwtcdb.3 ├── wtcdbexport.1 └── wtcdbinfo.1 ├── msvscpp ├── Makefile.am ├── libbfio │ └── libbfio.vcproj ├── libcdata │ └── libcdata.vcproj ├── libcerror │ └── libcerror.vcproj ├── libcfile │ └── libcfile.vcproj ├── libclocale │ └── libclocale.vcproj ├── libcnotify │ └── libcnotify.vcproj ├── libcpath │ └── libcpath.vcproj ├── libcsplit │ └── libcsplit.vcproj ├── libcthreads │ └── libcthreads.vcproj ├── libfdatetime │ └── libfdatetime.vcproj ├── libuna │ └── libuna.vcproj ├── libwtcdb.sln ├── libwtcdb │ └── libwtcdb.vcproj ├── wtcdb_test_cache_entry │ └── wtcdb_test_cache_entry.vcproj ├── wtcdb_test_crc │ └── wtcdb_test_crc.vcproj ├── wtcdb_test_error │ └── wtcdb_test_error.vcproj ├── wtcdb_test_file │ └── wtcdb_test_file.vcproj ├── wtcdb_test_file_header │ └── wtcdb_test_file_header.vcproj ├── wtcdb_test_index_entry │ └── wtcdb_test_index_entry.vcproj ├── wtcdb_test_io_handle │ └── wtcdb_test_io_handle.vcproj ├── wtcdb_test_item │ └── wtcdb_test_item.vcproj ├── wtcdb_test_notify │ └── wtcdb_test_notify.vcproj ├── wtcdb_test_support │ └── wtcdb_test_support.vcproj ├── wtcdbexport │ └── wtcdbexport.vcproj └── wtcdbinfo │ └── wtcdbinfo.vcproj ├── ossfuzz ├── Makefile.am ├── file_fuzzer.cc ├── ossfuzz_libbfio.h └── ossfuzz_libwtcdb.h ├── po ├── ChangeLog ├── Makevars.in └── POTFILES.in ├── runtests.ps1 ├── runtests.sh ├── synclibs.ps1 ├── synclibs.sh ├── tests ├── Makefile.am ├── build.sh ├── data │ ├── cache_entry.1 │ ├── cache_entry.2 │ ├── file_header.1 │ ├── file_header.2 │ ├── index_entry.1 │ └── index_entry.2 ├── lsan.suppressions ├── pkgbuild.sh ├── runtests.sh ├── syncsharedlibs.sh ├── test_library.ps1 ├── test_library.sh ├── test_manpage.sh ├── test_runner.sh ├── test_wtcdbexport.sh ├── test_wtcdbinfo.ps1 ├── test_wtcdbinfo.sh ├── wtcdb_test_cache_entry.c ├── wtcdb_test_crc.c ├── wtcdb_test_error.c ├── wtcdb_test_file.c ├── wtcdb_test_file_header.c ├── wtcdb_test_functions.c ├── wtcdb_test_functions.h ├── wtcdb_test_getopt.c ├── wtcdb_test_getopt.h ├── wtcdb_test_index_entry.c ├── wtcdb_test_io_handle.c ├── wtcdb_test_item.c ├── wtcdb_test_item_value.c ├── wtcdb_test_libbfio.h ├── wtcdb_test_libcerror.h ├── wtcdb_test_libclocale.h ├── wtcdb_test_libcnotify.h ├── wtcdb_test_libuna.h ├── wtcdb_test_libwtcdb.h ├── wtcdb_test_macros.h ├── wtcdb_test_memory.c ├── wtcdb_test_memory.h ├── wtcdb_test_notify.c ├── wtcdb_test_support.c └── wtcdb_test_unused.h └── wtcdbtools ├── Makefile.am ├── export_handle.c ├── export_handle.h ├── info_handle.c ├── info_handle.h ├── log_handle.c ├── log_handle.h ├── wtcdbexport.c ├── wtcdbinfo.c ├── wtcdbinput.c ├── wtcdbinput.h ├── wtcdbtools_getopt.c ├── wtcdbtools_getopt.h ├── wtcdbtools_i18n.h ├── wtcdbtools_libbfio.h ├── wtcdbtools_libcerror.h ├── wtcdbtools_libcfile.h ├── wtcdbtools_libclocale.h ├── wtcdbtools_libcnotify.h ├── wtcdbtools_libcpath.h ├── wtcdbtools_libfdatetime.h ├── wtcdbtools_libuna.h ├── wtcdbtools_libwtcdb.h ├── wtcdbtools_output.c ├── wtcdbtools_output.h ├── wtcdbtools_signal.c ├── wtcdbtools_signal.h └── wtcdbtools_unused.h /.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/.codecov.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/build_freebsd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/.github/workflows/build_freebsd.yml -------------------------------------------------------------------------------- /.github/workflows/build_macos.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/.github/workflows/build_macos.yml -------------------------------------------------------------------------------- /.github/workflows/build_ossfuzz.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/.github/workflows/build_ossfuzz.yml -------------------------------------------------------------------------------- /.github/workflows/build_shared.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/.github/workflows/build_shared.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/AUTHORS -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/COPYING -------------------------------------------------------------------------------- /COPYING.LESSER: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/COPYING.LESSER -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/ChangeLog -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/Makefile.am -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/README -------------------------------------------------------------------------------- /acinclude.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/acinclude.m4 -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/appveyor.yml -------------------------------------------------------------------------------- /autogen.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/autogen.ps1 -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/autogen.sh -------------------------------------------------------------------------------- /common/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/common/Makefile.am -------------------------------------------------------------------------------- /common/byte_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/common/byte_stream.h -------------------------------------------------------------------------------- /common/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/common/common.h -------------------------------------------------------------------------------- /common/config_borlandc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/common/config_borlandc.h -------------------------------------------------------------------------------- /common/config_msc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/common/config_msc.h -------------------------------------------------------------------------------- /common/config_winapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/common/config_winapi.h -------------------------------------------------------------------------------- /common/file_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/common/file_stream.h -------------------------------------------------------------------------------- /common/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/common/memory.h -------------------------------------------------------------------------------- /common/narrow_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/common/narrow_string.h -------------------------------------------------------------------------------- /common/system_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/common/system_string.h -------------------------------------------------------------------------------- /common/types.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/common/types.h.in -------------------------------------------------------------------------------- /common/wide_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/common/wide_string.h -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/configure.ac -------------------------------------------------------------------------------- /documentation/Windows Explorer Thumbnail Cache database format.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/documentation/Windows Explorer Thumbnail Cache database format.asciidoc -------------------------------------------------------------------------------- /dpkg/changelog.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/dpkg/changelog.in -------------------------------------------------------------------------------- /dpkg/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /dpkg/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/dpkg/control -------------------------------------------------------------------------------- /dpkg/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/dpkg/copyright -------------------------------------------------------------------------------- /dpkg/libwtcdb-dev.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/dpkg/libwtcdb-dev.install -------------------------------------------------------------------------------- /dpkg/libwtcdb-tools.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/dpkg/libwtcdb-tools.install -------------------------------------------------------------------------------- /dpkg/libwtcdb.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/dpkg/libwtcdb.install -------------------------------------------------------------------------------- /dpkg/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/dpkg/rules -------------------------------------------------------------------------------- /dpkg/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /dtfabric.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/dtfabric.yaml -------------------------------------------------------------------------------- /include/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/include/Makefile.am -------------------------------------------------------------------------------- /include/libwtcdb.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/include/libwtcdb.h.in -------------------------------------------------------------------------------- /include/libwtcdb/codepage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/include/libwtcdb/codepage.h -------------------------------------------------------------------------------- /include/libwtcdb/definitions.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/include/libwtcdb/definitions.h.in -------------------------------------------------------------------------------- /include/libwtcdb/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/include/libwtcdb/error.h -------------------------------------------------------------------------------- /include/libwtcdb/extern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/include/libwtcdb/extern.h -------------------------------------------------------------------------------- /include/libwtcdb/features.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/include/libwtcdb/features.h.in -------------------------------------------------------------------------------- /include/libwtcdb/types.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/include/libwtcdb/types.h.in -------------------------------------------------------------------------------- /libwtcdb.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/libwtcdb.ini -------------------------------------------------------------------------------- /libwtcdb.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/libwtcdb.pc.in -------------------------------------------------------------------------------- /libwtcdb.spec.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/libwtcdb.spec.in -------------------------------------------------------------------------------- /libwtcdb/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/libwtcdb/Makefile.am -------------------------------------------------------------------------------- /libwtcdb/libwtcdb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/libwtcdb/libwtcdb.c -------------------------------------------------------------------------------- /libwtcdb/libwtcdb.rc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/libwtcdb/libwtcdb.rc.in -------------------------------------------------------------------------------- /libwtcdb/libwtcdb_cache_entry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/libwtcdb/libwtcdb_cache_entry.c -------------------------------------------------------------------------------- /libwtcdb/libwtcdb_cache_entry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/libwtcdb/libwtcdb_cache_entry.h -------------------------------------------------------------------------------- /libwtcdb/libwtcdb_crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/libwtcdb/libwtcdb_crc.c -------------------------------------------------------------------------------- /libwtcdb/libwtcdb_crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/libwtcdb/libwtcdb_crc.h -------------------------------------------------------------------------------- /libwtcdb/libwtcdb_debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/libwtcdb/libwtcdb_debug.c -------------------------------------------------------------------------------- /libwtcdb/libwtcdb_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/libwtcdb/libwtcdb_debug.h -------------------------------------------------------------------------------- /libwtcdb/libwtcdb_definitions.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/libwtcdb/libwtcdb_definitions.h.in -------------------------------------------------------------------------------- /libwtcdb/libwtcdb_error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/libwtcdb/libwtcdb_error.c -------------------------------------------------------------------------------- /libwtcdb/libwtcdb_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/libwtcdb/libwtcdb_error.h -------------------------------------------------------------------------------- /libwtcdb/libwtcdb_extern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/libwtcdb/libwtcdb_extern.h -------------------------------------------------------------------------------- /libwtcdb/libwtcdb_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/libwtcdb/libwtcdb_file.c -------------------------------------------------------------------------------- /libwtcdb/libwtcdb_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/libwtcdb/libwtcdb_file.h -------------------------------------------------------------------------------- /libwtcdb/libwtcdb_file_header.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/libwtcdb/libwtcdb_file_header.c -------------------------------------------------------------------------------- /libwtcdb/libwtcdb_file_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/libwtcdb/libwtcdb_file_header.h -------------------------------------------------------------------------------- /libwtcdb/libwtcdb_index_entry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/libwtcdb/libwtcdb_index_entry.c -------------------------------------------------------------------------------- /libwtcdb/libwtcdb_index_entry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/libwtcdb/libwtcdb_index_entry.h -------------------------------------------------------------------------------- /libwtcdb/libwtcdb_io_handle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/libwtcdb/libwtcdb_io_handle.c -------------------------------------------------------------------------------- /libwtcdb/libwtcdb_io_handle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/libwtcdb/libwtcdb_io_handle.h -------------------------------------------------------------------------------- /libwtcdb/libwtcdb_item.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/libwtcdb/libwtcdb_item.c -------------------------------------------------------------------------------- /libwtcdb/libwtcdb_item.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/libwtcdb/libwtcdb_item.h -------------------------------------------------------------------------------- /libwtcdb/libwtcdb_libbfio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/libwtcdb/libwtcdb_libbfio.h -------------------------------------------------------------------------------- /libwtcdb/libwtcdb_libcdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/libwtcdb/libwtcdb_libcdata.h -------------------------------------------------------------------------------- /libwtcdb/libwtcdb_libcerror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/libwtcdb/libwtcdb_libcerror.h -------------------------------------------------------------------------------- /libwtcdb/libwtcdb_libclocale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/libwtcdb/libwtcdb_libclocale.h -------------------------------------------------------------------------------- /libwtcdb/libwtcdb_libcnotify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/libwtcdb/libwtcdb_libcnotify.h -------------------------------------------------------------------------------- /libwtcdb/libwtcdb_libfdatetime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/libwtcdb/libwtcdb_libfdatetime.h -------------------------------------------------------------------------------- /libwtcdb/libwtcdb_libuna.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/libwtcdb/libwtcdb_libuna.h -------------------------------------------------------------------------------- /libwtcdb/libwtcdb_notify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/libwtcdb/libwtcdb_notify.c -------------------------------------------------------------------------------- /libwtcdb/libwtcdb_notify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/libwtcdb/libwtcdb_notify.h -------------------------------------------------------------------------------- /libwtcdb/libwtcdb_support.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/libwtcdb/libwtcdb_support.c -------------------------------------------------------------------------------- /libwtcdb/libwtcdb_support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/libwtcdb/libwtcdb_support.h -------------------------------------------------------------------------------- /libwtcdb/libwtcdb_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/libwtcdb/libwtcdb_types.h -------------------------------------------------------------------------------- /libwtcdb/libwtcdb_unused.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/libwtcdb/libwtcdb_unused.h -------------------------------------------------------------------------------- /libwtcdb/wtcdb_cache_entry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/libwtcdb/wtcdb_cache_entry.h -------------------------------------------------------------------------------- /libwtcdb/wtcdb_file_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/libwtcdb/wtcdb_file_header.h -------------------------------------------------------------------------------- /libwtcdb/wtcdb_index_entry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/libwtcdb/wtcdb_index_entry.h -------------------------------------------------------------------------------- /m4/common.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/m4/common.m4 -------------------------------------------------------------------------------- /m4/libbfio.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/m4/libbfio.m4 -------------------------------------------------------------------------------- /m4/libcdata.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/m4/libcdata.m4 -------------------------------------------------------------------------------- /m4/libcerror.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/m4/libcerror.m4 -------------------------------------------------------------------------------- /m4/libcfile.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/m4/libcfile.m4 -------------------------------------------------------------------------------- /m4/libclocale.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/m4/libclocale.m4 -------------------------------------------------------------------------------- /m4/libcnotify.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/m4/libcnotify.m4 -------------------------------------------------------------------------------- /m4/libcpath.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/m4/libcpath.m4 -------------------------------------------------------------------------------- /m4/libcsplit.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/m4/libcsplit.m4 -------------------------------------------------------------------------------- /m4/libcthreads.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/m4/libcthreads.m4 -------------------------------------------------------------------------------- /m4/libfdatetime.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/m4/libfdatetime.m4 -------------------------------------------------------------------------------- /m4/libuna.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/m4/libuna.m4 -------------------------------------------------------------------------------- /m4/pthread.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/m4/pthread.m4 -------------------------------------------------------------------------------- /m4/tests.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/m4/tests.m4 -------------------------------------------------------------------------------- /m4/types.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/m4/types.m4 -------------------------------------------------------------------------------- /manuals/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/manuals/Makefile.am -------------------------------------------------------------------------------- /manuals/libwtcdb.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/manuals/libwtcdb.3 -------------------------------------------------------------------------------- /manuals/wtcdbexport.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/manuals/wtcdbexport.1 -------------------------------------------------------------------------------- /manuals/wtcdbinfo.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/manuals/wtcdbinfo.1 -------------------------------------------------------------------------------- /msvscpp/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/msvscpp/Makefile.am -------------------------------------------------------------------------------- /msvscpp/libbfio/libbfio.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/msvscpp/libbfio/libbfio.vcproj -------------------------------------------------------------------------------- /msvscpp/libcdata/libcdata.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/msvscpp/libcdata/libcdata.vcproj -------------------------------------------------------------------------------- /msvscpp/libcerror/libcerror.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/msvscpp/libcerror/libcerror.vcproj -------------------------------------------------------------------------------- /msvscpp/libcfile/libcfile.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/msvscpp/libcfile/libcfile.vcproj -------------------------------------------------------------------------------- /msvscpp/libclocale/libclocale.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/msvscpp/libclocale/libclocale.vcproj -------------------------------------------------------------------------------- /msvscpp/libcnotify/libcnotify.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/msvscpp/libcnotify/libcnotify.vcproj -------------------------------------------------------------------------------- /msvscpp/libcpath/libcpath.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/msvscpp/libcpath/libcpath.vcproj -------------------------------------------------------------------------------- /msvscpp/libcsplit/libcsplit.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/msvscpp/libcsplit/libcsplit.vcproj -------------------------------------------------------------------------------- /msvscpp/libcthreads/libcthreads.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/msvscpp/libcthreads/libcthreads.vcproj -------------------------------------------------------------------------------- /msvscpp/libfdatetime/libfdatetime.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/msvscpp/libfdatetime/libfdatetime.vcproj -------------------------------------------------------------------------------- /msvscpp/libuna/libuna.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/msvscpp/libuna/libuna.vcproj -------------------------------------------------------------------------------- /msvscpp/libwtcdb.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/msvscpp/libwtcdb.sln -------------------------------------------------------------------------------- /msvscpp/libwtcdb/libwtcdb.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/msvscpp/libwtcdb/libwtcdb.vcproj -------------------------------------------------------------------------------- /msvscpp/wtcdb_test_cache_entry/wtcdb_test_cache_entry.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/msvscpp/wtcdb_test_cache_entry/wtcdb_test_cache_entry.vcproj -------------------------------------------------------------------------------- /msvscpp/wtcdb_test_crc/wtcdb_test_crc.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/msvscpp/wtcdb_test_crc/wtcdb_test_crc.vcproj -------------------------------------------------------------------------------- /msvscpp/wtcdb_test_error/wtcdb_test_error.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/msvscpp/wtcdb_test_error/wtcdb_test_error.vcproj -------------------------------------------------------------------------------- /msvscpp/wtcdb_test_file/wtcdb_test_file.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/msvscpp/wtcdb_test_file/wtcdb_test_file.vcproj -------------------------------------------------------------------------------- /msvscpp/wtcdb_test_file_header/wtcdb_test_file_header.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/msvscpp/wtcdb_test_file_header/wtcdb_test_file_header.vcproj -------------------------------------------------------------------------------- /msvscpp/wtcdb_test_index_entry/wtcdb_test_index_entry.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/msvscpp/wtcdb_test_index_entry/wtcdb_test_index_entry.vcproj -------------------------------------------------------------------------------- /msvscpp/wtcdb_test_io_handle/wtcdb_test_io_handle.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/msvscpp/wtcdb_test_io_handle/wtcdb_test_io_handle.vcproj -------------------------------------------------------------------------------- /msvscpp/wtcdb_test_item/wtcdb_test_item.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/msvscpp/wtcdb_test_item/wtcdb_test_item.vcproj -------------------------------------------------------------------------------- /msvscpp/wtcdb_test_notify/wtcdb_test_notify.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/msvscpp/wtcdb_test_notify/wtcdb_test_notify.vcproj -------------------------------------------------------------------------------- /msvscpp/wtcdb_test_support/wtcdb_test_support.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/msvscpp/wtcdb_test_support/wtcdb_test_support.vcproj -------------------------------------------------------------------------------- /msvscpp/wtcdbexport/wtcdbexport.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/msvscpp/wtcdbexport/wtcdbexport.vcproj -------------------------------------------------------------------------------- /msvscpp/wtcdbinfo/wtcdbinfo.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/msvscpp/wtcdbinfo/wtcdbinfo.vcproj -------------------------------------------------------------------------------- /ossfuzz/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/ossfuzz/Makefile.am -------------------------------------------------------------------------------- /ossfuzz/file_fuzzer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/ossfuzz/file_fuzzer.cc -------------------------------------------------------------------------------- /ossfuzz/ossfuzz_libbfio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/ossfuzz/ossfuzz_libbfio.h -------------------------------------------------------------------------------- /ossfuzz/ossfuzz_libwtcdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/ossfuzz/ossfuzz_libwtcdb.h -------------------------------------------------------------------------------- /po/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/po/ChangeLog -------------------------------------------------------------------------------- /po/Makevars.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/po/Makevars.in -------------------------------------------------------------------------------- /po/POTFILES.in: -------------------------------------------------------------------------------- 1 | # List of source files which contain translatable strings. 2 | -------------------------------------------------------------------------------- /runtests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/runtests.ps1 -------------------------------------------------------------------------------- /runtests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/runtests.sh -------------------------------------------------------------------------------- /synclibs.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/synclibs.ps1 -------------------------------------------------------------------------------- /synclibs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/synclibs.sh -------------------------------------------------------------------------------- /tests/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/tests/Makefile.am -------------------------------------------------------------------------------- /tests/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/tests/build.sh -------------------------------------------------------------------------------- /tests/data/cache_entry.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/tests/data/cache_entry.1 -------------------------------------------------------------------------------- /tests/data/cache_entry.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/tests/data/cache_entry.2 -------------------------------------------------------------------------------- /tests/data/file_header.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/tests/data/file_header.1 -------------------------------------------------------------------------------- /tests/data/file_header.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/tests/data/file_header.2 -------------------------------------------------------------------------------- /tests/data/index_entry.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/tests/data/index_entry.1 -------------------------------------------------------------------------------- /tests/data/index_entry.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/tests/data/index_entry.2 -------------------------------------------------------------------------------- /tests/lsan.suppressions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/tests/lsan.suppressions -------------------------------------------------------------------------------- /tests/pkgbuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/tests/pkgbuild.sh -------------------------------------------------------------------------------- /tests/runtests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/tests/runtests.sh -------------------------------------------------------------------------------- /tests/syncsharedlibs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/tests/syncsharedlibs.sh -------------------------------------------------------------------------------- /tests/test_library.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/tests/test_library.ps1 -------------------------------------------------------------------------------- /tests/test_library.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/tests/test_library.sh -------------------------------------------------------------------------------- /tests/test_manpage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/tests/test_manpage.sh -------------------------------------------------------------------------------- /tests/test_runner.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/tests/test_runner.sh -------------------------------------------------------------------------------- /tests/test_wtcdbexport.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/tests/test_wtcdbexport.sh -------------------------------------------------------------------------------- /tests/test_wtcdbinfo.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/tests/test_wtcdbinfo.ps1 -------------------------------------------------------------------------------- /tests/test_wtcdbinfo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/tests/test_wtcdbinfo.sh -------------------------------------------------------------------------------- /tests/wtcdb_test_cache_entry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/tests/wtcdb_test_cache_entry.c -------------------------------------------------------------------------------- /tests/wtcdb_test_crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/tests/wtcdb_test_crc.c -------------------------------------------------------------------------------- /tests/wtcdb_test_error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/tests/wtcdb_test_error.c -------------------------------------------------------------------------------- /tests/wtcdb_test_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/tests/wtcdb_test_file.c -------------------------------------------------------------------------------- /tests/wtcdb_test_file_header.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/tests/wtcdb_test_file_header.c -------------------------------------------------------------------------------- /tests/wtcdb_test_functions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/tests/wtcdb_test_functions.c -------------------------------------------------------------------------------- /tests/wtcdb_test_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/tests/wtcdb_test_functions.h -------------------------------------------------------------------------------- /tests/wtcdb_test_getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/tests/wtcdb_test_getopt.c -------------------------------------------------------------------------------- /tests/wtcdb_test_getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/tests/wtcdb_test_getopt.h -------------------------------------------------------------------------------- /tests/wtcdb_test_index_entry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/tests/wtcdb_test_index_entry.c -------------------------------------------------------------------------------- /tests/wtcdb_test_io_handle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/tests/wtcdb_test_io_handle.c -------------------------------------------------------------------------------- /tests/wtcdb_test_item.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/tests/wtcdb_test_item.c -------------------------------------------------------------------------------- /tests/wtcdb_test_item_value.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/tests/wtcdb_test_item_value.c -------------------------------------------------------------------------------- /tests/wtcdb_test_libbfio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/tests/wtcdb_test_libbfio.h -------------------------------------------------------------------------------- /tests/wtcdb_test_libcerror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/tests/wtcdb_test_libcerror.h -------------------------------------------------------------------------------- /tests/wtcdb_test_libclocale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/tests/wtcdb_test_libclocale.h -------------------------------------------------------------------------------- /tests/wtcdb_test_libcnotify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/tests/wtcdb_test_libcnotify.h -------------------------------------------------------------------------------- /tests/wtcdb_test_libuna.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/tests/wtcdb_test_libuna.h -------------------------------------------------------------------------------- /tests/wtcdb_test_libwtcdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/tests/wtcdb_test_libwtcdb.h -------------------------------------------------------------------------------- /tests/wtcdb_test_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/tests/wtcdb_test_macros.h -------------------------------------------------------------------------------- /tests/wtcdb_test_memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/tests/wtcdb_test_memory.c -------------------------------------------------------------------------------- /tests/wtcdb_test_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/tests/wtcdb_test_memory.h -------------------------------------------------------------------------------- /tests/wtcdb_test_notify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/tests/wtcdb_test_notify.c -------------------------------------------------------------------------------- /tests/wtcdb_test_support.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/tests/wtcdb_test_support.c -------------------------------------------------------------------------------- /tests/wtcdb_test_unused.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/tests/wtcdb_test_unused.h -------------------------------------------------------------------------------- /wtcdbtools/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/wtcdbtools/Makefile.am -------------------------------------------------------------------------------- /wtcdbtools/export_handle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/wtcdbtools/export_handle.c -------------------------------------------------------------------------------- /wtcdbtools/export_handle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/wtcdbtools/export_handle.h -------------------------------------------------------------------------------- /wtcdbtools/info_handle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/wtcdbtools/info_handle.c -------------------------------------------------------------------------------- /wtcdbtools/info_handle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/wtcdbtools/info_handle.h -------------------------------------------------------------------------------- /wtcdbtools/log_handle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/wtcdbtools/log_handle.c -------------------------------------------------------------------------------- /wtcdbtools/log_handle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/wtcdbtools/log_handle.h -------------------------------------------------------------------------------- /wtcdbtools/wtcdbexport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/wtcdbtools/wtcdbexport.c -------------------------------------------------------------------------------- /wtcdbtools/wtcdbinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/wtcdbtools/wtcdbinfo.c -------------------------------------------------------------------------------- /wtcdbtools/wtcdbinput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/wtcdbtools/wtcdbinput.c -------------------------------------------------------------------------------- /wtcdbtools/wtcdbinput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/wtcdbtools/wtcdbinput.h -------------------------------------------------------------------------------- /wtcdbtools/wtcdbtools_getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/wtcdbtools/wtcdbtools_getopt.c -------------------------------------------------------------------------------- /wtcdbtools/wtcdbtools_getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/wtcdbtools/wtcdbtools_getopt.h -------------------------------------------------------------------------------- /wtcdbtools/wtcdbtools_i18n.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/wtcdbtools/wtcdbtools_i18n.h -------------------------------------------------------------------------------- /wtcdbtools/wtcdbtools_libbfio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/wtcdbtools/wtcdbtools_libbfio.h -------------------------------------------------------------------------------- /wtcdbtools/wtcdbtools_libcerror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/wtcdbtools/wtcdbtools_libcerror.h -------------------------------------------------------------------------------- /wtcdbtools/wtcdbtools_libcfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/wtcdbtools/wtcdbtools_libcfile.h -------------------------------------------------------------------------------- /wtcdbtools/wtcdbtools_libclocale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/wtcdbtools/wtcdbtools_libclocale.h -------------------------------------------------------------------------------- /wtcdbtools/wtcdbtools_libcnotify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/wtcdbtools/wtcdbtools_libcnotify.h -------------------------------------------------------------------------------- /wtcdbtools/wtcdbtools_libcpath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/wtcdbtools/wtcdbtools_libcpath.h -------------------------------------------------------------------------------- /wtcdbtools/wtcdbtools_libfdatetime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/wtcdbtools/wtcdbtools_libfdatetime.h -------------------------------------------------------------------------------- /wtcdbtools/wtcdbtools_libuna.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/wtcdbtools/wtcdbtools_libuna.h -------------------------------------------------------------------------------- /wtcdbtools/wtcdbtools_libwtcdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/wtcdbtools/wtcdbtools_libwtcdb.h -------------------------------------------------------------------------------- /wtcdbtools/wtcdbtools_output.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/wtcdbtools/wtcdbtools_output.c -------------------------------------------------------------------------------- /wtcdbtools/wtcdbtools_output.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/wtcdbtools/wtcdbtools_output.h -------------------------------------------------------------------------------- /wtcdbtools/wtcdbtools_signal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/wtcdbtools/wtcdbtools_signal.c -------------------------------------------------------------------------------- /wtcdbtools/wtcdbtools_signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/wtcdbtools/wtcdbtools_signal.h -------------------------------------------------------------------------------- /wtcdbtools/wtcdbtools_unused.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libwtcdb/HEAD/wtcdbtools/wtcdbtools_unused.h --------------------------------------------------------------------------------