reactos/lib/sdk/crt
Jérôme Gardou 82822656c3 Sync with trunk (48237)
svn path=/branches/reactos-yarotows/; revision=48246
2010-07-25 11:17:52 +00:00
..
conio
direct
except Sync with trunk (48237) 2010-07-25 11:17:52 +00:00
float Sync to trunk (r47832) 2010-06-23 16:21:41 +00:00
include Hopefully fail to break anything in the process of syncing with trunk (r47786) 2010-06-17 01:25:16 +00:00
locale Sync with trunk (r48008) 2010-07-13 17:46:03 +00:00
math Sync with trunk (48237) 2010-07-25 11:17:52 +00:00
mbstring
mem
misc Sync with trunk (r48123) 2010-07-20 20:09:43 +00:00
process Sync to trunk head (r47736) 2010-06-10 20:57:03 +00:00
search
setjmp Sync with trunk (48237) 2010-07-25 11:17:52 +00:00
signal Sync to trunk head (r47736) 2010-06-10 20:57:03 +00:00
stdio
stdlib Sync with trunk (r48008) 2010-07-13 17:46:03 +00:00
string Sync to trunk head (r47736) 2010-06-10 20:57:03 +00:00
sys_stat
time Sync with trunk (r48008) 2010-07-13 17:46:03 +00:00
wine Sync to trunk (r47832) 2010-06-23 16:21:41 +00:00
wstring
crt.rbuild Sync with trunk (48237) 2010-07-25 11:17:52 +00:00
libcntpr.rbuild Sync with trunk (48237) 2010-07-25 11:17:52 +00:00
precomp.h Hopefully fail to break anything in the process of syncing with trunk (r47786) 2010-06-17 01:25:16 +00:00
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.