reactos/sdk/lib/crt
2018-10-13 20:30:07 +02:00
..
conio
direct
except [ASM] Fixed ".double" macro in asm.inc. 2018-07-15 23:25:23 +02:00
float
include [CRT] Update file descriptor handling to match Wine (3/7). CORE-14504 2018-03-26 13:00:15 +02:00
locale
math
mbstring [CRT] Fix two obvious typos in _mbbtype(). 2018-10-07 22:56:14 +02:00
mem
misc [CRT] Always initialize _[w]pgmptr with a *FULL* path to the current application. 2018-06-05 23:55:46 +02:00
printf [CRT] Implement the missing CRT _sc(w)printf() functions. CORE-14497 2018-03-23 22:30:18 +01:00
process [CRT] spawn: define a unicode environment when needed 2018-10-13 20:30:07 +02:00
search
setjmp
signal
startup [SDK][CRT] Fix _ismbblead undefined error on MSVC 2018-08-27 11:09:28 +02:00
stdio [CRT] Fixed _tstat64 which wrongly set executable bits on files. CORE-10904 2018-03-26 13:41:27 +02:00
stdlib [CRT] Reimplement qsort() using FreeBSD implementation. 2018-06-02 13:56:42 +02:00
string
sys_stat
time [CRT] Update file descriptor handling to match Wine (3/7). CORE-14504 2018-03-26 13:00:15 +02:00
wine
wstring
CMakeLists.txt
crt.cmake [CRT] Implement the missing CRT _sc(w)printf() functions. CORE-14497 2018-03-23 22:30:18 +01:00
libcntpr.cmake
moldname-msvcrt.def
msvcrtex.cmake
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.