reactos/reactos/lib/sdk/crt
Jérôme Gardou 301e93be58 [CRT]
-fix __lc_codepage confusion
 -fix implementations of _mbsjistojms and _mbsjmstojis

svn path=/trunk/; revision=57910
2012-12-13 21:13:06 +00:00
..
conio [CRT] 2011-12-14 22:09:24 +00:00
direct [CRT] 2011-12-14 22:09:24 +00:00
except Fix amd64 build. 2011-12-14 23:46:23 +00:00
float [CRT] 2012-12-08 17:46:27 +00:00
include [CRT] 2012-12-13 21:13:06 +00:00
locale [CRT] 2012-12-13 21:13:06 +00:00
math [CRT][NTDLL] 2012-07-24 16:45:50 +00:00
mbstring [CRT] 2012-12-13 21:13:06 +00:00
mem Merge CRT changes from cmake branch (mainly MSVC compilation fixes) 2011-02-10 11:35:05 +00:00
misc [CRT] 2012-12-09 11:42:02 +00:00
printf [OOPS] 2012-07-21 20:05:18 +00:00
process [CRT] 2012-08-26 23:54:52 +00:00
search [CRT] 2011-09-15 17:11:53 +00:00
setjmp [CRT] 2011-10-14 08:33:22 +00:00
signal [CRT] 2011-12-14 22:09:24 +00:00
startup [MSVCRTEX] 2012-08-27 21:34:42 +00:00
stdio Fix Unicode output on the console, broken in 33866, fixed in 34042, broken again in 38185, fixed again in 51058 and finally broken yet another time since 54651... 2012-11-23 11:18:28 +00:00
stdlib [CRT/MSVCRT] 2011-12-16 15:44:37 +00:00
string [CRT] 2012-12-09 11:42:02 +00:00
sys_stat
time [MSVCRT] 2012-12-09 03:17:14 +00:00
wine [CRT] 2012-02-21 22:08:24 +00:00
wstring [CRT] 2011-12-14 22:09:24 +00:00
CMakeLists.txt [CMAKE] 2012-08-27 18:58:27 +00:00
crt.cmake [MSVCRT] 2012-12-09 03:17:14 +00:00
libcntpr.cmake [LIBCNTPR] Add atan2 2012-10-02 21:43:47 +00:00
moldname-msvcrt.def [CMAKE] 2011-05-23 15:50:03 +00:00
msvcrtex.cmake [MSVCRTEX] 2012-08-27 21:34:42 +00:00
oldnames-msvcrt.S [OLDNAMES] 2012-04-30 20:26:46 +00:00
oldnames.cmake [CRT/OLDNAMES] 2012-04-29 20:04:52 +00:00
precomp.h [MSVCRT] 2012-12-09 03:17:14 +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.