Files
reactos/reactos/lib/rtl
Eric Kohl dd81be1f25 [RTL]
Fix the overly complicated and buggy implementation of RtlIsDosDeviceName_Ustr based on the simple pre-r52687 implementation of RtlIsDosDeviceName_U. This fixes 14(!) wine tests.

svn path=/trunk/; revision=53726
2011-09-17 00:55:02 +00:00
..
2011-08-23 08:45:46 +00:00
2010-02-26 22:57:55 +00:00
2011-09-11 11:47:28 +00:00
2010-02-26 22:57:55 +00:00
2010-02-26 22:57:55 +00:00
2010-02-26 22:57:55 +00:00
2010-02-26 22:57:55 +00:00
2010-02-26 22:57:55 +00:00
2011-02-17 16:52:06 +00:00
2011-02-21 13:33:13 +00:00
2011-09-01 16:58:20 +00:00
2010-10-07 19:58:04 +00:00
2011-08-19 18:39:47 +00:00
2011-08-19 18:39:47 +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
2011-03-04 03:42:38 +00:00
2010-02-26 22:57:55 +00:00
2010-02-26 22:57:55 +00:00
2011-09-16 20:53:16 +00:00
2010-02-26 22:57:55 +00:00
2010-02-26 22:57:55 +00:00
2011-08-10 13:52:30 +00:00
2010-02-26 22:57:55 +00:00
2011-08-01 03:23:53 +00:00
2010-02-26 22:57:55 +00:00
2011-08-19 18:39:47 +00:00
2011-05-15 12:20:44 +00:00
2011-02-16 13:09:18 +00:00
2011-09-03 04:55:54 +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
2011-08-19 18:39:47 +00:00
2011-02-20 19:28:34 +00:00
2011-09-17 00:55:02 +00:00
2010-10-17 11:12:54 +00:00
2010-05-29 21:15:48 +00:00
2010-02-26 22:57:55 +00:00
2010-02-26 22:57:55 +00:00
2010-02-26 22:57:55 +00:00
2010-02-26 22:57:55 +00:00
2010-03-30 03:26:35 +00:00
2010-02-26 22:57:55 +00:00
2010-02-26 22:57:55 +00:00
2011-08-17 14:04:33 +00:00
2011-08-19 20:55:54 +00:00
2010-10-05 19:33:42 +00:00
2010-02-26 22:57:55 +00:00
2010-02-26 22:57:55 +00:00
2010-02-26 22:57:55 +00:00
2010-03-28 19:46:29 +00:00
2011-08-01 03:23:53 +00:00
2011-02-10 11:47:17 +00:00
2010-02-26 22:57:55 +00:00
2010-02-26 22:57:55 +00:00
2011-02-10 11:47:17 +00:00
2010-02-26 22:57:55 +00:00
2011-07-16 19:03:50 +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
2011-06-15 13:33:48 +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.