Wireshark  2.9.0-477-g68ec514b
The Wireshark network protocol analyzer
wmem_user_cb_int.h
1 /* wmem_user_cb_int.h
2  * Definitions for the Wireshark Memory Manager User Callback Internals
3  * Copyright 2012, Evan Huus <eapache@gmail.com>
4  *
5  * Wireshark - Network traffic analyzer
6  * By Gerald Combs <gerald@wireshark.org>
7  * Copyright 1998 Gerald Combs
8  *
9  * SPDX-License-Identifier: GPL-2.0-or-later
10  */
11 
12 #ifndef __WMEM_USER_CB_INT_H__
13 #define __WMEM_USER_CB_INT_H__
14 
15 #ifdef __cplusplus
16 extern "C" {
17 #endif /* __cplusplus */
18 
19 #include <glib.h>
20 #include "wmem_user_cb.h"
21 
22 WS_DLL_LOCAL
23 void
24 wmem_call_callbacks(wmem_allocator_t *allocator, wmem_cb_event_t event);
25 
26 #ifdef __cplusplus
27 }
28 #endif /* __cplusplus */
29 
30 #endif /* __WMEM_USER_CB_INT_H__ */
31 
32 /*
33  * Editor modelines - http://www.wireshark.org/tools/modelines.html
34  *
35  * Local variables:
36  * c-basic-offset: 4
37  * tab-width: 8
38  * indent-tabs-mode: nil
39  * End:
40  *
41  * vi: set shiftwidth=4 tabstop=8 expandtab:
42  * :indentSize=4:tabSize=8:noTabs=true:
43  */
enum _wmem_cb_event_t wmem_cb_event_t
Definition: wmem_allocator.h:26