summaryrefslogtreecommitdiff
path: root/src/fs_win32.c
Commit message (Collapse)AuthorAgeFilesLines
* [build] ifdef _WIN32 before include fs_win32.hGlenn Strauss2023-05-041-2/+2
| | | | | | | revert previous commit adding fs_win32.h to Makefile.am hdrs ifdef _WIN32 check before include fs_win32.h so that other platforms do not have to care
* [core] _WIN32 custom fs funcs on UTF-8 pathsGlenn Strauss2023-05-031-0/+67
open(), stat(), mkdir() on UTF-8 paths lighttpd provides large file support and 64-bit time, so provide override to use _stati64() (and _wstati64()) Additionally, provide custom function to support stat on UTF-8 path, which must first be converted to wide-char and _wstati64(), since _stati64() is naive and does not properly support UTF-8.