Files
reactos/sdk/lib/crt
winesync 4df4baa391 [WINESYNC] msvcrt: Pass catch_func_nested_frame struct to call_catch_block.
Signed-off-by: Piotr Caban <piotr@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>

wine commit id 48a447c5eb238d673ce5db4eeacf3ba4c1a9da90 by Piotr Caban <piotr@codeweavers.com>
2023-08-19 23:50:52 +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
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.