OSDN Git Service

More code refactoring and clean-up.
[lamexp/LameXP.git] / src / Global_Zero.cpp
1 ///////////////////////////////////////////////////////////////////////////////
2 // LameXP - Audio Encoder Front-End
3 // Copyright (C) 2004-2014 LoRd_MuldeR <MuldeR2@GMX.de>
4 //
5 // This program is free software; you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation; either version 2 of the License, or
8 // (at your option) any later version, but always including the *additional*
9 // restrictions defined in the "License.txt" file.
10 //
11 // This program is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 // GNU General Public License for more details.
15 //
16 // You should have received a copy of the GNU General Public License along
17 // with this program; if not, write to the Free Software Foundation, Inc.,
18 // 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19 //
20 // http://www.gnu.org/licenses/gpl-2.0.txt
21 ///////////////////////////////////////////////////////////////////////////////
22
23 #include "Global.h"
24
25 //MUtils
26 #include <MUtils/OSSupport.h>
27
28 //Qt
29 #include <QtGlobal>
30
31 //Initialize static Qt plugins
32 #ifdef QT_NODLL
33 #if QT_VERSION < QT_VERSION_CHECK(5,0,0)
34 Q_IMPORT_PLUGIN(qico)
35 Q_IMPORT_PLUGIN(qsvg)
36 #else
37 Q_IMPORT_PLUGIN(QWindowsIntegrationPlugin)
38 Q_IMPORT_PLUGIN(QICOPlugin)
39 #endif
40 #endif
41
42 //Localization
43 const char* LAMEXP_DEFAULT_LANGID = "en";
44 const char* LAMEXP_DEFAULT_TRANSLATION = "LameXP_EN.qm";
45
46 ///////////////////////////////////////////////////////////////////////////////
47 // GLOBAL FUNCTIONS
48 ///////////////////////////////////////////////////////////////////////////////
49
50 static size_t lamexp_entry_check(void);
51 static size_t g_lamexp_entry_check_result = lamexp_entry_check();
52 static size_t g_lamexp_entry_check_flag = 0x789E09B2;
53
54 /*
55  * Entry point checks
56  */
57 static size_t lamexp_entry_check(void)
58 {
59         volatile size_t retVal = 0xA199B5AF;
60         if(g_lamexp_entry_check_flag != 0x8761F64D)
61         {
62                 MUtils::OS::fatal_exit(L"Application initialization has failed, take care!");
63         }
64         return retVal;
65 }
66
67 /*
68  * Function declarations
69  */
70 extern "C"
71 {
72         int mainCRTStartup(void);
73         void _lamexp_global_init_tools(void);
74         void _lamexp_global_free_tools(void);
75 }
76
77 /*
78  * Application entry point (runs before static initializers)
79  */
80
81 extern "C" int lamexp_entry_point(void)
82 {
83         if(g_lamexp_entry_check_flag != 0x789E09B2)
84         {
85                 MUtils::OS::fatal_exit(L"Application initialization has failed, take care!");
86         }
87
88         //Call global initialization functions
89         _lamexp_global_init_tools();
90
91         //Make sure we will pass the check
92         g_lamexp_entry_check_flag = (~g_lamexp_entry_check_flag);
93
94         //Now initialize the C Runtime library!
95         return mainCRTStartup();
96 }
97
98 /*
99  * Application finalization function
100  */
101 void lamexp_finalization(void)
102 {
103         qDebug("lamexp_finalization()");
104
105         //Call global finalization functions, in proper order
106         _lamexp_global_free_tools();
107 }