dfa53185d0
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
34 lines
835 B
C
34 lines
835 B
C
/* SPDX-License-Identifier: GPL-2.0
|
|
*
|
|
* Copyright (C) 2018-2020 WireGuard LLC. All Rights Reserved.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "wintun.h"
|
|
#include <Windows.h>
|
|
|
|
extern WINTUN_LOGGER_CALLBACK_FUNC Logger;
|
|
|
|
/**
|
|
* @copydoc WINTUN_SET_LOGGER_FUNC
|
|
*/
|
|
void WINAPI
|
|
WintunSetLogger(_In_ WINTUN_LOGGER_CALLBACK_FUNC NewLogger);
|
|
|
|
_Post_equals_last_error_ DWORD
|
|
LoggerError(_In_z_ const WCHAR *Prefix, _In_ DWORD Error);
|
|
|
|
static inline _Post_equals_last_error_ DWORD
|
|
LoggerLastError(_In_z_ const WCHAR *Prefix)
|
|
{
|
|
DWORD Error = GetLastError();
|
|
LoggerError(Prefix, Error);
|
|
SetLastError(Error);
|
|
return Error;
|
|
}
|
|
|
|
#define LOG(lvl, msg) (Logger((lvl), _L(__FUNCTION__) L": " msg))
|
|
#define LOG_ERROR(msg, err) (LoggerError(_L(__FUNCTION__) L": " msg, (err)))
|
|
#define LOG_LAST_ERROR(msg) (LoggerLastError(_L(__FUNCTION__) L": " msg))
|