aboutsummaryrefslogtreecommitdiff
path: root/src/application.c
diff options
context:
space:
mode:
authorTheJackiMonster <thejackimonster@gmail.com>2022-03-14 20:33:10 +0100
committerTheJackiMonster <thejackimonster@gmail.com>2022-03-14 20:33:10 +0100
commit8e8f7bf802109d986f7c2c083b1622d25c7f5356 (patch)
tree831473f9a4b0f7380ca40f0fa457b15ef7c40b11 /src/application.c
parent8ac4536fbfe1bbcc6da753e3bea2944d0c937323 (diff)
downloadmessenger-gtk-8e8f7bf802109d986f7c2c083b1622d25c7f5356.tar.gz
messenger-gtk-8e8f7bf802109d986f7c2c083b1622d25c7f5356.zip
Implement sending voice messages with preview functionality
Signed-off-by: TheJackiMonster <thejackimonster@gmail.com>
Diffstat (limited to 'src/application.c')
-rw-r--r--src/application.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/application.c b/src/application.c
index fd6b86f..638e6f5 100644
--- a/src/application.c
+++ b/src/application.c
@@ -25,6 +25,11 @@
25#include "application.h" 25#include "application.h"
26#include "resources.h" 26#include "resources.h"
27 27
28#include <gstreamer-1.0/gst/gst.h>
29#include <gtk-3.0/gtk/gtk.h>
30#include <libhandy-1/handy.h>
31#include <libnotify/notify.h>
32
28static void 33static void
29_load_ui_stylesheets(MESSENGER_Application *app) 34_load_ui_stylesheets(MESSENGER_Application *app)
30{ 35{
@@ -79,6 +84,7 @@ application_init(MESSENGER_Application *app,
79 app->argc = argc; 84 app->argc = argc;
80 app->argv = argv; 85 app->argv = argv;
81 86
87 gst_init (&argc, &argv);
82 gtk_init(&argc, &argv); 88 gtk_init(&argc, &argv);
83 hdy_init(); 89 hdy_init();
84 90