Wireshark 4.5.0
The Wireshark network protocol analyzer
Loading...
Searching...
No Matches
progress_dlg.h
Go to the documentation of this file.
1
12#ifndef __PROGRESS_DLG_H__
13#define __PROGRESS_DLG_H__
14
15#ifdef __cplusplus
16extern "C" {
17#endif /* __cplusplus */
18
25struct progdlg;
26
28typedef struct progdlg progdlg_t;
29
47progdlg_t *create_progress_dlg(void *top_level_window, const char *task_title, const char *item_title,
48 bool terminate_is_stop, bool *stop_flag);
49
66progdlg_t *delayed_create_progress_dlg(void *top_level_window, const char *task_title, const char *item_title,
67 bool terminate_is_stop, bool *stop_flag, float progress);
68
76void update_progress_dlg(progdlg_t *dlg, float percentage, const char *status);
77
84
85#ifdef __cplusplus
86}
87#endif /* __cplusplus */
88
89#endif /* __PROGRESS_DLG_H__ */
progdlg_t * create_progress_dlg(void *top_level_window, const char *task_title, const char *item_title, bool terminate_is_stop, bool *stop_flag)
Definition progress_frame.cpp:31
progdlg_t * delayed_create_progress_dlg(void *top_level_window, const char *task_title, const char *item_title, bool terminate_is_stop, bool *stop_flag, float progress)
Definition progress_frame.cpp:60
void destroy_progress_dlg(progdlg_t *dlg)
Definition progress_frame.cpp:89
void update_progress_dlg(progdlg_t *dlg, float percentage, const char *status)
Definition progress_frame.cpp:73
Definition progress_frame.h:31