2 * Implements a sequence of frame_data structures
4 * Wireshark - Network traffic analyzer
5 * By Gerald Combs <gerald@wireshark.org>
6 * Copyright 1998 Gerald Combs
8 * SPDX-License-Identifier: GPL-2.0-or-later
11 #ifndef __FRAME_DATA_SEQUENCE_H__
12 #define __FRAME_DATA_SEQUENCE_H__
16 #endif /* __cplusplus */
18 typedef struct _frame_data_sequence frame_data_sequence
;
20 WS_DLL_PUBLIC frame_data_sequence
*new_frame_data_sequence(void);
22 WS_DLL_PUBLIC frame_data
*frame_data_sequence_add(frame_data_sequence
*fds
,
26 * Find the frame_data for the specified frame number.
28 WS_DLL_PUBLIC frame_data
*frame_data_sequence_find(frame_data_sequence
*fds
,
32 * Free a frame_data_sequence and all the frame_data structures in it.
34 WS_DLL_PUBLIC
void free_frame_data_sequence(frame_data_sequence
*fds
);
36 WS_DLL_PUBLIC
void find_and_mark_frame_depended_upon(void *key
, void *value
, void *user_data
);
41 #endif /* __cplusplus */
43 #endif /* __FRAME_DATA_SEQUENCE_H__ */