Merge branch 'swap_draft' of 106.109.8.71:/srv/git/sdk/dynamic-analysis-probe into...
[platform/core/system/swap-probe.git] / custom_chart / da_chart_dummy.c
1 /*\r
2  *  DA probe\r
3  *\r
4  * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. All rights reserved.\r
5  *\r
6  * Contact: \r
7  *\r
8  * Jaewon Lim <jaewon81.lim@samsung.com>\r
9  * Woojin Jung <woojin2.jung@samsung.com>\r
10  * Juyoung Kim <j0.kim@samsung.com>\r
11  * \r
12  * This library is free software; you can redistribute it and/or modify it under\r
13  * the terms of the GNU Lesser General Public License as published by the\r
14  * Free Software Foundation; either version 2.1 of the License, or (at your option)\r
15  * any later version.\r
16  * \r
17  * This library is distributed in the hope that it will be useful, but WITHOUT ANY\r
18  * WARRANTY; without even the implied warranty of MERCHANTABILITY or\r
19  * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public\r
20  * License for more details.\r
21  *\r
22  * You should have received a copy of the GNU Lesser General Public License\r
23  * along with this library; if not, write to the Free Software Foundation, Inc., 51\r
24  * Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA\r
25  *\r
26  * Contributors:\r
27  * - S-Core Co., Ltd\r
28  * \r
29  */\r
30 \r
31 #define _USE_DA_\r
32 #include "da_chart.h"\r
33 \r
34 // =====================================================================\r
35 // api definition\r
36 // =====================================================================\r
37 \r
38 void da_mark(chart_color color, char* mark_text)\r
39 {\r
40 }\r
41 \r
42 da_handle da_create_chart(char* chart_name)\r
43 {\r
44         return 0;\r
45 }\r
46 \r
47 da_handle da_create_series(da_handle charthandle, char* seriesname,\r
48                 series_type type, chart_color color)\r
49 {\r
50         return 0;\r
51 }\r
52                 \r
53 da_handle da_create_default_series(da_handle charthandle, char* seriesname)\r
54 {\r
55         return 0;\r
56 }\r
57 \r
58 int da_set_callback(da_handle series_handle, da_user_data_2_chart_data callback, void* data_addr, chart_interval interval)\r
59 {\r
60         return 0;\r
61 }\r
62 \r
63 void da_log(da_handle series_handle, float uservalue)\r
64 {\r
65 }\r