reactos/lib/sdk/crt
Amine Khaldi 3a088d8ec6 * Sync up to trunk HEAD (r62975).
svn path=/branches/shell-experiments/; revision=62976
2014-04-26 11:31:20 +00:00
..
conio Sync with trunk r62754. 2014-04-15 23:01:15 +00:00
direct [SHELL/EXPERIMENTS] 2014-02-02 19:37:27 +00:00
except * Sync up to trunk HEAD (r62975). 2014-04-26 11:31:20 +00:00
float [SHELL/EXPERIMENTS] 2014-02-02 19:37:27 +00:00
include * Sync up to trunk HEAD (r62975). 2014-04-26 11:31:20 +00:00
locale [SHELL/EXPERIMENTS] 2014-02-02 19:37:27 +00:00
math [SHELL/EXPERIMENTS] 2014-02-02 19:37:27 +00:00
mbstring [SHELL/EXPERIMENTS] 2014-02-02 19:37:27 +00:00
mem [SHELL/EXPERIMENTS] 2014-02-02 19:37:27 +00:00
misc [SHELL/EXPERIMENTS] 2014-02-02 19:37:27 +00:00
printf [SHELL/EXPERIMENTS] 2014-02-02 19:37:27 +00:00
process [SHELL/EXPERIMENTS] 2014-02-02 19:37:27 +00:00
search [SHELL/EXPERIMENTS] 2014-02-02 19:37:27 +00:00
setjmp [SHELL/EXPERIMENTS] 2014-02-02 19:37:27 +00:00
signal [SHELL/EXPERIMENTS] 2014-02-02 19:37:27 +00:00
startup [SHELL/EXPERIMENTS] 2014-02-02 19:37:27 +00:00
stdio * Sync up to trunk HEAD (r62285). Branch guys deserve the significant speedups too ;) 2014-02-22 10:31:26 +00:00
stdlib [SHELL/EXPERIMENTS] 2014-02-02 19:37:27 +00:00
string * Sync up to trunk HEAD (r62975). 2014-04-26 11:31:20 +00:00
sys_stat [SHELL/EXPERIMENTS] 2014-02-02 19:37:27 +00:00
time [SHELL/EXPERIMENTS] 2014-02-02 19:37:27 +00:00
wine * Sync up to trunk HEAD (r62975). 2014-04-26 11:31:20 +00:00
wstring [SHELL/EXPERIMENTS] 2014-02-02 19:37:27 +00:00
CMakeLists.txt [SHELL/EXPERIMENTS] 2014-02-02 19:37:27 +00:00
crt.cmake [SHELL/EXPERIMENTS] 2014-02-02 19:37:27 +00:00
libcntpr.cmake [SHELL/EXPERIMENTS] 2014-02-02 19:37:27 +00:00
moldname-msvcrt.def [SHELL/EXPERIMENTS] 2014-02-02 19:37:27 +00:00
msvcrtex.cmake Sync with trunk r62754. 2014-04-15 23:01:15 +00:00
oldnames-msvcrt.S [SHELL/EXPERIMENTS] 2014-02-02 19:37:27 +00:00
oldnames.cmake [SHELL/EXPERIMENTS] 2014-02-02 19:37:27 +00:00
precomp.h [SHELL/EXPERIMENTS] 2014-02-02 19:37:27 +00:00
README.txt [SHELL/EXPERIMENTS] 2014-02-02 19:37:27 +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.