From 49f0ca53395ffa9e4dcc64567622be67be075691 Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Mon, 9 Sep 2024 21:49:05 +0200 Subject: [PATCH] Add missing function ptr prototypes. --- profiler/src/HttpRequest.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/profiler/src/HttpRequest.cpp b/profiler/src/HttpRequest.cpp index 340f637d..2cac2ff6 100644 --- a/profiler/src/HttpRequest.cpp +++ b/profiler/src/HttpRequest.cpp @@ -11,6 +11,8 @@ #if defined _WIN32 # include extern "C" typedef LONG (WINAPI *t_RtlGetVersion)( PRTL_OSVERSIONINFOW ); +extern "C" typedef char* (WINAPI *t_WineGetVersion)(); +extern "C" typedef char* (WINAPI *t_WineGetBuildId)(); #elif defined __linux__ # include #elif defined __APPLE__