/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ /* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
// This code attaches the process to the appropriate console. void UseParentConsole() { if (AttachConsole(ATTACH_PARENT_PROCESS)) { // Redirect the standard streams to the existing console, but // only if they haven't been redirected to a valid file.
AssignStdHandle("CONOUT$", "w", stdout, STD_OUTPUT_HANDLE); // There is no CONERR$, so use CONOUT$ for stderr as well.
AssignStdHandle("CONOUT$", "w", stderr, STD_ERROR_HANDLE);
AssignStdHandle("CONIN$", "r", stdin, STD_INPUT_HANDLE);
}
}
} // namespace mozilla
¤ Dauer der Verarbeitung: 0.27 Sekunden
(vorverarbeitet)
¤
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung ist noch experimentell.