reactos/sdk/lib/crt
2020-11-16 16:58:10 +01:00
..
conio
direct
except [CRT] Use chkstk_ms.s on x64 builds 2020-09-20 23:08:17 +02:00
float [CRT] Return from fpreset() 2020-09-20 23:08:17 +02:00
include
locale
math [MSVCRTEX] Add some floating point functions for CLang build 2020-11-16 16:58:10 +01:00
mbstring
mem
misc
printf
process
search
setjmp
signal
startup [CRT] Remove duplicated atexit/onexit code 2020-11-01 09:33:14 +01:00
stdio
stdlib [CRT] Use ASM aliases for CLang builds 2020-11-16 16:58:10 +01:00
string
sys_stat
time
wine
wstring
CMakeLists.txt [CRT] Use chkstk_ms.s on x64 builds 2020-09-20 23:08:17 +02:00
crt.cmake [CRT] Remove duplicated atexit/onexit code 2020-11-01 09:33:14 +01:00
libcntpr.cmake [CRT] Use chkstk_ms.s on x64 builds 2020-09-20 23:08:17 +02:00
moldname-msvcrt.def
msvcrtex.cmake [MSVCRTEX] Add some floating point functions for CLang build 2020-11-16 16:58:10 +01: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.