Main.h
1 /*
2  * Copyright (C) 2005-2006 by Dr. Marc Boris Duerner
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2.1 of the License, or (at your option) any later version.
8  *
9  * As a special exception, you may use this file as part of a free
10  * software library without restriction. Specifically, if other files
11  * instantiate templates or use macros or inline functions from this
12  * file, or you compile this file and link it with other files to
13  * produce an executable, this file does not by itself cause the
14  * resulting executable to be covered by the GNU General Public
15  * License. This exception does not however invalidate any other
16  * reasons why the executable file might be covered by the GNU Library
17  * General Public License.
18  *
19  * This library is distributed in the hope that it will be useful,
20  * but WITHOUT ANY WARRANTY; without even the implied warranty of
21  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
22  * Lesser General Public License for more details.
23  *
24  * You should have received a copy of the GNU Lesser General Public
25  * License along with this library; if not, write to the Free Software
26  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
27  */
28 
29 #ifndef PT_MAIN_H
30 #define PT_MAIN_H
31 
32 // This is a GCCE (Symbian) toolchain workaround needed when compiling
33 // with GCCE and using main() entry point
34 #ifdef __GCCE__
35 #include <staticlibinit_gcce.h>
36 #endif
37 
38 #ifdef __cplusplus_winrt
39 [Platform::MTAThread]
40 int main(int, char**);
41 #endif
42 
43 #ifdef _WIN32_WCE
44 
45 #include <string.h>
46 #include <stdlib.h>
47 
48 int main(int, char**);
49 
50 /* A wmain function for wince that calls a regular main function
51 
52  Include this header in your main.cpp so it can be compiled with visual
53  studio for Windows CE, which has only unicode support. This function
54  simply converts the wide string arguments to 8 bit strings and calls
55  a regular main function.
56 */
57 int wmain(int argc, wchar_t* wargv[])
58 {
59  char** argv = 0;
60  argv = new char*[argc];
61 
62  // convert arguments to char*
63  for (int i = 0; i < argc; ++i)
64  {
65  char line[256];
66  wcstombs(line, wargv[i], 256);
67  char* line2 = new char[ strlen(line) + 1 ];
68  strcpy(line2, line);
69  argv[i] = line2;
70  }
71 
72  // call the "regular" main function
73  int ret = main(argc, argv);
74 
75  for (int n = 0; n < argc; ++n)
76  {
77  delete argv[n];
78  }
79  delete [] argv;
80 
81  return ret;
82 }
83 
84 #endif // _WIN32_WCE
85 
86 #endif // PT_MAIN_H