summaryrefslogtreecommitdiff
path: root/lib/src/turns-init.cpp
diff options
context:
space:
mode:
authorFelix Morgner <felix.morgner@gmail.com>2025-05-12 16:21:53 +0200
committerFelix Morgner <felix.morgner@gmail.com>2025-05-12 16:21:53 +0200
commita2c73b6ba3c9ea307b0b0eb94c9e769a1f31dc00 (patch)
tree4235e54f0557c76b1226367b8cd5e5f561d7662a /lib/src/turns-init.cpp
parent45ef4948db670224c7cc727507f84924bd826002 (diff)
downloadturns-a2c73b6ba3c9ea307b0b0eb94c9e769a1f31dc00.tar.xz
turns-a2c73b6ba3c9ea307b0b0eb94c9e769a1f31dc00.zip
lib: move C library to new directory
Diffstat (limited to 'lib/src/turns-init.cpp')
-rw-r--r--lib/src/turns-init.cpp17
1 files changed, 17 insertions, 0 deletions
diff --git a/lib/src/turns-init.cpp b/lib/src/turns-init.cpp
new file mode 100644
index 0000000..544dc14
--- /dev/null
+++ b/lib/src/turns-init.cpp
@@ -0,0 +1,17 @@
+#include "turns-init.h"
+
+#include "turns-enums.h"
+#include "turns-participant.h"
+
+#include <glib-object.h>
+#include <glib.h>
+
+G_BEGIN_DECLS
+
+auto turns_init() -> void
+{
+ g_type_ensure(TURNS_TYPE_PARTICIPANT);
+ g_type_ensure(TURNS_TYPE_DISPOSITION);
+}
+
+G_END_DECLS \ No newline at end of file