blob: 544dc14972e49984dd922678791e3780955ab858 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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
|