X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=src%2Fcontroller_internal.c;h=8c8e2d88bdab604eae26599308c5f3c9009d6f62;hb=fa2d9fba5b708dc3bfc966973c7d699ee062467e;hp=cd24badbdc5dc5c878a6c41b0784529aa481d7da;hpb=659a9677d7b425dffd42e2534662ddda7082ce45;p=apps%2Fnative%2Fposition-finder-server.git diff --git a/src/controller_internal.c b/src/controller_internal.c old mode 100644 new mode 100755 index cd24bad..8c8e2d8 --- a/src/controller_internal.c +++ b/src/controller_internal.c @@ -5,6 +5,7 @@ * Geunsun Lee * Eunyoung Lee * Junkyu Han + * Jeonghoon Park * * Licensed under the Flora License, Version 1.1 (the License); * you may not use this file except in compliance with the License. @@ -24,10 +25,17 @@ #include "log.h" #include "connectivity.h" #include "resource.h" +#ifdef ENABLE_WEBNOTIFY +#include "webnotify.h" +#endif /* ENABLE_WEBNOTIFY */ + void controller_init_internal_functions(void) { connectivity_init(); +#ifdef ENABLE_WEBNOTIFY + web_notify_init(); +#endif /* ENABLE_WEBNOTIFY */ } void controller_fini_internal_functions(void) @@ -35,4 +43,7 @@ void controller_fini_internal_functions(void) _I("Terminating..."); resource_close_all(); connectivity_fini(); +#ifdef ENABLE_WEBNOTIFY + web_notify_fini(); +#endif /* ENABLE_WEBNOTIFY */ }