drsuapi_SupportedExtensionsExt
[wireshark-sm.git] / epan / frame_data_sequence.h
blob58a0e0cc322fb17714ff299b5711d7ba5213773c
1 /** @file
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
9 */
11 #ifndef __FRAME_DATA_SEQUENCE_H__
12 #define __FRAME_DATA_SEQUENCE_H__
14 #ifdef __cplusplus
15 extern "C" {
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,
23 frame_data *fdata);
26 * Find the frame_data for the specified frame number.
28 WS_DLL_PUBLIC frame_data *frame_data_sequence_find(frame_data_sequence *fds,
29 uint32_t num);
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);
39 #ifdef __cplusplus
41 #endif /* __cplusplus */
43 #endif /* __FRAME_DATA_SEQUENCE_H__ */