Files
reactos/sdk/lib/crt
Timo Kreuzer 6133cc016d [CRT/x64] Fix a bug in __C_specific_handler
Fixes crash of compiler_apitest pseh
2023-09-26 18:02:21 +03:00
..
2023-08-11 19:00:42 +03:00
2021-08-04 02:03:07 +02:00
2021-08-04 02:03:07 +02:00
2021-07-20 23:13:03 +02:00
2021-12-28 01:55:38 +03:00
2021-07-20 23:13:03 +02:00
2021-07-20 23:13:03 +02:00
2021-07-20 23:13:03 +02:00
2023-08-19 23:50:52 +03:00
2021-07-20 23:13:03 +02:00
2021-07-20 23:13:03 +02:00
2021-07-20 23:13:03 +02:00
2021-07-20 23:13:03 +02:00

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.