Files
reactos/reactos/lib/rtl
Thomas Bluemel cb96a25169 translate the \\?\ prefix to \??\ in RtlDosPathNameToNtPathName_U
svn path=/trunk/; revision=20973
2006-01-22 12:29:40 +00:00
..
2005-12-11 23:01:45 +00:00
2006-01-01 11:34:59 +00:00
2006-01-05 13:40:05 +00:00
2005-12-08 23:55:34 +00:00
2005-12-06 01:09:09 +00:00
2005-12-10 17:09:35 +00:00
2005-12-15 01:20:46 +00:00
2005-12-08 23:55:34 +00:00
2005-12-08 23:55:34 +00:00
2005-12-21 19:07:47 +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.