mirror of
https://github.com/Pax1601/DCSOlympus.git
synced 2025-10-29 16:56:34 +00:00
8 lines
311 B
C++
8 lines
311 B
C++
#pragma once
|
|
#include "framework.h"
|
|
|
|
void DllExport setLogDirectory(std::string m_dirPath);
|
|
void DllExport log(const std::string& sMessage, bool addToJSON = false);
|
|
void DllExport log(const std::wstring& sMessage, bool addToJSON = false);
|
|
void DllExport getLogsJSON(json::value& json, unsigned long long time);
|