From 916b3ee06e5e29c2c26f28d35627a361daaa7beb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Valverde?= Date: Sat, 16 Oct 2021 16:02:37 +0100 Subject: [PATCH] Add wslog.h to wireshark.h wslog has a small surface, few dependencies and is near essential for Wireshark development and debugging. Pulling wmem.h is not a problem either, the library is self contained and again memory allocation and general data structures are essential components. --- speexdsp/speex_resampler.h | 3 ++- wireshark.h | 2 ++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/speexdsp/speex_resampler.h b/speexdsp/speex_resampler.h index 57dbd526b0..75e7658086 100644 --- a/speexdsp/speex_resampler.h +++ b/speexdsp/speex_resampler.h @@ -40,7 +40,8 @@ #define OUTSIDE_SPEEX 1 #define RANDOM_PREFIX ws_codec -#include "ws_symbol_export.h" +#include +#include #define EXPORT #ifdef OUTSIDE_SPEEX diff --git a/wireshark.h b/wireshark.h index 154e90de5d..3bf40cdb39 100644 --- a/wireshark.h +++ b/wireshark.h @@ -44,7 +44,9 @@ #include #include +#include #include +#include #endif /* __WIRESHARK_H__ */