reactos/lib/sdk/crt
Amine Khaldi fc902e6f58 * Sync to trunk HEAD (r53473).
svn path=/branches/shell32_new-bringup/; revision=53475
2011-08-27 19:26:31 +00:00
..
conio This really needs to go in a branch. It needs heavy testing and can't coincide with the current shell32 due to PSDK interface changes 2011-05-24 18:40:34 +00:00
direct This really needs to go in a branch. It needs heavy testing and can't coincide with the current shell32 due to PSDK interface changes 2011-05-24 18:40:34 +00:00
except * Sync to trunk HEAD (r53473). 2011-08-27 19:26:31 +00:00
float * Sync to trunk HEAD (r53473). 2011-08-27 19:26:31 +00:00
include * Sync to trunk HEAD (r53473). 2011-08-27 19:26:31 +00:00
locale This really needs to go in a branch. It needs heavy testing and can't coincide with the current shell32 due to PSDK interface changes 2011-05-24 18:40:34 +00:00
math * Sync to trunk HEAD (r53473). 2011-08-27 19:26:31 +00:00
mbstring This really needs to go in a branch. It needs heavy testing and can't coincide with the current shell32 due to PSDK interface changes 2011-05-24 18:40:34 +00:00
mem This really needs to go in a branch. It needs heavy testing and can't coincide with the current shell32 due to PSDK interface changes 2011-05-24 18:40:34 +00:00
misc This really needs to go in a branch. It needs heavy testing and can't coincide with the current shell32 due to PSDK interface changes 2011-05-24 18:40:34 +00:00
printf * Sync to trunk HEAD (r53318). 2011-08-19 17:45:34 +00:00
process This really needs to go in a branch. It needs heavy testing and can't coincide with the current shell32 due to PSDK interface changes 2011-05-24 18:40:34 +00:00
search This really needs to go in a branch. It needs heavy testing and can't coincide with the current shell32 due to PSDK interface changes 2011-05-24 18:40:34 +00:00
setjmp This really needs to go in a branch. It needs heavy testing and can't coincide with the current shell32 due to PSDK interface changes 2011-05-24 18:40:34 +00:00
signal This really needs to go in a branch. It needs heavy testing and can't coincide with the current shell32 due to PSDK interface changes 2011-05-24 18:40:34 +00:00
startup * Sync to trunk HEAD (r53473). 2011-08-27 19:26:31 +00:00
stdio * Sync to trunk HEAD (r53473). 2011-08-27 19:26:31 +00:00
stdlib This really needs to go in a branch. It needs heavy testing and can't coincide with the current shell32 due to PSDK interface changes 2011-05-24 18:40:34 +00:00
string * Sync to trunk HEAD (r53473). 2011-08-27 19:26:31 +00:00
sys_stat This really needs to go in a branch. It needs heavy testing and can't coincide with the current shell32 due to PSDK interface changes 2011-05-24 18:40:34 +00:00
time * Sync to trunk HEAD (r53473). 2011-08-27 19:26:31 +00:00
wine This really needs to go in a branch. It needs heavy testing and can't coincide with the current shell32 due to PSDK interface changes 2011-05-24 18:40:34 +00:00
wstring This really needs to go in a branch. It needs heavy testing and can't coincide with the current shell32 due to PSDK interface changes 2011-05-24 18:40:34 +00:00
CMakeLists.txt * Sync to trunk HEAD (r53318). 2011-08-19 17:45:34 +00:00
crt.cmake * Sync to trunk HEAD (r53473). 2011-08-27 19:26:31 +00:00
crt.rbuild * Sync to trunk HEAD (r53473). 2011-08-27 19:26:31 +00:00
libcntpr.cmake * Sync to trunk HEAD (r53473). 2011-08-27 19:26:31 +00:00
libcntpr.rbuild This really needs to go in a branch. It needs heavy testing and can't coincide with the current shell32 due to PSDK interface changes 2011-05-24 18:40:34 +00:00
moldname-msvcrt.def This really needs to go in a branch. It needs heavy testing and can't coincide with the current shell32 due to PSDK interface changes 2011-05-24 18:40:34 +00:00
msvcrtex.cmake * Sync to trunk HEAD (r53318). 2011-08-19 17:45:34 +00:00
oldnames.cmake This really needs to go in a branch. It needs heavy testing and can't coincide with the current shell32 due to PSDK interface changes 2011-05-24 18:40:34 +00:00
precomp.h * Sync to trunk HEAD (r53318). 2011-08-19 17:45:34 +00:00
README.txt This really needs to go in a branch. It needs heavy testing and can't coincide with the current shell32 due to PSDK interface changes 2011-05-24 18:40:34 +00: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.