Change-Id: I9ebd7bc760cde8c2da4964875d2fdc98446423ee
Signed-off-by: Juyeon Lee <juyeonne.lee@samsung.com>
#include <beyond/common.h>
#include <beyond/session.h>
+#include <stdint.h>
#if defined(__cplusplus)
extern "C" {
API void beyond_discovery_destroy(beyond_discovery_h handle);
+API int beyond_discovery_set_item(beyond_discovery_h handle, const char *key, const void *value, uint8_t valueSize);
+API int beyond_discovery_remove_item(beyond_discovery_h handle, const char *key);
+
#if defined(__cplusplus)
}
#endif
{
return;
}
+
+int beyond_discovery_set_item(beyond_discovery_h handle, const char *key, const void *value, uint8_t valueSize)
+{
+ return -ENOSYS;
+}
+
+int beyond_discovery_remove_item(beyond_discovery_h handle, const char *key)
+{
+ return -ENOSYS;
+}