reactos/lib/sdk/crt
Cameron Gutman c2d0d784c7 [USB-BRINGUP-TRUNK]
- Create a branch to do a proper merge of USB work from a trunk base instead of from cmake-bringup
- In the future, DO NOT under any circumstances branch another branch. This leads to merge problems!

svn path=/branches/usb-bringup-trunk/; revision=55018
2012-01-20 20:58:46 +00:00
..
conio [USB-BRINGUP-TRUNK] 2012-01-20 20:58:46 +00:00
direct [USB-BRINGUP-TRUNK] 2012-01-20 20:58:46 +00:00
except [USB-BRINGUP-TRUNK] 2012-01-20 20:58:46 +00:00
float [USB-BRINGUP-TRUNK] 2012-01-20 20:58:46 +00:00
include [USB-BRINGUP-TRUNK] 2012-01-20 20:58:46 +00:00
locale [USB-BRINGUP-TRUNK] 2012-01-20 20:58:46 +00:00
math [USB-BRINGUP-TRUNK] 2012-01-20 20:58:46 +00:00
mbstring [USB-BRINGUP-TRUNK] 2012-01-20 20:58:46 +00:00
mem [USB-BRINGUP-TRUNK] 2012-01-20 20:58:46 +00:00
misc [USB-BRINGUP-TRUNK] 2012-01-20 20:58:46 +00:00
printf [USB-BRINGUP-TRUNK] 2012-01-20 20:58:46 +00:00
process [USB-BRINGUP-TRUNK] 2012-01-20 20:58:46 +00:00
search [USB-BRINGUP-TRUNK] 2012-01-20 20:58:46 +00:00
setjmp [USB-BRINGUP-TRUNK] 2012-01-20 20:58:46 +00:00
signal [USB-BRINGUP-TRUNK] 2012-01-20 20:58:46 +00:00
startup [USB-BRINGUP-TRUNK] 2012-01-20 20:58:46 +00:00
stdio [USB-BRINGUP-TRUNK] 2012-01-20 20:58:46 +00:00
stdlib [USB-BRINGUP-TRUNK] 2012-01-20 20:58:46 +00:00
string [USB-BRINGUP-TRUNK] 2012-01-20 20:58:46 +00:00
sys_stat [USB-BRINGUP-TRUNK] 2012-01-20 20:58:46 +00:00
time [USB-BRINGUP-TRUNK] 2012-01-20 20:58:46 +00:00
wine [USB-BRINGUP-TRUNK] 2012-01-20 20:58:46 +00:00
wstring [USB-BRINGUP-TRUNK] 2012-01-20 20:58:46 +00:00
CMakeLists.txt [USB-BRINGUP-TRUNK] 2012-01-20 20:58:46 +00:00
crt.cmake [USB-BRINGUP-TRUNK] 2012-01-20 20:58:46 +00:00
crt.rbuild [USB-BRINGUP-TRUNK] 2012-01-20 20:58:46 +00:00
libcntpr.cmake [USB-BRINGUP-TRUNK] 2012-01-20 20:58:46 +00:00
libcntpr.rbuild [USB-BRINGUP-TRUNK] 2012-01-20 20:58:46 +00:00
moldname-msvcrt.def [USB-BRINGUP-TRUNK] 2012-01-20 20:58:46 +00:00
msvcrtex.cmake [USB-BRINGUP-TRUNK] 2012-01-20 20:58:46 +00:00
oldnames.cmake [USB-BRINGUP-TRUNK] 2012-01-20 20:58:46 +00:00
precomp.h [USB-BRINGUP-TRUNK] 2012-01-20 20:58:46 +00:00
README.txt [USB-BRINGUP-TRUNK] 2012-01-20 20:58:46 +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.