reactos/lib/sdk/crt
Amine Khaldi 121e60dbda * Sync up to trunk head (r64921).
svn path=/branches/shell-experiments/; revision=64922
2014-10-23 12:17:44 +00:00
..
conio
direct
except * Sync up to trunk head (r64921). 2014-10-23 12:17:44 +00:00
float
include Sync with trunk r63502. 2014-05-30 17:56:10 +00:00
locale
math [SHELL-EXPERIMENTS] 2014-09-12 19:21:19 +00:00
mbstring
mem
misc * Sync up to trunk head (r64716). 2014-10-13 12:23:44 +00:00
printf [SHELL-EXPERIMENTS] 2014-09-12 19:21:19 +00:00
process
search
setjmp
signal
startup * Sync up to trunk head (r64829). 2014-10-19 18:45:40 +00:00
stdio * Sync up to trunk head (r64829). 2014-10-19 18:45:40 +00:00
stdlib * Sync up to trunk head (r64921). 2014-10-23 12:17:44 +00:00
string Sync with trunk r63786. 2014-07-31 00:57:14 +00:00
sys_stat
time
wine
wstring
CMakeLists.txt Sync with trunk r63786. 2014-07-31 00:57:14 +00:00
crt.cmake [SHELL-EXPERIMENTS] 2014-09-12 19:21:19 +00:00
libcntpr.cmake Sync with trunk r63502. 2014-05-30 17:56:10 +00:00
moldname-msvcrt.def
msvcrtex.cmake * Sync up to trunk head (r64716). 2014-10-13 12:23:44 +00:00
oldnames-msvcrt.S * Sync up to trunk head (r64921). 2014-10-23 12:17:44 +00:00
oldnames.cmake * Sync up to trunk head (r64829). 2014-10-19 18:45:40 +00:00
precomp.h
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.