Files
reactos/reactos/lib/rtl
Thomas Faber 25d5ac32b6 [RTL]
- Use RtlAnsiStringToUnicodeString instead of mbstowcs to correctly handle manifests that aren't null-terminated
See issue #6743 for more details.

svn path=/trunk/; revision=56649
2012-05-23 11:54:20 +00:00
..
2012-04-15 13:52:00 +00:00
2010-02-26 22:57:55 +00:00
2011-10-13 15:16:29 +00:00
2010-02-26 22:57:55 +00:00
2010-02-26 22:57:55 +00:00
2011-09-20 17:33:51 +00:00
2012-05-23 11:54:20 +00:00
2010-02-26 22:57:55 +00:00
2012-02-10 17:36:11 +00:00
2012-03-27 21:41:39 +00:00
2011-02-21 13:33:13 +00:00
2012-02-13 14:35:26 +00:00
2012-04-06 18:25:18 +00:00
2011-10-12 21:11:02 +00:00
2011-10-13 21:48:10 +00:00
2010-02-26 22:57:55 +00:00
2010-02-26 22:57:55 +00:00
2010-09-25 21:20:54 +00:00
2012-02-04 13:47:16 +00:00
2011-12-16 20:12:28 +00:00
2011-09-20 17:33:51 +00:00
2011-09-20 17:33:51 +00:00
2010-02-26 22:57:55 +00:00
2011-09-20 17:33:51 +00:00
2011-08-01 03:23:53 +00:00
2011-12-17 08:30:48 +00:00
2012-03-24 17:38:21 +00:00
2012-02-04 18:35:56 +00:00
2011-12-17 08:22:04 +00:00
2012-03-21 15:36:59 +00:00
2011-11-20 19:45:06 +00:00
2010-02-26 22:57:55 +00:00
2011-08-19 21:14:11 +00:00
2010-02-26 22:57:55 +00:00
2012-05-01 07:16:02 +00:00
2012-01-24 21:56:02 +00:00
2012-05-01 07:16:02 +00:00
2011-09-19 11:09:09 +00:00
2010-02-26 22:57:55 +00:00
2010-02-26 22:57:55 +00:00
2012-02-25 15:20:32 +00:00
2010-02-26 22:57:55 +00:00
2011-10-08 13:50:14 +00:00
2012-02-10 17:36:11 +00:00
2010-02-26 22:57:55 +00:00
2011-08-17 14:04:33 +00:00
2011-09-19 19:31:21 +00:00
2012-02-09 11:54:59 +00:00
2010-02-26 22:57:55 +00:00
2011-09-20 17:33:51 +00:00
2012-02-10 17:36:11 +00:00
2011-08-01 03:23:53 +00:00
2011-09-19 19:31:21 +00:00
2012-02-10 17:36:11 +00:00
2011-09-19 19:31:21 +00:00
2012-02-16 14:37:53 +00:00
2011-02-10 11:47:17 +00:00
2010-02-26 22:57:55 +00:00
2011-02-10 11:47:17 +00:00

RTL restrictions:

ExAllocatePool (and friends) must be used exclusively. RtlAllocateHeap (and friends) must NOT be used! ExAllocatePool (and friends) translate to RtlAllocateHeap (and friends) in ntdll\rtl\libsupp.c.

RtlEnterCriticalSection (and friends) must be used exclusively. ExAcquireFastMutex (and friends) must NOT be used! RtlEnterCriticalSection (and friends) translate to ExAcquireFastMutex (and friends) in ntoskrnl\rtl\libsupp.c. This means that RtlEnterCriticalSection (and friends) can NOT be used recursively in RTL. The reason for choosing RtlEnterCriticalSection (and friends) over ExAcquireFastMutex (and friends) is that the FAST_MUTEX struct is smaller than the RTL_CRITICAL_SECTION struct.