mirror of
https://invent.kde.org/multimedia/kdenlive
synced 2025-12-05 15:59:59 +01:00
16 lines
406 B
C++
16 lines
406 B
C++
/*
|
|
SPDX-FileCopyrightText: 2019 Nicolas Carion <french.ebook.lover@gmail.com>
|
|
SPDX-License-Identifier: GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
|
|
*/
|
|
#include "abortutil.hpp"
|
|
#if !defined(_WIN32) && (defined(__unix__) || defined(__unix) || (defined(__APPLE__) && defined(__MACH__)))
|
|
|
|
void Disable_Console_Output()
|
|
{
|
|
// close C file descriptors
|
|
fclose(stdout);
|
|
fclose(stderr);
|
|
}
|
|
|
|
#endif
|