[ros-diffs] [dchapyshev] 37397: - Fix build

dchapyshev at svn.reactos.org dchapyshev at svn.reactos.org
Mon Nov 17 13:13:28 CET 2008


Author: dchapyshev
Date: Mon Nov 17 06:13:28 2008
New Revision: 37397

URL: http://svn.reactos.org/svn/reactos?rev=37397&view=rev
Log:
- Fix build

Modified:
    trunk/reactos/include/ndk/rtltypes.h

Modified: trunk/reactos/include/ndk/rtltypes.h
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/include/ndk/rtltypes.h?rev=37397&r1=37396&r2=37397&view=diff
==============================================================================
--- trunk/reactos/include/ndk/rtltypes.h [iso-8859-1] (original)
+++ trunk/reactos/include/ndk/rtltypes.h [iso-8859-1] Mon Nov 17 06:13:28 2008
@@ -406,6 +406,32 @@
 );
 
 //
+// RTL Library Allocation/Free Routines
+//
+typedef PVOID
+(NTAPI *PRTL_ALLOCATE_STRING_ROUTINE)(
+    SIZE_T NumberOfBytes
+);
+
+typedef PVOID
+(NTAPI *PRTL_REALLOCATE_STRING_ROUTINE)(
+    SIZE_T NumberOfBytes,
+    PVOID Buffer
+);
+
+typedef
+VOID
+(NTAPI *PRTL_FREE_STRING_ROUTINE)(
+    PVOID Buffer
+);
+
+extern const PRTL_ALLOCATE_STRING_ROUTINE RtlAllocateStringRoutine;
+extern const PRTL_FREE_STRING_ROUTINE RtlFreeStringRoutine;
+extern const PRTL_REALLOCATE_STRING_ROUTINE RtlReallocateStringRoutine;
+
+#endif
+
+//
 // Callback for RtlSetIoCompletionCallback
 //
 typedef VOID
@@ -414,32 +440,6 @@
     ULONG,
     PVOID
 );
-
-//
-// RTL Library Allocation/Free Routines
-//
-typedef PVOID
-(NTAPI *PRTL_ALLOCATE_STRING_ROUTINE)(
-    SIZE_T NumberOfBytes
-);
-
-typedef PVOID
-(NTAPI *PRTL_REALLOCATE_STRING_ROUTINE)(
-    SIZE_T NumberOfBytes,
-    PVOID Buffer
-);
-
-typedef
-VOID
-(NTAPI *PRTL_FREE_STRING_ROUTINE)(
-    PVOID Buffer
-);
-
-extern const PRTL_ALLOCATE_STRING_ROUTINE RtlAllocateStringRoutine;
-extern const PRTL_FREE_STRING_ROUTINE RtlFreeStringRoutine;
-extern const PRTL_REALLOCATE_STRING_ROUTINE RtlReallocateStringRoutine;
-
-#endif
 
 //
 // Callback for RTL Heap Enumeration



More information about the Ros-diffs mailing list