OSDN Git Service

Moved translation support into MUtilities library + make clean-up of temporary files...
[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 ///////////////////////////////////////////////////////////////////////////////
43 // GLOBAL FUNCTIONS
44 ///////////////////////////////////////////////////////////////////////////////
45
46 static size_t lamexp_entry_check(void);
47 static size_t g_lamexp_entry_check_result = lamexp_entry_check();
48 static size_t g_lamexp_entry_check_flag = 0x789E09B2;
49
50 /*
51  * Entry point checks
52  */
53 static size_t lamexp_entry_check(void)
54 {
55         volatile size_t retVal = 0xA199B5AF;
56         if(g_lamexp_entry_check_flag != 0x8761F64D)
57         {
58                 MUtils::OS::fatal_exit(L"Application initialization has failed, take care!");
59         }
60         return retVal;
61 }
62
63 /*
64  * Function declarations
65  */
66 extern "C"
67 {
68         int mainCRTStartup(void);
69 }
70
71 /*
72  * Application entry point (runs before static initializers)
73  */
74 extern "C" int lamexp_entry_point(void)
75 {
76         if(g_lamexp_entry_check_flag != 0x789E09B2)
77         {
78                 MUtils::OS::fatal_exit(L"Application initialization has failed, take care!");
79         }
80
81         //Make sure we will pass the check
82         g_lamexp_entry_check_flag = (~g_lamexp_entry_check_flag);
83
84         //Now initialize the C Runtime library!
85         return mainCRTStartup();
86 }