iotivity 0.9.0
[platform/upstream/iotivity.git] / service / soft-sensor-manager / SampleApp / tizen / SSMTesterApp / oic-sample / src / oicapp-utils.h
1 /*
2  * Copyright (c) 2010 Samsung Electronics, Inc.
3  * All rights reserved.
4  *
5  * This software is a confidential and proprietary information
6  * of Samsung Electronics, Inc. ("Confidential Information").  You
7  * shall not disclose such Confidential Information and shall use
8  * it only in accordance with the terms of the license agreement
9  * you entered into with Samsung Electronics.
10  */
11 #ifndef __OICAPP_UTILS_H__
12 #define __OICAPP_UTILS_H__
13
14 #include "oicapp-test.h"
15
16 #ifdef __cplusplus
17 extern "C"
18 {
19 #endif
20
21 void oicapp_fail_popup(oicapp_data *ad, char *title, char *text, int timeout);
22 void oicapp_util_put_msg(oicapp_data *ad, const char *msg);
23 char *oicapp_util_wifi();
24
25 /*
26 int oicapp_client_start(oicapp_data *ad);
27 void oicapp_client_stop();
28 int oicapp_client_put(int power, int level);
29
30 int oicapp_server_start(oicapp_data *ad);
31 void oicapp_server_stop();
32 void oicapp_server_put(int power, int level);
33 */
34
35
36 #ifdef __cplusplus
37 }
38 #endif
39
40 #endif //__OICAPP_UTILS_H__
41