123456789101112131415161718192021222324252627 |
- #include "il2cpp-config.h"
-
- #if IL2CPP_TARGET_WINRT
-
- #include "os/Initialize.h"
- #include "os/Win32/WindowsHelpers.h"
- #include "os/BrokeredFileSystem.h"
- #include "os/Locale.h"
-
- #include <io.h>
-
- void il2cpp::os::Uninitialize()
- {
- BrokeredFileSystem::CleanupStatics();
- Locale::UnInitializeWinRT();
-
- HANDLE stdoutHandle = reinterpret_cast<HANDLE>(_get_osfhandle(_fileno(stdout)));
- HANDLE stderrHandle = reinterpret_cast<HANDLE>(_get_osfhandle(_fileno(stderr)));
-
- if (stdoutHandle != INVALID_HANDLE_VALUE)
- FlushFileBuffers(stdoutHandle);
-
- if (stderrHandle != INVALID_HANDLE_VALUE)
- FlushFileBuffers(stderrHandle);
- }
-
- #endif
|