13f8fd365b195032443e460a37e7d9e7c8f47dca
[framework/appfw/aul-1.git] / test / ac_daemon.c
1 /*
2 Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved 
3 PROPRIETARY/CONFIDENTIAL
4 This software is the confidential and proprietary information of 
5 SAMSUNG ELECTRONICS ("Confidential Information"). You agree and acknowledge that 
6 this software is owned by Samsung and you 
7 shall not disclose such Confidential Information and shall 
8 use it only in accordance with the terms of the license agreement 
9 you entered into with SAMSUNG ELECTRONICS.  SAMSUNG make no 
10 representations or warranties about the suitability 
11 of the software, either express or implied, including but not 
12 limited to the implied warranties of merchantability, fitness for 
13 a particular purpose, or non-infringement. 
14 SAMSUNG shall not be liable for any damages suffered by licensee arising out of or 
15 related to this software.
16 */
17
18 #include <stdio.h>
19 #include <glib.h>
20
21 #include <app-checker-server.h>
22
23 int main()
24 {
25         
26         GMainLoop *mainloop;
27         int ret;
28
29         mainloop = g_main_loop_new(NULL, FALSE);
30
31         ret = ac_server_initailize();
32
33         g_main_loop_run(mainloop);
34
35         return 0;
36 }