Files
reactos/sdk/lib/vcstartup/__scrt_uninitialize_crt.cpp
Timo Kreuzer d0b292cda6 [VCSTARTUP] Separate the library from vcruntime
Previously this was mixed with vcruntime, with some objects being shared. But this is messy. Instead use a separate library and link ucrtbase to this as well. This also matches more closely how native libraries are organized, where vcstartup is merged into the CRT import libraries, while vcruntime is merged into the static CRT libraries.
2026-06-21 12:30:32 +00:00

18 lines
269 B
C++

//
// __scrt_uninitialize_crt.c
//
// Copyright (c) 2024 Timo Kreuzer
//
// Implementation of __scrt_uninitialize_crt.
//
// SPDX-License-Identifier: MIT
//
extern "C"
bool
__cdecl
__scrt_uninitialize_crt(bool is_terminating, bool from_exit)
{
return true;
}