Wireshark  2.9.0-477-g68ec514b
The Wireshark network protocol analyzer
sttype-function.h
1 /*
2  * Wireshark - Network traffic analyzer
3  * By Gerald Combs <gerald@wireshark.org>
4  * Copyright 2001 Gerald Combs
5  *
6  *
7  * SPDX-License-Identifier: GPL-2.0-or-later
8  */
9 
10 #ifndef STTYPE_FUNCTION_H
11 #define STTYPE_FUNCTION_H
12 
13 #include "dfilter-int.h"
14 #include "dfunctions.h"
15 
16 /* Set the parameters for a function stnode_t. */
17 void
18 sttype_function_set_params(stnode_t *node, GSList *params);
19 
20 /* Get the function-definition record for a function stnode_t. */
21 df_func_def_t* sttype_function_funcdef(stnode_t *node);
22 
23 /* Get the parameters for a function stnode_t. */
24 GSList* sttype_function_params(stnode_t *node);
25 
26 /* Free the memory of a param list */
27 void st_funcparams_free(GSList *params);
28 
29 #endif
Definition: syntax-tree.h:48
Definition: dfunctions.h:30