Not export internal APIs
[platform/framework/native/appfw.git] / src / osp-init / Osp.cpp
1 //
2 // Copyright (c) 2012 Samsung Electronics Co., Ltd.
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 /**
18  * @file        Osp.cpp
19  * @brief       This is the implementation of global OSP initialization.
20  */
21
22 #include <openssl/evp.h> 
23 #include <FOspConfig.h>
24
25 extern "C"
26 {
27 extern void FBase_Initialize(void);
28 extern void FBase_Finalize(void);
29
30 extern void FApp_Initialize(void);
31 extern void FApp_Finalize(void);
32
33
34 __attribute__((constructor))
35 void _OSP_EXPORT_
36 Osp_Initialize(void)
37 {
38         // FBase_Initialize() is moved to FApp_AppInfo.cpp due to the preloading issue.
39         
40         FApp_Initialize();
41
42         OpenSSL_add_all_algorithms();
43 }
44
45 __attribute__((destructor))
46 void _OSP_EXPORT_
47 Osp_Finalize(void)
48 {
49         FApp_Finalize();
50
51         //FBase_Finalize();
52         EVP_cleanup();
53 }
54
55 }