├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── LICENSE ├── README.md ├── appveyor.yml ├── cmake └── SetCompilerLinkerFlags.cmake ├── data ├── file.png ├── filelogo.ico ├── filelogo.jpg └── magic.mgc ├── file-version.h.in ├── file.rc ├── magic-mgc-rc.h ├── pcre2posix.h └── win-headers ├── config.h ├── magic.def └── unistd.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkitover/file-windows/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkitover/file-windows/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkitover/file-windows/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkitover/file-windows/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkitover/file-windows/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkitover/file-windows/HEAD/appveyor.yml -------------------------------------------------------------------------------- /cmake/SetCompilerLinkerFlags.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkitover/file-windows/HEAD/cmake/SetCompilerLinkerFlags.cmake -------------------------------------------------------------------------------- /data/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkitover/file-windows/HEAD/data/file.png -------------------------------------------------------------------------------- /data/filelogo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkitover/file-windows/HEAD/data/filelogo.ico -------------------------------------------------------------------------------- /data/filelogo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkitover/file-windows/HEAD/data/filelogo.jpg -------------------------------------------------------------------------------- /data/magic.mgc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkitover/file-windows/HEAD/data/magic.mgc -------------------------------------------------------------------------------- /file-version.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkitover/file-windows/HEAD/file-version.h.in -------------------------------------------------------------------------------- /file.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkitover/file-windows/HEAD/file.rc -------------------------------------------------------------------------------- /magic-mgc-rc.h: -------------------------------------------------------------------------------- 1 | #define MAGIC_MGC_RC 300 2 | -------------------------------------------------------------------------------- /pcre2posix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkitover/file-windows/HEAD/pcre2posix.h -------------------------------------------------------------------------------- /win-headers/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkitover/file-windows/HEAD/win-headers/config.h -------------------------------------------------------------------------------- /win-headers/magic.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkitover/file-windows/HEAD/win-headers/magic.def -------------------------------------------------------------------------------- /win-headers/unistd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkitover/file-windows/HEAD/win-headers/unistd.h --------------------------------------------------------------------------------