mirror of
https://github.com/gabime/spdlog.git
synced 2025-01-26 15:39:03 +08:00
restore ident format
This commit is contained in:
parent
211478e13e
commit
22f514aabf
@ -227,9 +227,10 @@ protected:
|
||||
|
||||
#ifdef SPDLOG_WCHAR_TO_UTF8_SUPPORT
|
||||
auto buf = std::wstring_convert<std::codecvt_utf8<wchar_t>>().from_bytes(formatted.data());
|
||||
LPCWSTR lp_wstr = reinterpret_cast<LPCWSTR>(buf.c_str());
|
||||
|
||||
succeeded = ::ReportEventW(event_log_handle(), eventlog::get_event_type(msg), eventlog::get_event_category(msg), event_id_,
|
||||
current_user_sid_.as_sid(), 1, 0, (LPCWSTR*)buf.c_str(), nullptr);
|
||||
current_user_sid_.as_sid(), 1, 0, &lp_wstr, nullptr);
|
||||
#else
|
||||
LPCSTR lp_str = reinterpret_cast<LPCSTR>(formatted.data());
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user