mirror of
https://github.com/reactos/reactos.git
synced 2025-04-22 13:10:39 +00:00

__acrt_initialize is here as a stub to later support linking ucrt statically. When it is statically linked the real function should be called, but when the executable links to ucrtdll, the initialization happens when the DLL is loaded, so we call a stub here.
8 lines
102 B
C++
8 lines
102 B
C++
|
|
#include <internal_shared.h>
|
|
|
|
extern "C"
|
|
__crt_bool __cdecl __acrt_initialize()
|
|
{
|
|
return true;
|
|
}
|