reactos/sdk/lib/crt
2020-09-13 23:42:09 +02:00
..
conio
direct
except [MSVCRT] Fix some architecture specific exports 2020-09-13 15:37:29 +02:00
float
include [CRT] Import wine exception handling code 2020-02-09 15:56:30 +01:00
locale
math [ASM] Fix boot with VS 16.7.3 / MSVC 19.27 2020-09-12 15:01:04 +02:00
mbstring [CRT] Fix two obvious typos in _mbbtype(). 2018-10-07 22:56:14 +02:00
mem
misc [PROGMAN][CRT][USER32] Do not use LoadLibraryEx() NT6+ flags (#3152) 2020-09-13 23:42:09 +02:00
printf [CRT][USER32] fix wsprintf additional argument (%*s) (#1470) 2019-04-05 16:33:18 +09:00
process [CRT] spawn: define a unicode environment when needed 2018-10-13 20:30:07 +02:00
search
setjmp
signal
startup [CRT] ARM & ARM64 Windows do not have initenv in their CRTs (#1597) 2020-04-26 19:56:34 +03:00
stdio [MSVCRT] Export __acrt_iob_func to fix GCC build with latest RosBE 2.2 (#1835) 2019-10-20 12:44:17 +02:00
stdlib [CRT] _onexit(): Fix 'memcpy()' size 2020-06-27 14:38:21 +02:00
string [SDK][STDLIB][STRING] Wine-sync wcsrtombs_l and _mbstowcs_l 2020-05-03 15:35:11 +02:00
sys_stat
time [CRT] Correctly share get_ioinfo()/release_ioinfo() functions between code units 2019-04-01 11:38:32 +02:00
wine [CRT] Import wine exception handling code 2020-02-09 15:56:30 +01:00
wstring
CMakeLists.txt [CMAKE] Replace custom functions to built-in ones 2020-04-16 15:59:38 +03:00
crt.cmake [MSVCRT] Add vista exports 2020-09-13 15:37:29 +02:00
libcntpr.cmake [CMAKE] Replace custom functions to built-in ones 2020-04-16 15:59:38 +03:00
moldname-msvcrt.def
msvcrtex.cmake [CMAKE] Replace custom functions to built-in ones 2020-04-16 15:59:38 +03:00
oldnames-msvcrt.S
oldnames.cmake
precomp.h
README.txt

Big chunks of this CRT library are taken from Wine's msvcrt implementation,
you can find a list of synced files in README.WINE file.

Notes:
1. When syncing, omit MSVCRT_ prefix where possible, Wine has to keep this
because they are linking with *both* original crt, and ms crt implementation.
ReactOS has the only CRT, so no need to make distinct functions.
2. ReactOS compiles two versions of the CRT library, one for usermode
(called just "crt"), and one version for kernelmode usage (called "libcntpr").
In order to separate the code, you can use #ifdef _LIBCNT_ for libcntpr code.