view terminal_win.c @ 1252:8e3adc6264d3

Don't depend on USER being set in build_nightly as it does not seem to work when build job is run from cron
author Michael Pavone <pavone@retrodev.com>
date Mon, 27 Feb 2017 00:38:53 -0800
parents 0433fdd9ba66
children
line wrap: on
line source

#include <windows.h>
#include <stdio.h>

static char init_done;

void force_no_terminal()
{
	init_done = 1;
}

void init_terminal()
{
	if (!init_done) {
		AllocConsole();
		freopen("CONIN$", "r", stdin);
		freopen("CONOUT$", "w", stdout);
		freopen("CONOUT$", "w", stderr);
		init_done = 1;
	}
}