reactos/lib/sdk/crt
Cameron Gutman 29fa274d6d - Create another branch for networking fixes
- TSVN choked repeatedly when attempting to merge ~9000 revs into the branch (tried 3 times on 2 different computers)
 - If someone wants to delete aicom-network-fixes, they are welcome to
 - Lesson learned: Letting a branch get thousands of revs out of date is a horrible idea

svn path=/branches/aicom-network-branch/; revision=44353
2009-12-02 03:23:19 +00:00
..
conio - Create another branch for networking fixes 2009-12-02 03:23:19 +00:00
direct - Create another branch for networking fixes 2009-12-02 03:23:19 +00:00
except - Create another branch for networking fixes 2009-12-02 03:23:19 +00:00
float - Create another branch for networking fixes 2009-12-02 03:23:19 +00:00
include - Create another branch for networking fixes 2009-12-02 03:23:19 +00:00
locale - Create another branch for networking fixes 2009-12-02 03:23:19 +00:00
math - Create another branch for networking fixes 2009-12-02 03:23:19 +00:00
mbstring - Create another branch for networking fixes 2009-12-02 03:23:19 +00:00
mem - Create another branch for networking fixes 2009-12-02 03:23:19 +00:00
misc - Create another branch for networking fixes 2009-12-02 03:23:19 +00:00
process - Create another branch for networking fixes 2009-12-02 03:23:19 +00:00
search - Create another branch for networking fixes 2009-12-02 03:23:19 +00:00
setjmp/i386 - Create another branch for networking fixes 2009-12-02 03:23:19 +00:00
signal - Create another branch for networking fixes 2009-12-02 03:23:19 +00:00
stdio - Create another branch for networking fixes 2009-12-02 03:23:19 +00:00
stdlib - Create another branch for networking fixes 2009-12-02 03:23:19 +00:00
string - Create another branch for networking fixes 2009-12-02 03:23:19 +00:00
sys_stat - Create another branch for networking fixes 2009-12-02 03:23:19 +00:00
time - Create another branch for networking fixes 2009-12-02 03:23:19 +00:00
wine - Create another branch for networking fixes 2009-12-02 03:23:19 +00:00
wstring - Create another branch for networking fixes 2009-12-02 03:23:19 +00:00
crt.rbuild - Create another branch for networking fixes 2009-12-02 03:23:19 +00:00
libcntpr.rbuild - Create another branch for networking fixes 2009-12-02 03:23:19 +00:00
precomp.h - Create another branch for networking fixes 2009-12-02 03:23:19 +00:00
README.txt - Create another branch for networking fixes 2009-12-02 03:23:19 +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.