reactos/sdk/lib/crt
Katayama Hirofumi MZ 6388b91a4d
[CRT][USER32] fix wsprintf additional argument (%*s) (#1470)
Reduce wsprintf function failures ("%*s"). CORE-13955
2019-04-05 16:33:18 +09: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 Fix the MSVC version of ldexp filling up the FPU stack and bailing out with #IND after a few calls. Additionally, add it back to libcntpr. 2019-03-03 16:11:27 +01:00
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][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] Implement thread/fiber safe support for MSVC and Clang-CL 2019-02-12 19:31:33 +01:00
stdio [CRT] Correctly share get_ioinfo()/release_ioinfo() functions between code units 2019-04-01 11:38:32 +02:00
stdlib [CRT] Use alias names for rot functions when compiling with Clang-CL 2019-02-12 19:31:33 +01:00
string Add .gitattributes and .gitignore files and normalize line endings in the repository (#10) 2017-10-04 20:37:32 +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
wstring
CMakeLists.txt
crt.cmake [CRT] Use alias names for rot functions when compiling with Clang-CL 2019-02-12 19:31:33 +01:00
libcntpr.cmake Fix the MSVC version of ldexp filling up the FPU stack and bailing out with #IND after a few calls. Additionally, add it back to libcntpr. 2019-03-03 16:11:27 +01:00
moldname-msvcrt.def
msvcrtex.cmake [CRT] Implement thread/fiber safe support for MSVC and Clang-CL 2019-02-12 19:31:33 +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.