Bug-fix: fix target dll searching logic
[platform/core/dotnet/launcher.git] / NativeLauncher / inc / path_manager.h
index fb24637..b3bc88e 100644 (file)
@@ -133,6 +133,12 @@ public:
        const std::string& getAppNIPaths();
 
        /**
+        * @brief Set addtional dll searching path for App.
+        * @param[in] paths path
+        */
+       void setExtraDllPaths(const char* paths);
+
+       /**
         * @brief Get the list of directories where the native libraries of this application exist
         * @return the list(":" seperated) of paths the loader should probe when looking for native libraries
         */
@@ -159,6 +165,7 @@ private:
        std::string appNIPaths;
        std::string nativeDllSearchingPaths;
        std::string appTacPath;
+       std::string extraDllPaths;
        int rootFD;
        int niRootFD;
 };