On server, channel dprint through the readline-device. Also some refactors and quality improvements.

This commit is contained in:
2026-01-09 14:28:58 -05:00
parent 1087d18a2e
commit 7fa3f39d72
15 changed files with 258 additions and 253 deletions

View File

@@ -354,4 +354,17 @@ std::string package_lua_source(const std::filesystem::path &base, std::ostream *
}
} // namespace drv
} // namespace drvutil
// Include the system-dependent part of drvutil.
#if defined(__linux__)
#include "drvutil-linux.cpp"
#elif defined(_WIN32)
#include "drvutil-windows.cpp"
#else
#error "Only support __linux__ or _WIN32"
#endif