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.
This commit is contained in:
João Valverde 2021-10-16 16:02:37 +01:00 committed by Wireshark GitLab Utility
parent 59c082c046
commit 916b3ee06e
2 changed files with 4 additions and 1 deletions

View File

@ -40,7 +40,8 @@
#define OUTSIDE_SPEEX 1
#define RANDOM_PREFIX ws_codec
#include "ws_symbol_export.h"
#include <ws_symbol_export.h>
#include <ws_diag_control.h>
#define EXPORT
#ifdef OUTSIDE_SPEEX

View File

@ -44,7 +44,9 @@
#include <ws_symbol_export.h>
#include <ws_version.h>
#include <wsutil/wmem/wmem.h>
#include <wsutil/ws_assert.h>
#include <wsutil/wslog.h>
#endif /* __WIRESHARK_H__ */