add web notification feature, but not enabled yet
[apps/native/position-finder-server.git] / inc / webnotify.h
1 /*
2  * Copyright (c) 2017 Samsung Electronics Co., Ltd.
3  *
4  * Contact: Jin Yoon <jinny.yoon@samsung.com>
5  *          Geunsun Lee <gs86.lee@samsung.com>
6  *          Eunyoung Lee <ey928.lee@samsung.com>
7  *          Junkyu Han <junkyu.han@samsung.com>
8  *          Jeonghoon Park <jh1979.park@samsung.com>
9  *
10  * Licensed under the Flora License, Version 1.1 (the License);
11  * you may not use this file except in compliance with the License.
12  * You may obtain a copy of the License at
13  *
14  * http://floralicense.org/license/
15  *
16  * Unless required by applicable law or agreed to in writing, software
17  * distributed under the License is distributed on an AS IS BASIS,
18  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19  * See the License for the specific language governing permissions and
20  * limitations under the License.
21  */
22
23
24 #ifndef __POSITION_FINDER_WEBNOTIFY_H__
25 #define __POSITION_FINDER_WEBNOTIFY_H__
26
27 int web_notify_init(void);
28 void web_notify_fini(void);
29 int web_notify_data(const char *resource, const char *data);
30 int web_notify_bool(const char *resource, bool value);
31 int web_notify_int(const char *resource, int value);
32 int web_notify_double(const char *resource, double value);
33
34 #endif /* __POSITION_FINDER_WEBNOTIFY_H__ */
35