Update the project to the newest version.
[framework/appfw/shortcut.git] / test / homescreen.c
1 /*
2  * Copyright 2012  Samsung Electronics Co., Ltd
3  *
4  * Licensed under the Flora License, Version 1.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.tizenopensource.org/license
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #include <Elementary.h>
18 #include <shortcut.h>
19
20 int shortcut_request_cb(const char *pkgname, const char *name, int type, const char *exec, const char *icon, int pid, double period, void *data)
21 {
22         printf("SERVER: name: %s, type: %d, exec: %s, icon: %s, pid: %d, data: %p, period: %lf\n",
23                 name, type, exec, icon, pid, data, period);
24         return 0;
25 }
26
27 int elm_main(int argc, char *argv[])
28 {
29         shortcut_set_request_cb(shortcut_request_cb, NULL);
30
31         elm_run();
32         elm_shutdown();
33
34         return 0;
35 }
36
37 ELM_MAIN()
38 /* End of a file */
39