From a3b86ad4ddac328462b3a4d3bb3f24ddf90cc5f6 Mon Sep 17 00:00:00 2001 From: Vadim Yanitskiy Date: Sun, 27 Nov 2022 06:16:06 +0700 Subject: [PATCH] mobile: voice.h: add missing forward declarations Change-Id: I854abdcde5bc324f6d0cf309792b36fc64601070 Related: OS#5599 --- src/host/layer23/include/osmocom/bb/mobile/voice.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/host/layer23/include/osmocom/bb/mobile/voice.h b/src/host/layer23/include/osmocom/bb/mobile/voice.h index b9817f8a9..623f6c8f5 100644 --- a/src/host/layer23/include/osmocom/bb/mobile/voice.h +++ b/src/host/layer23/include/osmocom/bb/mobile/voice.h @@ -1,4 +1,7 @@ #pragma once +struct osmocom_ms; +struct gsm_data_frame; + int gsm_voice_init(struct osmocom_ms *ms); int gsm_send_voice(struct osmocom_ms *ms, struct gsm_data_frame *data);