]> vaikene.ee Git - evaf/blob - src/main/GUI/winconsole.cpp
Merge branch 'master' of ssh://vaikene.net/var/gitpub/evaf
[evaf] / src / main / GUI / winconsole.cpp
1 /**
2 * @file main/GUI/winconsole.cpp
3 * @brief Functions to redirect stdin, stdout and stderr to a separate console on Windows
4 * @author Enar Vaikene
5 *
6 * Copyright (c) 2011 Enar Vaikene
7 *
8 * This file is part of the eVaf C++ cross-platform application development framework.
9 *
10 * This file can be used under the terms of the GNU General Public License
11 * version 3.0 as published by the Free Software Foundation and appearing in
12 * the file LICENSE included in the packaging of this file. Please review the
13 * the following information to ensure the GNU General Public License version
14 * 3.0 requirements will be met: http://www.gnu.org/copyleft/gpl.html.
15 *
16 * Alternatively, this file may be used in accordance with the Commercial License
17 * Agreement provided with the Software.
18 */
19
20 #include "winconsole.h"
21
22 #define _CRT_SECURE_NO_DEPRECATE
23
24 #include <windows.h>
25 #include <stdio.h>
26
27 void eVaf::GUI::Internal::enableWinConsole()
28 {
29 AllocConsole();
30 freopen("conin$", "r", stdin);
31 freopen("conout$", "w", stdout);
32 freopen("conout$", "w", stderr);
33 }
34
35 #undef _CRT_SECURE_NO_DEPRECATE