reactos/sdk/lib/crt
Mark Jansen 62c1bb6448
[CRT] Implement _CrtDbgReport and _CrtDbgReportW
Most functionality is working, except output to file
CORE-11835
2020-04-04 19:55:24 +02:00
..
conio
direct
except [CRT] Import wine exception handling code 2020-02-09 15:56:30 +01:00
float
include [CRT] Import wine exception handling code 2020-02-09 15:56:30 +01:00
locale
math [SDK] Use HEX macro, like elsewhere in the file 2020-01-22 20:57:04 +01:00
mbstring
mem
misc [CRT] Implement _CrtDbgReport and _CrtDbgReportW 2020-04-04 19:55:24 +02:00
printf
process
search
setjmp
signal
startup
stdio
stdlib
string [MSVCRT] Add _snwscanf 2020-03-15 13:12:20 +01:00
sys_stat
time
wine [CRT] Import wine exception handling code 2020-02-09 15:56:30 +01:00
wstring
CMakeLists.txt
crt.cmake [CRT] Import wine exception handling code 2020-02-09 15:56:30 +01:00
libcntpr.cmake
moldname-msvcrt.def
msvcrtex.cmake [CRT] Implement _CrtDbgReport and _CrtDbgReportW 2020-04-04 19:55:24 +02: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.