add comment for header and fix some wrong return value
[platform/core/dotnet/launcher.git] / NativeLauncher / inc / plugin_manager.h
1 /*
2  * Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved
3  *
4  * Licensed under the Apache License, Version 2.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.apache.org/licenses/LICENSE-2.0
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 #ifndef __PLUGIN_MANAGER_H__
18 #define __PLUGIN_MANAGER_H__
19
20 #include "coreclr_host.h"
21
22 typedef void (*plugin_initialize_ptr)(const char* mode);
23 typedef void (*plugin_preload_ptr)();
24 typedef void (*plugin_set_app_info_ptr)(
25                         const char* appId,
26                         const char* managedAssemblyPath);
27 typedef void (*plugin_set_coreclr_info_ptr)(
28                         void* hostHandle,
29                         unsigned int domainId,
30                         coreclr_create_delegate_ptr delegateFunc);
31 typedef char* (*plugin_get_dll_path_ptr)();
32 typedef void (*plugin_before_execute_ptr)();
33 typedef void (*plugin_finalize_ptr)();
34
35 typedef struct PluginFunc {
36         plugin_initialize_ptr initialize;
37         plugin_preload_ptr preload;
38         plugin_set_app_info_ptr set_app_info;
39         plugin_set_coreclr_info_ptr set_coreclr_info;
40         plugin_get_dll_path_ptr get_dll_path;
41         plugin_before_execute_ptr before_execute;
42         plugin_finalize_ptr finalize;
43 } PluginFunc;
44
45 // plugin functions
46 void pluginPreload();
47 void pluginSetAppInfo(const char* appId, const char* managedAssemblyPath);
48 void pluginSetCoreclrInfo(void* hostHandle, unsigned int domainId, coreclr_create_delegate_ptr delegateFunc);
49 char* pluginGetDllPath();
50 void pluginBeforeExecute();
51
52 // initialize / finalize plugin manager
53 int initializePluginManager(const char* mode);
54 void finalizePluginManager();
55
56 #endif /* __PLUGIN_MANAGER_H__ */