// logging.h — minimal file-based logging for leakfix.dll #pragma once namespace leakfix { void log_init(const char* path); // open log file (relative to acclient.exe dir if not absolute) void log_close(); void logf(const char* fmt, ...); // appends a timestamped line } // namespace leakfix