Wireshark 4.7.0
The Wireshark network protocol analyzer
Loading...
Searching...
No Matches
init.h
Go to the documentation of this file.
1
12#ifndef __UI_INIT_H__
13#define __UI_INIT_H__
14
15#include <wsutil/wmem/wmem.h>
16
17#ifdef __cplusplus
18extern "C" {
19#endif /* __cplusplus */
20
26extern void ui_init(const char* app_env_var_prefix);
27
31extern void ui_cleanup(void);
32
39
40#ifdef __cplusplus
41}
42#endif /* __cplusplus */
43
44#endif /* __UI_INIT_H__ */
void ui_cleanup(void)
Cleanup the UI "helper" components.
Definition init.c:30
wmem_allocator_t * wmem_ui_scope(void)
Fetch the current UI memory scope.
Definition init.c:41
void ui_init(const char *app_env_var_prefix)
Initialize the UI "helper" components.
Definition init.c:21
Internal memory allocator interface used by the wmem subsystem.
Definition wmem_allocator.h:34