aboutsummaryrefslogtreecommitdiff
path: root/src/ui/file_load_entry.h
diff options
context:
space:
mode:
authorTheJackiMonster <thejackimonster@gmail.com>2022-04-23 19:13:29 +0200
committerTheJackiMonster <thejackimonster@gmail.com>2022-04-23 19:13:29 +0200
commit8f53a6e879f360e80941cb6e9d502d7522bbeeba (patch)
tree272195e4de223342ed88a69cc20137f9b0440da2 /src/ui/file_load_entry.h
parentfc56c6148f22d363a27c7a39d8d97a2d4d908a92 (diff)
downloadmessenger-gtk-8f53a6e879f360e80941cb6e9d502d7522bbeeba.tar.gz
messenger-gtk-8f53a6e879f360e80941cb6e9d502d7522bbeeba.zip
Added doxygen comments to all functions in the headers
Signed-off-by: TheJackiMonster <thejackimonster@gmail.com>
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