aboutsummaryrefslogtreecommitdiff
path: root/src/ui/file_load_entry.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/ui/file_load_entry.h')
-rw-r--r--src/ui/file_load_entry.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/ui/file_load_entry.h b/src/ui/file_load_entry.h
index f24d3d5..dbcea62 100644
--- a/src/ui/file_load_entry.h
+++ b/src/ui/file_load_entry.h
@@ -47,9 +47,23 @@ typedef struct UI_FILE_LOAD_ENTRY_Handle
47 GtkButton *cancel_button; 47 GtkButton *cancel_button;
48} UI_FILE_LOAD_ENTRY_Handle; 48} UI_FILE_LOAD_ENTRY_Handle;
49 49
50/**
51 * Allocates and creates a new file load entry
52 * handle to manage loading files for a given
53 * messenger application.
54 *
55 * @param app Messenger application
56 * @return New file load entry handle
57 */
50UI_FILE_LOAD_ENTRY_Handle* 58UI_FILE_LOAD_ENTRY_Handle*
51ui_file_load_entry_new(MESSENGER_Application *app); 59ui_file_load_entry_new(MESSENGER_Application *app);
52 60
61/**
62 * Frees its resources and destroys a given file
63 * load entry handle.
64 *
65 * @param handle File load entry handle
66 */
53void 67void
54ui_file_load_entry_delete(UI_FILE_LOAD_ENTRY_Handle *handle); 68ui_file_load_entry_delete(UI_FILE_LOAD_ENTRY_Handle *handle);
55 69