export _AppControlImpl::FindAndStart()
[platform/framework/native/appfw.git] / src / app / FAppApp.cpp
index 49d080a..a9b0ae2 100644 (file)
@@ -1,5 +1,4 @@
 //
-// Open Service Platform
 // Copyright (c) 2012 Samsung Electronics Co., Ltd.
 //
 // Licensed under the Apache License, Version 2.0 (the License);
@@ -125,6 +124,13 @@ App::GetAppResourcePath(void) const
        return appResPath;
 }
 
+String
+App::GetAppSharedPath(void) const
+{
+       static String appSharedPath(_AppInfo::GetAppRootPath() + L"shared/");
+       return appSharedPath;
+}
+
 result
 App::Terminate(void)
 {
@@ -162,7 +168,7 @@ App::SendUserEvent(RequestId requestId, const IList* pArgs)
 {
        SysAssertf(__pAppImpl != null, "Getting App instance failed.");
 
-       return __pAppImpl->SendUserEvent(requestId, pArgs);
+       return __pAppImpl->SendUserEvent(requestId, pArgs, true);
 }
 
 void