From f9814a9731b03cec55babffc8d113625bb8b4b87 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20Danis?= Date: Thu, 7 Apr 2011 18:33:53 +0200 Subject: [PATCH] include: Add callsetup, call and callheld as indicators for HFP emulator --- include/emulator.h | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/include/emulator.h b/include/emulator.h index 71b7c240..5cd894bc 100644 --- a/include/emulator.h +++ b/include/emulator.h @@ -36,6 +36,18 @@ extern "C" { #define OFONO_EMULATOR_IND_SERVICE "service" #define OFONO_EMULATOR_IND_SIGNAL "signal" +#define OFONO_EMULATOR_CALL_INACTIVE 0 +#define OFONO_EMULATOR_CALL_ACTIVE 1 + +#define OFONO_EMULATOR_CALLSETUP_INACTIVE 0 +#define OFONO_EMULATOR_CALLSETUP_INCOMING 1 +#define OFONO_EMULATOR_CALLSETUP_OUTGOING 2 +#define OFONO_EMULATOR_CALLSETUP_ALERTING 3 + +#define OFONO_EMULATOR_CALLHELD_NONE 0 +#define OFONO_EMULATOR_CALLHELD_MULTIPLE 1 +#define OFONO_EMULATOR_CALLHELD_ON_HOLD 2 + struct ofono_emulator; struct ofono_emulator_request;