epan/dissectors/pidl/ C99 drsuapi
[wireshark-sm.git] / epan / dissectors / file-rbm.h
blob5869fe7da3f2a454a83da695676ba8f622e66140
1 /* file-ruby_marshal.h
3 * Wireshark - Network traffic analyzer
4 * By Gerald Combs <gerald@wireshark.org>
5 * Copyright 1998 Gerald Combs
7 * SPDX-License-Identifier: GPL-2.0-or-later
8 */
11 #ifndef __FILE_RBM_H__
12 #define __FILE_RBM_H__
14 // Dissect one ruby marshal object
15 void dissect_rbm_inline(tvbuff_t* tvb, packet_info* pinfo, proto_tree* tree, unsigned* offset, char** type, char** value);
17 // Extract a ruby marshal integer
18 void get_rbm_integer(tvbuff_t* tvb, unsigned offset, int32_t* value, int* len);
20 #endif