summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--telephony-binding/gdbus/ofono_manager.h3
-rw-r--r--telephony-binding/telephony-binding.c1
2 files changed, 2 insertions, 2 deletions
diff --git a/telephony-binding/gdbus/ofono_manager.h b/telephony-binding/gdbus/ofono_manager.h
index 87e86ad..6ab7785 100644
--- a/telephony-binding/gdbus/ofono_manager.h
+++ b/telephony-binding/gdbus/ofono_manager.h
@@ -17,8 +17,9 @@
#include <glib.h>
#define _GNU_SOURCE
+
+#define AFB_BINDING_VERSION 2
#include <afb/afb-binding.h>
-#include <afb/afb-service-itf.h>
int ofono_manager_init(void);
void ofono_manager_invalidate_default_modem(void);
diff --git a/telephony-binding/telephony-binding.c b/telephony-binding/telephony-binding.c
index 3d0f06a..f6db061 100644
--- a/telephony-binding/telephony-binding.c
+++ b/telephony-binding/telephony-binding.c
@@ -22,7 +22,6 @@
#define AFB_BINDING_VERSION 2
#include <afb/afb-binding.h>
-#include <afb/afb-service-itf.h>
#include "ofono_manager.h"
#include "ofono_voicecallmanager.h"
121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186