mirror of
https://github.com/team-infusion-developers/android_device_samsung_msm8976-common.git
synced 2024-11-07 06:19:20 +00:00
61a4c37735
msm8976-common: ril: add open-sourced libsecnativefeature, used by libsec-ril Change-Id: I2f487db23b31c63ba919863f393ca37cc9a81191 libsecnativefeature: fix build with clang Change-Id: Ibda3234af2b1184e094913e35cb919a75f972c87 Change-Id: Iaaa06fa527cedce6609a95b21d787c13dda6a30a
31 lines
919 B
C
31 lines
919 B
C
#ifndef SEC_NATIVE_FEATURE_H
|
|
#define SEC_NATIVE_FEATURE_H
|
|
|
|
#include "SecNativeFeatureTagAll.h"
|
|
|
|
// define TAG for default value
|
|
/*
|
|
#define Str_NoTag ""
|
|
#define Bool_NoTag false
|
|
#define Int_NoTag (0)
|
|
|
|
#define TAG_BOOLEAN_TEST_TRUE "CscFeature_BooleanTestTrue"
|
|
#define TAG_BOOLEAN_TEST_FALSE "CscFeature_BooleanTestFalse"
|
|
#define TAG_BOOLEAN_TEST_NULL "CscFeature_BooleanTestNull"
|
|
#define TAG_STRING_TEST "CscFeature_StringTest"
|
|
#define TAG_STRING_TEST_NULL "CscFeature_StringTestNull"
|
|
#define TAG_INTEGER_TEST "CscFeature_IntegerTest"
|
|
#define TAG_INTEGER_TEST_NULL "CscFeature_IntegerTestNull"
|
|
|
|
#define TAG_FMRADIO_RTPLUS "CscFeature_FMRadioRTPlus"
|
|
#define TAG_FMRADIO_SEASETTING "CscFeature_FMRadioSEASetting"
|
|
*/
|
|
|
|
#ifdef __cplusplus
|
|
#include "SecNativeFeatureCppIf.h"
|
|
#else
|
|
#include "SecNativeFeatureCIf.h"
|
|
#endif
|
|
|
|
#endif // SEC_NATIVE_FEATURE_H
|
|
|