mirror of
https://github.com/reactos/reactos.git
synced 2025-04-20 20:36:35 +00:00

vcruntime contains the code that is linked into ucrtbase (in VS it is also provided as vcruntime140.dll) vcstartup contains the code that is statically linked into executables that link to ucrtbase.dll. In Visual Studio this is part of msvcrt.lib (the import library for msvcrt), similar to our current msvcrtex, and it gets linked when you link to ucrtbase as well. The name is based on the folder name in the library. Both libraries share some code, but each file is only compiled once.
15 lines
217 B
C
15 lines
217 B
C
//
|
|
// ntrtl.h
|
|
//
|
|
// Copyright (c) 2024 Timo Kreuzer
|
|
//
|
|
// Header for RTL NT things.
|
|
//
|
|
// SPDX-License-Identifier: MIT
|
|
//
|
|
|
|
#pragma once
|
|
|
|
#include <ndk/rtltypes.h>
|
|
|
|
#define RTL_USER_PROC_SECURE_PROCESS 0x80000000
|