OSDN Git Service

Reorganized global functions: The file "Global.h" was split into multiple file in...
[lamexp/LameXP.git] / src / Global_EntryPoint.cpp
1 ///////////////////////////////////////////////////////////////////////////////
2 // LameXP - Audio Encoder Front-End
3 // Copyright (C) 2004-2013 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 ///////////////////////////////////////////////////////////////////////////////
26 // GLOBAL FUNCTIONS
27 ///////////////////////////////////////////////////////////////////////////////
28
29 static size_t lamexp_entry_check(void);
30 static size_t g_lamexp_entry_check_result = lamexp_entry_check();
31 static size_t g_lamexp_entry_check_flag = 0x789E09B2;
32
33 /*
34  * Entry point checks
35  */
36 static size_t lamexp_entry_check(void)
37 {
38         volatile size_t retVal = 0xA199B5AF;
39         if(g_lamexp_entry_check_flag != 0x8761F64D)
40         {
41                 lamexp_fatal_exit(L"Application initialization has failed, take care!");
42         }
43         return retVal;
44 }
45
46 /*
47  * Application entry point (runs before static initializers)
48  */
49 extern "C"
50 {
51         int WinMainCRTStartup(void);
52
53         void _lamexp_global_init_win32(void);
54         void _lamexp_global_init_versn(void);
55         void _lamexp_global_init_tools(void);
56         void _lamexp_global_init_ipcom(void);
57         void _lamexp_global_init_utils(void);
58
59         int lamexp_entry_point(void)
60         {
61                 if(g_lamexp_entry_check_flag != 0x789E09B2)
62                 {
63                         lamexp_fatal_exit(L"Application initialization has failed, take care!");
64                 }
65
66                 //Call global initialization functions
67                 _lamexp_global_init_win32();
68                 _lamexp_global_init_versn();
69                 _lamexp_global_init_tools();
70                 _lamexp_global_init_ipcom();
71                 _lamexp_global_init_utils();
72
73                 //Make sure we will pass the check
74                 g_lamexp_entry_check_flag = (~g_lamexp_entry_check_flag);
75
76                 //Now initialize the C Runtime library!
77                 return WinMainCRTStartup();
78         }
79 }