From e73613ee24cc5211c17b16f8190726f148c52a10 Mon Sep 17 00:00:00 2001 From: "Jason A. Donenfeld" Date: Tue, 10 Nov 2020 22:06:25 +0100 Subject: api: remove return value from logger function Signed-off-by: Jason A. Donenfeld --- api/rundll32.c | 5 ++--- api/wintun.h | 4 +--- 2 files changed, 3 insertions(+), 6 deletions(-) (limited to 'api') diff --git a/api/rundll32.c b/api/rundll32.c index 1d564ae..dc47a21 100644 --- a/api/rundll32.c +++ b/api/rundll32.c @@ -39,7 +39,7 @@ WriteFormatted(_In_ DWORD StdHandle, _In_z_ const WCHAR *Template, ...) return SizeWritten / sizeof(WCHAR); } -static BOOL CALLBACK +static void CALLBACK ConsoleLogger(_In_ WINTUN_LOGGER_LEVEL Level, _In_z_ const WCHAR *LogLine) { const WCHAR *Template; @@ -55,10 +55,9 @@ ConsoleLogger(_In_ WINTUN_LOGGER_LEVEL Level, _In_z_ const WCHAR *LogLine) Template = L"[!] %1\n"; break; default: - return FALSE; + return; } WriteFormatted(STD_ERROR_HANDLE, Template, LogLine); - return TRUE; } static int Argc; diff --git a/api/wintun.h b/api/wintun.h index b5d4d02..fb649ba 100644 --- a/api/wintun.h +++ b/api/wintun.h @@ -192,10 +192,8 @@ typedef enum * @param Level Message level. * * @param Message Message text. - * - * @return Anything - return value is ignored. */ -typedef BOOL(CALLBACK *WINTUN_LOGGER_CALLBACK)(_In_ WINTUN_LOGGER_LEVEL Level, _In_z_ const WCHAR *Message); +typedef void(CALLBACK *WINTUN_LOGGER_CALLBACK)(_In_ WINTUN_LOGGER_LEVEL Level, _In_z_ const WCHAR *Message); /** * Sets logger callback function. -- cgit v1.2.3-59-g8ed1b