3 * Various decompression routines used by RDP
5 * Copyright (c) 2021 by David Fort <contact@hardening-consulting.com>
7 * Wireshark - Network traffic analyzer
8 * By Gerald Combs <gerald@wireshark.org>
9 * Copyright 1998 Gerald Combs
11 * SPDX-License-Identifier: GPL-2.0-or-later
14 #ifndef __TVBUFF_RDP_H__
15 #define __TVBUFF_RDP_H__
17 #include <epan/wmem_scopes.h>
18 #include <epan/tvbuff.h>
20 typedef struct _zgfx_context_t zgfx_context_t
;
22 zgfx_context_t
*zgfx_context_new(wmem_allocator_t
*allocator
);
24 tvbuff_t
*rdp8_decompress(zgfx_context_t
*zgfx
, wmem_allocator_t
*allocator
, tvbuff_t
*tvb
, unsigned offset
);
27 #endif /* __TVBUFF_RDP_H__ */