Wireshark  4.3.0
The Wireshark network protocol analyzer
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
16 extern "C" {
17 #endif /* __cplusplus */
18 
25 struct progdlg;
26 
28 typedef struct progdlg progdlg_t;
29 
47 progdlg_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 
66 progdlg_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 
76 void 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__ */
void destroy_progress_dlg(progdlg_t *dlg)
Definition: progress_frame.cpp:89
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 update_progress_dlg(progdlg_t *dlg, float percentage, const char *status)
Definition: progress_frame.cpp:73
Definition: progress_frame.h:31